1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2024-10-18 11:42:51 +02:00

Compare commits

..

No commits in common. "adc143e2a561289665d16089770b2a8cecbb1099" and "91c737d28357c5fbc071962d37d5b3fb1980eb59" have entirely different histories.

184 changed files with 999 additions and 1992 deletions

View File

@ -1,12 +0,0 @@
* Resolves: # <!-- related github issue -->
## Summary
<!-- your text -->
## Checklist
- Code is [properly formatted](https://nextcloud.github.io/news/developer/#coding-style-guidelines)
- [Sign-off message](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md) is added to all commits
- Changelog entry added for all important changes.

View File

@ -16,7 +16,7 @@ jobs:
name: "Integration: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}" name: "Integration: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}"
services: services:
postgres: postgres:
image: postgres:14 image: postgres
env: env:
POSTGRES_PASSWORD: ${{ env.POSTGRES_PASSWORD }} POSTGRES_PASSWORD: ${{ env.POSTGRES_PASSWORD }}
options: >- options: >-
@ -29,7 +29,7 @@ jobs:
strategy: strategy:
matrix: matrix:
php-versions: ['7.4', '8.0'] php-versions: ['7.4', '8.0']
nextcloud: ['stable24', 'stable25'] nextcloud: ['stable22', 'stable23']
database: ['sqlite', 'pgsql', 'mysql'] database: ['sqlite', 'pgsql', 'mysql']
experimental: [false] experimental: [false]
include: include:
@ -37,12 +37,12 @@ jobs:
nextcloud: pre-release nextcloud: pre-release
database: sqlite database: sqlite
experimental: true experimental: true
- php-versions: '8.2' - php-versions: '8.1'
nextcloud: pre-release nextcloud: pre-release
database: sqlite database: sqlite
experimental: true experimental: true
- php-versions: 8.1 - php-versions: 8.1
nextcloud: stable25 nextcloud: stable24
database: sqlite database: sqlite
experimental: false experimental: false
steps: steps:
@ -59,7 +59,7 @@ jobs:
coverage: none coverage: none
- name: Setup BATS & httpie - name: Setup BATS & httpie
run: sudo apt-get install -y httpie && npm install -g bats@1.7.0 run: sudo apt-get install -y bats httpie
### MySQL specific setup ### MySQL specific setup
- name: Setup mysql - name: Setup mysql
@ -145,8 +145,6 @@ jobs:
bats apps/news/tests/command bats apps/news/tests/command
kill %1
- name: Prep PHP tests - name: Prep PHP tests
working-directory: ../server/apps/news working-directory: ../server/apps/news
run: make php-test-dependencies run: make php-test-dependencies

View File

@ -7,11 +7,15 @@ jobs:
continue-on-error: true continue-on-error: true
strategy: strategy:
matrix: matrix:
php-versions: [ '7.4', '8.0', '8.1' ] php-versions: [ '7.4', '8.0' ]
nextcloud: [ 'stable25' ] nextcloud: [ 'stable24' ]
database: [ 'sqlite' ] database: [ 'sqlite' ]
include: include:
- php-versions: '8.2' - php-versions: 8.1
nextcloud: stable24
database: sqlite
experimental: false
- php-versions: 8.1
nextcloud: pre-release nextcloud: pre-release
database: sqlite database: sqlite
experimental: true experimental: true

View File

@ -10,7 +10,7 @@ jobs:
strategy: strategy:
matrix: matrix:
php-versions: ['8.1'] php-versions: ['8.1']
nextcloud: ['stable25'] nextcloud: ['stable24']
database: ['sqlite'] database: ['sqlite']
experimental: [false] experimental: [false]
codecoverage: [false] codecoverage: [false]

View File

@ -15,7 +15,7 @@ jobs:
strategy: strategy:
matrix: matrix:
php-versions: ['8.1'] php-versions: ['8.1']
nextcloud: ['stable25'] nextcloud: ['stable24']
database: ['sqlite'] database: ['sqlite']
steps: steps:
- name: Checkout - name: Checkout
@ -29,7 +29,7 @@ jobs:
coverage: none coverage: none
- name: Set up server non MySQL - name: Set up server non MySQL
uses: SMillerDev/nextcloud-actions/setup-nextcloud@main uses: SMillerDev/nextcloud-actions/setup-nextcloud@fae87e29aa7cdf1ea0b8033c67f60e75b10be2cd
with: with:
cron: false cron: false
version: ${{ matrix.nextcloud }} version: ${{ matrix.nextcloud }}
@ -39,7 +39,7 @@ jobs:
run: make run: make
- name: Configure server with app - name: Configure server with app
uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@main uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@fae87e29aa7cdf1ea0b8033c67f60e75b10be2cd
with: with:
app: ${{ env.APP_NAME }} app: ${{ env.APP_NAME }}
check-code: false check-code: false
@ -52,7 +52,7 @@ jobs:
app_public_crt: ${{ secrets.APP_PUBLIC_CRT }} app_public_crt: ${{ secrets.APP_PUBLIC_CRT }}
- name: Upload app tarball to release - name: Upload app tarball to release
uses: svenstaro/upload-release-action@7319e4733ec7a184d739a6f412c40ffc339b69c7 uses: svenstaro/upload-release-action@133984371c30d34e38222a64855679a414cb7575
id: attach_to_release id: attach_to_release
with: with:
repo_token: ${{ secrets.GITHUB_TOKEN }} repo_token: ${{ secrets.GITHUB_TOKEN }}

View File

@ -4,7 +4,7 @@ on:
jobs: jobs:
php: php:
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }} continue-on-error: ${{ matrix.experimental }}
name: "Frontend: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}" name: "Frontend: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}"
strategy: strategy:

View File

@ -2,17 +2,18 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
# SPDX-FileCopyrightText: Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
name: Lint name: Lint
on: pull_request on:
pull_request:
permissions: push:
contents: read branches:
- main
concurrency: - master
group: lint-eslint-${{ github.head_ref || github.run_id }} - stable*
cancel-in-progress: true
jobs: jobs:
lint: lint:
@ -25,10 +26,10 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Read package.json node and npm engines version - name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@v2.0 uses: skjnldsv/read-package-engines-version-actions@v1.2
id: versions id: versions
with: with:
fallbackNode: '^16' fallbackNode: '^12'
fallbackNpm: '^6' fallbackNpm: '^6'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} - name: Set up node ${{ steps.versions.outputs.nodeVersion }}

View File

@ -10,7 +10,7 @@ jobs:
name: "Coverage: Nextcloud PHP ${{ matrix.php-versions }}" name: "Coverage: Nextcloud PHP ${{ matrix.php-versions }}"
strategy: strategy:
matrix: matrix:
nextcloud: ['stable25'] nextcloud: ['stable24']
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3

View File

@ -1,10 +1,10 @@
[main] [main]
host = https://www.transifex.com host = https://www.transifex.com
lang_map = sk_SK: sk, th_TH: th, ja_JP: ja, bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu, nb_NO: nb lang_map = bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu, nb_NO: nb, sk_SK: sk, th_TH: th, ja_JP: ja
[o:nextcloud:p:nextcloud:r:news] [nextcloud.news]
file_filter = translationfiles/<lang>/news.po file_filter = translationfiles/<lang>/news.po
source_file = translationfiles/templates/news.pot source_file = translationfiles/templates/news.pot
source_lang = en source_lang = en
type = PO type = PO

View File

@ -30,7 +30,6 @@
* [Koen Martens](mailto:gmc@sonologic.nl) * [Koen Martens](mailto:gmc@sonologic.nl)
* [Lukas Reschke](mailto:lukas@owncloud.com) * [Lukas Reschke](mailto:lukas@owncloud.com)
* [Tucker McKnight](mailto:tucker.mcknight@gmail.com) * [Tucker McKnight](mailto:tucker.mcknight@gmail.com)
* [Valdnet](mailto:47037905+Valdnet@users.noreply.github.com)
* [Bart Visscher](mailto:bartv@thisnet.nl) * [Bart Visscher](mailto:bartv@thisnet.nl)
* [Christian Elmer](mailto:christian@keinkurt.de) * [Christian Elmer](mailto:christian@keinkurt.de)
* [Nicolas Wendling](mailto:nicolas.wendling1011@gmail.com) * [Nicolas Wendling](mailto:nicolas.wendling1011@gmail.com)
@ -40,7 +39,6 @@
* [Daniel Opitz](mailto:danopz@users.noreply.github.com) * [Daniel Opitz](mailto:danopz@users.noreply.github.com)
* [Daniel Rheinbay](mailto:danielrheinbay@gmail.com) * [Daniel Rheinbay](mailto:danielrheinbay@gmail.com)
* [Lars Bensmann](mailto:lars@almosthappy.de) * [Lars Bensmann](mailto:lars@almosthappy.de)
* [Rhys Tyers](mailto:mail@rhy.si)
* [Robin Appelman](mailto:robin@icewind.nl) * [Robin Appelman](mailto:robin@icewind.nl)
* [bluehaze](mailto:francesco.sportolari@gmail.com) * [bluehaze](mailto:francesco.sportolari@gmail.com)
* [darkside40](mailto:darkside401@googlemail.com) * [darkside40](mailto:darkside401@googlemail.com)
@ -70,6 +68,7 @@
* [Nikita Chernyi](mailto:rakshazi@users.noreply.github.com) * [Nikita Chernyi](mailto:rakshazi@users.noreply.github.com)
* [Peter Hedlund](mailto:peter@peterandlinda.com) * [Peter Hedlund](mailto:peter@peterandlinda.com)
* [Simon Spannagel](mailto:simonspa@kth.se) * [Simon Spannagel](mailto:simonspa@kth.se)
* [Valdnet](mailto:47037905+Valdnet@users.noreply.github.com)
* [bbBowser](mailto:carspi@mail.de) * [bbBowser](mailto:carspi@mail.de)
* [benediktb](mailto:benedikt@blablub.de) * [benediktb](mailto:benedikt@blablub.de)
* [chylex](mailto:contact@chylex.com) * [chylex](mailto:contact@chylex.com)
@ -85,7 +84,6 @@
* [Alexander Grüßung](mailto:alexander@gruessung-online.de) * [Alexander Grüßung](mailto:alexander@gruessung-online.de)
* [Allan Nordhøy](mailto:epost@anotheragency.no) * [Allan Nordhøy](mailto:epost@anotheragency.no)
* [Alwaysin](mailto:adrien@demma.fr) * [Alwaysin](mailto:adrien@demma.fr)
* [Anderson Silva](mailto:UnderEu@users.noreply.github.com)
* [Andrea Boero](mailto:mail@tsumi.it) * [Andrea Boero](mailto:mail@tsumi.it)
* [Andreas Demmelbauer](mailto:git@notice.at) * [Andreas Demmelbauer](mailto:git@notice.at)
* [Artem Lavrukhin](mailto:lavryha4590@gmail.com) * [Artem Lavrukhin](mailto:lavryha4590@gmail.com)
@ -96,7 +94,6 @@
* [Bernhard Posselt](mailto:bernhard@desktop.localdomain) * [Bernhard Posselt](mailto:bernhard@desktop.localdomain)
* [Björn Bidar](mailto:bjorn.bidar@thaodan.de) * [Björn Bidar](mailto:bjorn.bidar@thaodan.de)
* [Candid Dauth](mailto:cdauth@cdauth.eu) * [Candid Dauth](mailto:cdauth@cdauth.eu)
* [Carl Schwan](mailto:carl@carlschwan.eu)
* [Carlos Silva](mailto:r3pek@r3pek.org) * [Carlos Silva](mailto:r3pek@r3pek.org)
* [Cesar Enrique Garcia Dabo](mailto:enrique@engarda.org) * [Cesar Enrique Garcia Dabo](mailto:enrique@engarda.org)
* [Chris Aumann](mailto:me@chr4.org) * [Chris Aumann](mailto:me@chr4.org)
@ -134,7 +131,6 @@
* [Martin Ferretti](mailto:ferrettimartin@protonmail.com) * [Martin Ferretti](mailto:ferrettimartin@protonmail.com)
* [Matthias](mailto:matthias.baier@mabaart.de) * [Matthias](mailto:matthias.baier@mabaart.de)
* [Matthias Blümel](mailto:user@inanna.local) * [Matthias Blümel](mailto:user@inanna.local)
* [Michael Chang](mailto:github@micbase.com)
* [Michael Grosser](mailto:github@stp-ip.net) * [Michael Grosser](mailto:github@stp-ip.net)
* [Michael Hamann](mailto:michael@content-space.de) * [Michael Hamann](mailto:michael@content-space.de)
* [Michael Holley](mailto:michaelwholley@gmail.com) * [Michael Holley](mailto:michaelwholley@gmail.com)
@ -186,9 +182,6 @@
* [nextcloud486153](mailto:78801830+nextcloud486153@users.noreply.github.com) * [nextcloud486153](mailto:78801830+nextcloud486153@users.noreply.github.com)
* [nexus-uw](mailto:you@example.com) * [nexus-uw](mailto:you@example.com)
* [repat](mailto:repat@repat.de) * [repat](mailto:repat@repat.de)
* [rhein](mailto:mail@ralfhein.de)
* [rhyst](mailto:5313660+rhyst@users.noreply.github.com)
* [rhyst](mailto:rhystyers1@gmail.com)
* [ritchiewilson](mailto:rawilson52@gmail.com) * [ritchiewilson](mailto:rawilson52@gmail.com)
* [skiingwiz](mailto:skiingwiz@gmail.com) * [skiingwiz](mailto:skiingwiz@gmail.com)
* [sonologic](mailto:gmc@sonologic.nl) * [sonologic](mailto:gmc@sonologic.nl)

View File

@ -3,69 +3,12 @@ All notable changes to this project will be documented in this file.
The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), older entries don't fully match. The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), older entries don't fully match.
# Unreleased # Unreleased
## [21.x.x] ## [18.x.x]
### Changed ### Changed
### Fixed ### Fixed
# Releases # Releases
## [21.0.0] - 2023-02-28
No notable changes compared 21.0.0-beta1
## [21.0.0-beta1] - 2023-02-14
### Changed
- Drop support for Nextcloud 23 (#2077 )
- Make the "open" keyboard shortcut work faster (#2080)
- Implemented search for articles, results can only link to the feed. (#2075)
### Fixed
- Stop errors from the favicon library over empty values (#2096)
## [20.0.1] - 2023-01-19
### Fixed
- SyntaxError triggered when full-text is enabled with some items. (#2048, #2053)
## [20.0.0] - 2022-12-14
### Changed
- Drop support for PHP 7.3 (#2008)
- Dependency updates
## [19.0.1] - 2022-12-01
### Changed
- Dependency updates
## [19.0.0] - 2022-10-25
### Fixed
- Fix nested scrollbars in navigation (#411, #1958)
## [19.0.0-beta2] - 2022-10-23
### Fixed
- Fixed various keyboard navigation issues (#1953)
- Fix cron job warning notification layout on NC25 (#1953)
## [19.0.0-beta1] - 2022-10-22
### Changed
- Drop support for Nextcloud 22, NC 22 has reached it's end of life. (#1950)
- Add support for Nextcloud 25 (#1950)
### Fixed
- Corrected article compact title bar position in NC25 (#1944)
- Fixed "Mark read through scrolling" in NC25 and NC24 (#1944)
## [18.3.0] - 2022-10-21
### Fixed
- Remove setting for minimum purge interval since it is not used. (#1935)
## [18.3.0-beta1] - 2022-10-10
### Changed
- New administrator setting for deleting unread items automatically (#1931)
## [18.2.0] - 2022-09-28
### Fixed
- Fix the highlighted item when reverse ordering is selected (#1838)
## [18.2.0-beta2] - 2022-09-07
Fix for the read all function and spelling fixes.
## [18.2.0-beta1] - 2022-08-30 ## [18.2.0-beta1] - 2022-08-30
### Changed ### Changed
- Ported the admin settings to vue (#2353) - Ported the admin settings to vue (#2353)

View File

@ -176,12 +176,9 @@ appstore:
cp js/build/news-admin-settings.js* $(appstore_sign_dir)/$(app_name)/js/build cp js/build/news-admin-settings.js* $(appstore_sign_dir)/$(app_name)/js/build
# export the key and cert to a file # export the key and cert to a file
@if [ ! -f $(cert_dir)/$(app_name).key ] || [ ! -f $(cert_dir)/$(app_name).crt ]; then \ mkdir -p $(cert_dir)
echo "Key and cert do not exist"; \ php ./bin/tools/file_from_env.php "app_private_key" "$(cert_dir)/$(app_name).key"
mkdir -p $(cert_dir); \ php ./bin/tools/file_from_env.php "app_public_crt" "$(cert_dir)/$(app_name).crt"
php ./bin/tools/file_from_env.php "app_private_key" "$(cert_dir)/$(app_name).key"; \
php ./bin/tools/file_from_env.php "app_public_crt" "$(cert_dir)/$(app_name).crt"; \
fi
@if [ -f $(cert_dir)/$(app_name).key ]; then \ @if [ -f $(cert_dir)/$(app_name).key ]; then \
echo "Signing app files…"; \ echo "Signing app files…"; \
@ -225,12 +222,4 @@ test: php-test-dependencies
.PHONY: feed-test .PHONY: feed-test
feed-test: feed-test:
./bin/tools/check_feeds.sh ./bin/tools/check_feeds.sh
.PHONY: feed-server
feed-server:
php -S 127.0.0.1:8090 -t $(CURDIR)/tests/test_helper/feeds
.PHONY: nextcloud-server
nextcloud-server:
php -S 127.0.0.1:8080 -t $(CURDIR)/../../.

View File

@ -21,7 +21,7 @@ Create a [feature request](https://github.com/nextcloud/news/discussions/new)
Report a [feed issue](https://github.com/nextcloud/news/discussions/new) Report a [feed issue](https://github.com/nextcloud/news/discussions/new)
]]></description> ]]></description>
<version>21.0.0</version> <version>18.2.0-beta1</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Benjamin Brahmer</author> <author>Benjamin Brahmer</author>
<author>Sean Molenaar</author> <author>Sean Molenaar</author>
@ -43,7 +43,7 @@ Report a [feed issue](https://github.com/nextcloud/news/discussions/new)
<screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2.png</screenshot> <screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2.png</screenshot>
<screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/news/master/screenshots/3-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/3.png</screenshot> <screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/news/master/screenshots/3-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/3.png</screenshot>
<dependencies> <dependencies>
<php min-version="7.4" min-int-size="64"/> <php min-version="7.3" min-int-size="64"/>
<database min-version="10">pgsql</database> <database min-version="10">pgsql</database>
<database>sqlite</database> <database>sqlite</database>
<database min-version="8.0">mysql</database> <database min-version="8.0">mysql</database>
@ -55,7 +55,7 @@ Report a [feed issue](https://github.com/nextcloud/news/discussions/new)
<lib>json</lib> <lib>json</lib>
<owncloud max-version="0" min-version="0"/> <owncloud max-version="0" min-version="0"/>
<nextcloud min-version="24" max-version="26"/> <nextcloud min-version="22" max-version="24"/>
</dependencies> </dependencies>
<background-jobs> <background-jobs>

View File

@ -40,13 +40,13 @@
"source": "https://github.com/nextcloud/news/" "source": "https://github.com/nextcloud/news/"
}, },
"require": { "require": {
"php": "^7.4 || ~8.0", "php": "^7.2 || ~8.0",
"ezyang/htmlpurifier": "^4.16.0", "ezyang/htmlpurifier": "^4.14.0",
"pear/net_url2": "^2.2.2", "pear/net_url2": "^2.2.2",
"riimu/kit-pathjoin": "^1.2.0", "riimu/kit-pathjoin": "^1.2.0",
"debril/feed-io": "^v4.9.12", "debril/feed-io": "^v4.9.12",
"arthurhoaro/favicon": "^1.3.3", "arthurhoaro/favicon": "^1.3.3",
"fivefilters/readability.php": "^3.1", "fivefilters/readability.php": "^2.1",
"ext-json": "*", "ext-json": "*",
"ext-simplexml": "*", "ext-simplexml": "*",
"ext-libxml": "*", "ext-libxml": "*",
@ -54,16 +54,16 @@
"ext-curl": "*" "ext-curl": "*"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "9.6.*", "phpunit/phpunit": "9.5.*",
"squizlabs/php_codesniffer": "^3.7.2", "squizlabs/php_codesniffer": "^3.7.1",
"phpstan/phpstan": "^1.10.3", "phpstan/phpstan": "^1.8.3",
"phpstan/phpstan-doctrine": "^1.3.33", "phpstan/phpstan-doctrine": "^1.3.12",
"phpstan/phpstan-strict-rules": "^1.5.0", "phpstan/phpstan-strict-rules": "^1.4.3",
"phpstan/phpstan-phpunit": "^1.3.8", "phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/extension-installer": "^1.2.0", "phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan-deprecation-rules": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0",
"guzzlehttp/guzzle": "^7.3.0", "guzzlehttp/guzzle": "^7.3.0",
"doctrine/dbal": "^3.6.0", "doctrine/dbal": "^3.4.3",
"symfony/console": "^4.4.19", "symfony/console": "^4.4.19",
"psr/log": "^1.1.0" "psr/log": "^1.1.0"
}, },

682
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -236,10 +236,6 @@
min-height: 43px; min-height: 43px;
} }
#app-content.nc-major-version-25 .compact .utils {
top: 0px;
}
/* Only apply opacity to the util bar, not the dropdown */ /* Only apply opacity to the util bar, not the dropdown */
#app-content .compact .utils ul { #app-content .compact .utils ul {
opacity: 0.9; opacity: 0.9;

View File

@ -7,9 +7,6 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com> * @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014 * @copyright Bernhard Posselt 2014
*/ */
#app-navigation {
overflow-y: hidden !important;
}
/* add new feed or folder */ /* add new feed or folder */
/* button */ /* button */

View File

@ -1,26 +1,17 @@
# Admin # Admin
Welcome to the Admin documentation this page explains some of the configuration options for news. Welcome to the Admin documentation this page explains some of the configuration options for news.
## System Cron ## System Cron
Nextcloud uses cron to run regular jobs, News relies on the Job system to execute the feed updates. Nextcloud uses Cron to run regular jobs, News relies on the Job system to execute the feed updates.
Alternatively you may use an [external updater](https://nextcloud.github.io/news/clients/#update-clients), in this case you need to disable the system cron in the settings. Alternatively you may use an [external updater](https://nextcloud.github.io/news/clients/#update-clients), in this case you need to disable the system cron in the settings.
## Auto purge count ## Auto purge count
- The default value is 200. This value represents the maximum amount of read items per feed, which won't be deleted by the cleanup job.
- To disable this feature, use -1. For example if the value is 200 there can be maximum 200 read items per feed, unread items are unaffected.
- Unread and starred items are not deleted. If old articles reappear after being read, try to increase this value.
To disable this feature use -1.
Auto purging automatically removes the oldest read items of every feed after every update.
The value you enter here is used as the limit of read items per feed, unless the feed comes with more items in it's feed.
For example you have the default value of 200 and the feed has 210 items in it's feed.
In this case the limit will be 210 instead of 200.
## Purge unread items
This changes the behavior of the auto purging to also purge unread items. This is useful if you have users with a lot of unread items.
**Starred items are always kept.**
## Explore Service ## Explore Service
If you are using the News app in your company/community, it might be interesting to offer your users a bunch of easily to discover default feeds. You could also create a website where people can add and up-vote news feeds like bigger cloud feed readers like Feedly do it or even convert their APIs into a service for the News app (if someone wants to provide one for the News app, feel free to contact us by creating an issue in the bug tracker). If you are using the News app in your company/community it might be interesting to offer your users a bunch of easily to discover default feeds. You could also create a website where people can add and up-vote news feeds like bigger cloud feed readers like Feedly do it or even convert their APIs into a service for the News app (if someone wants to provide one for the News app, feel free to contact us by creating an issue in the bug tracker).
The URL should be a path to a directory which contains a JSON file in the format of **feeds.LANG_CODE.json** where LANG_CODE is a two character language code (e.g. **en** or **de**). The URL should be a path to a directory which contains a JSON file in the format of **feeds.LANG_CODE.json** where LANG_CODE is a two character language code (e.g. **en** or **de**).
@ -32,12 +23,11 @@ For example, entering the URL **https://domain.com/directory** as explore URL wi
## Update Interval ## Update Interval
The update interval is used to determine when the next update of all feeds should be done. The update interval is used to determine when the next update of all feeds should be done.
By default, the value is set to 3600 seconds (1 hour) You can configure this interval as an administrator. You can configure this interval as an administrator.
The new value is only applied after the next run of the updater.
### What is a good update interval? ### What is a good update interval?
That depends on your individual needs. That depends on your individual needs.
Please keep in mind that the lower you set your update interval, the more traffic is generated. Please keep in mind that the lower you set your update interval, the more traffic is generated.
### Can I set individual update intervals per feed/user? ### Can I set individual update intervals per feed/user?
No, that is not possible. No, the job framework of Nextcloud is pretty simple.

View File

@ -10,9 +10,7 @@ A sync client can be used to read news and synchronize via the API.
| Name | OS/Platform | License | Source | | Name | OS/Platform | License | Source |
|------------------------------------------------------------------------------------------------------------------|------------------------------|----------------------|--------------------------------------------------------------------| |------------------------------------------------------------------------------------------------------------------|------------------------------|----------------------|--------------------------------------------------------------------|
| [RSS Guard](https://github.com/martinrotter/rssguard) | Windows, Linux, OS/2, macOS | GPL-3.0 License | [GitHub](https://github.com/martinrotter/rssguard) | | [RSS Guard](https://github.com/martinrotter/rssguard) | Windows, Linux, OS/2, macOS | GPL-3.0 License | [GitHub](https://github.com/martinrotter/rssguard) |
| [Fluent Reader](https://hyliu.me/fluent-reader/) | Windows, Linux, macOS | BSD-3-Clause License | [GitHub](https://github.com/yang991178/fluent-reader) |
| [Communique](https://flathub.org/apps/details/com.github.suzie97.communique) | Linux | LGPL-2.1 License | [GitHub](https://github.com/Suzie97/Communique) | | [Communique](https://flathub.org/apps/details/com.github.suzie97.communique) | Linux | LGPL-2.1 License | [GitHub](https://github.com/Suzie97/Communique) |
| [NewsFlash](https://flathub.org/apps/details/com.gitlab.newsflash) | Linux | GPL-3.0 License | [GitLab](https://gitlab.com/news-flash/news_flash_gtk) |
| [Nextcloud News Reader](https://play.google.com/store/apps/details?id=de.luhmer.owncloudnewsreader) | Android | GPL-3.0 License | [GitHub](https://github.com/nextcloud/news-android-app) | | [Nextcloud News Reader](https://play.google.com/store/apps/details?id=de.luhmer.owncloudnewsreader) | Android | GPL-3.0 License | [GitHub](https://github.com/nextcloud/news-android-app) |
| [OCReader](https://f-droid.org/repository/browse/?fdid=email.schaal.ocreader) | Android | GPL-3.0 License | [GitHub](https://github.com/schaal/ocreader) | | [OCReader](https://f-droid.org/repository/browse/?fdid=email.schaal.ocreader) | Android | GPL-3.0 License | [GitHub](https://github.com/schaal/ocreader) |
| [Newsout](https://play.google.com/store/apps/details?id=com.inspiredandroid.newsout) | Android | Apache-2.0 License | [GitHub](https://github.com/SimonSchubert/NewsOut) | | [Newsout](https://play.google.com/store/apps/details?id=com.inspiredandroid.newsout) | Android | Apache-2.0 License | [GitHub](https://github.com/SimonSchubert/NewsOut) |

View File

@ -21,33 +21,3 @@ The PHP code should all adhere to [PSR-2](https://www.php-fig.org/psr/psr-2/).
To test the codestyle you can run `make phpcs`. To test the codestyle you can run `make phpcs`.
For linting JavaScript, a [jshint file](https://github.com/nextcloud/news/blob/master/js/.jshintrc) is used that is run before compiling the JavaScript. For linting JavaScript, a [jshint file](https://github.com/nextcloud/news/blob/master/js/.jshintrc) is used that is run before compiling the JavaScript.
## General Developer setup
Check the Nextcloud [documentation](https://docs.nextcloud.com/server/latest/developer_manual/getting_started/devenv.html) to learn how to setup a developer environment, alternatively to a proper web server you can also use the [builtin php server](https://www.php.net/manual/en/features.commandline.webserver.php) on demand, it is enough for development purposes.
When your setup is running, clone the news repository in the `apps/` directory inside the server.
Change into the news directory and run make to build the app, you will need php, composer, node, npm and maybe more.
Now you can basically use the news app and test your changes.
## Running Integration tests locally
We use [bats](https://bats-core.readthedocs.io/en/stable/) to run integration tests against the API and the cli.
Check how to install bats on your system in the [official documentation](https://bats-core.readthedocs.io/en/stable/installation.html).
You also need to pull the submodules of the news repo.
```bash
git submodules update --init
```
The cli tests expect that the feeds are reachable at `http://localhost:8090`, to achieve that you can use `make feed-server &` the `&` means it'll run in the background.
Now the test feeds will be reachable for bats.
Run the tests by executing `bats tests/command` you can also only run specific tests for example `bats tests/command/feeds.bats`.
For the API tests you need to run a second php server or have another web server that provides Nextcloud and the News App.
The tests expect to find Nextcloud at `http://localhost:8080`
You can do this by running `make nextcloud-server`.
The bats tests can be executed like this `bats tests/api`.

View File

@ -28,7 +28,7 @@ Since an attacker can not execute code in contrast to mixed active content, but
### Why don't you simply use an HTTPS image/audio/video proxy ### Why don't you simply use an HTTPS image/audio/video proxy
For the same reason that we can't fix non HTTPS websites: It does not fix the underlying issue, but only silences it. If you are using an image HTTPS proxy, an attacker can simply attack your image proxy since the proxy fetches insecure content. **Even worse**: if your image proxy serves these images from the same domain as your Nextcloud installation, you [are vulnerable to XSS via SVG images](https://www.owasp.org/images/0/03/Mario_Heiderich_OWASP_Sweden_The_image_that_called_me.pdf). In addition, people feel safe when essentially they are not. For the same reason that we can't fix non HTTPS websites: It does not fix the underlying issue but only silences it. If you are using an image HTTPS proxy, an attacker can simply attack your image proxy since the proxy fetches insecure content. **Even worse**: if your image proxy serves these images from the same domain as your Nextcloud installation you [are vulnerable to XSS via SVG images](https://www.owasp.org/images/0/03/Mario_Heiderich_OWASP_Sweden_The_image_that_called_me.pdf). In addition, people feel safe when essentially they are not.
Since most people don't understand mixed content and don't have two domains and a standalone server for the image proxy, it is very likely they will choose to host it under the same domain. Since most people don't understand mixed content and don't have two domains and a standalone server for the image proxy, it is very likely they will choose to host it under the same domain.
@ -91,14 +91,13 @@ By appending **?subscribe_to=SOME_URL** to your News app URL, you can launch the
## Database table grows too big ## Database table grows too big
If your users have subscribed to some high-volume feeds where a lot of items remain unread,
this can lead to an oversized news table over time. As a consequence, the database upgrade of the news app can take several hours, during which Nextcloud cannot be used.
By default, Nextcloud News purges old news items above a certain threshold each time it fetches new news items. The maximum number of items per feed By default, Nextcloud News purges old news items above a certain threshold each time it fetches new news items. The maximum number of items per feed
that should be kept during the purging can be defined through the “Maximum read count per feed” setting in the admin UI or the `autoPurgeCount` that should be kept during the purging can be defined through the “Maximum read count per feed” setting in the admin UI or the `autoPurgeCount`
value in the config. value in the config. (Note: The “Purge interval” (`autoPurgeMinimumInterval`) setting is ignored and does not have any effect.)
Additionally you may enable the option to also purge unread items `purgeUnread`. This is useful if your users have large amounts of unread items.
Starred items are always exempt from purging. However, unread or starred items are exempt from the purging. If your users have subscribed to some high-volume feeds where a lot of items remain
unread, this can lead to an oversized news table over time. As a consequence, the database upgrade of the news app can take several hours, during which
Nextcloud cannot be used.
The command `occ news:updater:after-update [--purge-unread] [<purge-count>]` can be used to manually purge old news items across the instance. With The command `occ news:updater:after-update [--purge-unread] [<purge-count>]` can be used to manually purge old news items across the instance. With
the `--purge-unread` option, unread items are also purged (starred items are still exempt). If `purge-count` is not specified, the configured the `--purge-unread` option, unread items are also purged (starred items are still exempt). If `purge-count` is not specified, the configured

View File

@ -34,10 +34,6 @@ app.config(function ($routeProvider, $provide, $httpProvider, $locationProvider)
$provide.constant('MARK_READ_TIMEOUT', 0.5); $provide.constant('MARK_READ_TIMEOUT', 0.5);
$provide.constant('SCROLL_TIMEOUT', 0.1); $provide.constant('SCROLL_TIMEOUT', 0.1);
const majorVersion = parseInt($('#app-content').data('nc-major-version') || 0, 10);
$provide.constant('NC_MAJOR_VERSION', majorVersion);
window.NEWS_NC_MAJOR_VERSION = majorVersion;
// make sure that the CSRF header is only sent to the Nextcloud domain // make sure that the CSRF header is only sent to the Nextcloud domain
$provide.factory('CSRFInterceptor', function ($q, BASE_URL, $window) { $provide.factory('CSRFInterceptor', function ($q, BASE_URL, $window) {
return { return {

View File

@ -36,6 +36,11 @@ app.controller('ContentController', function (Publisher, FeedResource, ItemResou
this.getFirstItem = function () { this.getFirstItem = function () {
var orderedItems = this.getItems(); var orderedItems = this.getItems();
var item = orderedItems[0]; var item = orderedItems[0];
var lastItem = orderedItems[orderedItems.length - 1];
// If isOldestFirst is set, item should be the last item
if (isOldestFirst()) {
item = lastItem;
}
if (item === undefined) { if (item === undefined) {
return undefined; return undefined;
} }

View File

@ -8,19 +8,10 @@
* @copyright Bernhard Posselt 2014 * @copyright Bernhard Posselt 2014
*/ */
app.directive('newsScroll', function ($timeout, ITEM_AUTO_PAGE_SIZE, app.directive('newsScroll', function ($timeout, ITEM_AUTO_PAGE_SIZE,
MARK_READ_TIMEOUT, SCROLL_TIMEOUT, NC_MAJOR_VERSION) { MARK_READ_TIMEOUT, SCROLL_TIMEOUT) {
'use strict'; 'use strict';
var timer; var timer;
var scrollElement = function() {
// This should be in sync with the same function in js/gui/KeyboardShortcuts.js
if (NC_MAJOR_VERSION >= 25) {
return $('#app-content');
}
return $(window);
};
// autopaging // autopaging
var autoPage = function (limit, elem, scope) { var autoPage = function (limit, elem, scope) {
var counter = 0; var counter = 0;
@ -58,7 +49,8 @@ app.directive('newsScroll', function ($timeout, ITEM_AUTO_PAGE_SIZE,
articles.forEach(function(article) { articles.forEach(function(article) {
// distance to top + height // distance to top + height
var distTop = article.offsetTop + article.offsetHeight; var distTop = article.offsetTop + article.offsetHeight;
var scrollTop = window.pageYOffset || scrollElement().scrollTop(); var scrollTop = window.pageYOffset ||
document.documentElement.scrollTop;
if (distTop < scrollTop) { if (distTop < scrollTop) {
ids.push(parseInt(article.dataset.id, 10)); ids.push(parseInt(article.dataset.id, 10));
} else { } else {
@ -108,11 +100,11 @@ app.directive('newsScroll', function ($timeout, ITEM_AUTO_PAGE_SIZE,
} }
}; };
scrollElement().on('scroll', scrollHandler); $(document).on('scroll', scrollHandler);
// remove scroll handler if element is destroyed // remove scroll handler if element is destroyed
scope.$on('$destroy', function () { scope.$on('$destroy', function () {
scrollElement().off('scroll', scrollHandler); $(document).off('scroll', scrollHandler);
}); });
} }
}; };

View File

@ -16,14 +16,6 @@
(function (window, document, $) { (function (window, document, $) {
'use strict'; 'use strict';
var scrollElement = function() {
// This should be in sync with the same function in js/directive/NewsScroll.js
if (window.NEWS_NC_MAJOR_VERSION >= 25) {
return $('#app-content');
}
return $(window);
};
var noInputFocused = function (element) { var noInputFocused = function (element) {
return !( return !(
element.is('input') || element.is('input') ||
@ -231,38 +223,38 @@
} }
}; };
var getActiveElement = function () { var getActiveElement = function (scrollArea) {
return $('#app-content').find('.item.active:first'); return scrollArea.find('.item.active:first');
}; };
var onActiveItem = function (callback) { var onActiveItem = function (scrollArea, callback) {
callback(getActiveElement()); callback(getActiveElement(scrollArea));
}; };
var toggleUnread = function () { var toggleUnread = function (scrollArea) {
onActiveItem(function (item) { onActiveItem(scrollArea, function (item) {
item.find('.toggle-keep-unread').trigger('click'); item.find('.toggle-keep-unread').trigger('click');
}); });
}; };
var toggleStar = function () { var toggleStar = function (scrollArea) {
onActiveItem(function (item) { onActiveItem(scrollArea, function (item) {
item.find('.star').trigger('click'); item.find('.star').trigger('click');
}); });
}; };
var expandItem = function () { var expandItem = function (scrollArea) {
onActiveItem(function (item) { onActiveItem(scrollArea, function (item) {
item.find('.utils').trigger('click'); item.find('.utils').trigger('click');
}); });
}; };
var openLink = function () { var openLink = function (scrollArea) {
onActiveItem(function (item) { onActiveItem(scrollArea, function (item) {
item.trigger('click'); // mark read
var url = item.find('.external:visible').attr('href'); var url = item.find('.external:visible').attr('href');
var newWindow = window.open(url, '_blank'); var newWindow = window.open(url, '_blank');
newWindow.opener = null; newWindow.opener = null;
setTimeout(()=>item.trigger('click'), 0); // mark read
}); });
}; };
@ -273,14 +265,9 @@
var scrollToItem = function (scrollArea, item, expandItemInCompact) { var scrollToItem = function (scrollArea, item, expandItemInCompact) {
// if you go to the next article in compact view, it should // if you go to the next article in compact view, it should
// expand the current one // expand the current one
scrollArea.scrollTop(
if (window.NEWS_NC_MAJOR_VERSION >= 25) { item.offset().top - 50
scrollArea.scrollTop(scrollArea.scrollTop() + item.offset().top - 50); );
} else {
scrollArea.scrollTop(
item.offset().top - 50
);
}
setItemActive(item[0]); setItemActive(item[0]);
@ -292,7 +279,7 @@
}; };
var scrollToNextItem = function (scrollArea, expandItemInCompact) { var scrollToNextItem = function (scrollArea, expandItemInCompact) {
var activeElement = getActiveElement(); var activeElement = getActiveElement(scrollArea);
// in expand in compact mode, jumping to the next item should open // in expand in compact mode, jumping to the next item should open
// the current one if it's not open yet // the current one if it's not open yet
if (expandItemInCompact && !activeElement.hasClass('open')) { if (expandItemInCompact && !activeElement.hasClass('open')) {
@ -313,7 +300,7 @@
var scrollToPreviousItem = function (scrollArea, var scrollToPreviousItem = function (scrollArea,
expandItemInCompact) { expandItemInCompact) {
var activeElement = getActiveElement(); var activeElement = getActiveElement(scrollArea);
var previousElement = activeElement.prev(); var previousElement = activeElement.prev();
// if the active element has been scrolled, the previous element // if the active element has been scrolled, the previous element
@ -334,19 +321,18 @@
items.each(function (index, item) { items.each(function (index, item) {
var $item = $(item); var $item = $(item);
var bottom = $item.position().top + $item.outerHeight(true); var bottom = $item.position().top + $item.outerHeight(true);
var scrollBottom = scrollElement().scrollTop(); if ((bottom - 20) >= 0) {
if (bottom - 20 >= scrollBottom) {
setItemActive(item); setItemActive(item);
return false; return false;
} }
}); });
}; };
scrollElement().scroll(_.debounce(detectAndSetActiveItem, 250)); $('#app-content').scroll(_.debounce(detectAndSetActiveItem, 250));
}); });
$(document).keyup(function (event) { $(document).keyup(function (event) {
var keyCode = event.keyCode; var keyCode = event.keyCode;
var scrollArea = scrollElement(); var scrollArea = $(document);
var navigationArea = $('#app-navigation'); var navigationArea = $('#app-navigation');
var isCompactView = $('#articles.compact').length > 0; var isCompactView = $('#articles.compact').length > 0;
var isExpandItem = $('#articles') var isExpandItem = $('#articles')

133
js/package-lock.json generated
View File

@ -23,15 +23,15 @@
"gulp-ng-annotate": "^2.1.0", "gulp-ng-annotate": "^2.1.0",
"gulp-sourcemaps": "^3.0.0", "gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0", "gulp-terser": "^2.1.0",
"jasmine-core": "^4.5.0", "jasmine-core": "^4.3.0",
"jquery": "^3.6.3", "jquery": "^3.6.1",
"jshint": "^2.13.6", "jshint": "^2.13.5",
"karma": "^6.4.1", "karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1", "karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0", "karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2", "karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0", "karma-jasmine": "^5.1.0",
"minimatch": "^7.3.0", "minimatch": "^5.1.0",
"natives": "^1.1.6" "natives": "^1.1.6"
}, },
"engines": { "engines": {
@ -1641,9 +1641,9 @@
} }
}, },
"node_modules/decode-uri-component": { "node_modules/decode-uri-component": {
"version": "0.2.2", "version": "0.2.0",
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==",
"dev": true, "dev": true,
"engines": { "engines": {
"node": ">=0.10" "node": ">=0.10"
@ -1886,9 +1886,9 @@
} }
}, },
"node_modules/engine.io": { "node_modules/engine.io": {
"version": "6.2.1", "version": "6.2.0",
"resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz",
"integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", "integrity": "sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@types/cookie": "^0.4.1", "@types/cookie": "^0.4.1",
@ -3603,15 +3603,15 @@
} }
}, },
"node_modules/jasmine-core": { "node_modules/jasmine-core": {
"version": "4.5.0", "version": "4.3.0",
"resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.5.0.tgz", "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.3.0.tgz",
"integrity": "sha512-9PMzyvhtocxb3aXJVOPqBDswdgyAeSB81QnLop4npOpbqnheaTEwPc9ZloQeVswugPManznQBjD8kWDTjlnHuw==", "integrity": "sha512-qybtBUesniQdW6n+QIHMng2vDOHscIC/dEXjW+JzO9+LoAZMb03RCUC5xFOv/btSKPm1xL42fn+RjlU4oB42Lg==",
"dev": true "dev": true
}, },
"node_modules/jquery": { "node_modules/jquery": {
"version": "3.6.3", "version": "3.6.1",
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz", "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.1.tgz",
"integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg==", "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw==",
"dev": true "dev": true
}, },
"node_modules/js-tokens": { "node_modules/js-tokens": {
@ -3633,9 +3633,9 @@
} }
}, },
"node_modules/jshint": { "node_modules/jshint": {
"version": "2.13.6", "version": "2.13.5",
"resolved": "https://registry.npmjs.org/jshint/-/jshint-2.13.6.tgz", "resolved": "https://registry.npmjs.org/jshint/-/jshint-2.13.5.tgz",
"integrity": "sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==", "integrity": "sha512-dB2n1w3OaQ35PLcBGIWXlszjbPZwsgZoxsg6G8PtNf2cFMC1l0fObkYLUuXqTTdi6tKw4sAjfUseTdmDMHQRcg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"cli": "~1.0.0", "cli": "~1.0.0",
@ -3679,9 +3679,9 @@
"dev": true "dev": true
}, },
"node_modules/json5": { "node_modules/json5": {
"version": "2.2.3", "version": "2.2.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
"dev": true, "dev": true,
"bin": { "bin": {
"json5": "lib/cli.js" "json5": "lib/cli.js"
@ -3709,9 +3709,9 @@
"dev": true "dev": true
}, },
"node_modules/karma": { "node_modules/karma": {
"version": "6.4.1", "version": "6.4.0",
"resolved": "https://registry.npmjs.org/karma/-/karma-6.4.1.tgz", "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.0.tgz",
"integrity": "sha512-Cj57NKOskK7wtFWSlMvZf459iX+kpYIPXmkNUzP2WAFcA7nhr/ALn5R7sw3w+1udFDcpMx/tuB8d5amgm3ijaA==", "integrity": "sha512-s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@colors/colors": "1.5.0", "@colors/colors": "1.5.0",
@ -4553,18 +4553,15 @@
} }
}, },
"node_modules/minimatch": { "node_modules/minimatch": {
"version": "7.3.0", "version": "5.1.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.3.0.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz",
"integrity": "sha512-WaMDuhKa7a6zKiwplR1AOz+zGvJba24k5VU1Cy6NhEguavT2YRlHxuINUgTas4wiS6fwBpYq4TcA1XIECSntyw==", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"brace-expansion": "^2.0.1" "brace-expansion": "^2.0.1"
}, },
"engines": { "engines": {
"node": ">=10" "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
} }
}, },
"node_modules/minimist": { "node_modules/minimist": {
@ -6102,9 +6099,9 @@
"dev": true "dev": true
}, },
"node_modules/socket.io-parser": { "node_modules/socket.io-parser": {
"version": "4.0.5", "version": "4.0.4",
"resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.5.tgz", "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz",
"integrity": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==", "integrity": "sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@types/component-emitter": "^1.2.10", "@types/component-emitter": "^1.2.10",
@ -6738,9 +6735,9 @@
"dev": true "dev": true
}, },
"node_modules/ua-parser-js": { "node_modules/ua-parser-js": {
"version": "0.7.33", "version": "0.7.31",
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.33.tgz", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz",
"integrity": "sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==", "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==",
"dev": true, "dev": true,
"funding": [ "funding": [
{ {
@ -8478,9 +8475,9 @@
"dev": true "dev": true
}, },
"decode-uri-component": { "decode-uri-component": {
"version": "0.2.2", "version": "0.2.0",
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==",
"dev": true "dev": true
}, },
"default-compare": { "default-compare": {
@ -8681,9 +8678,9 @@
} }
}, },
"engine.io": { "engine.io": {
"version": "6.2.1", "version": "6.2.0",
"resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz",
"integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", "integrity": "sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg==",
"dev": true, "dev": true,
"requires": { "requires": {
"@types/cookie": "^0.4.1", "@types/cookie": "^0.4.1",
@ -10077,15 +10074,15 @@
} }
}, },
"jasmine-core": { "jasmine-core": {
"version": "4.5.0", "version": "4.3.0",
"resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.5.0.tgz", "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.3.0.tgz",
"integrity": "sha512-9PMzyvhtocxb3aXJVOPqBDswdgyAeSB81QnLop4npOpbqnheaTEwPc9ZloQeVswugPManznQBjD8kWDTjlnHuw==", "integrity": "sha512-qybtBUesniQdW6n+QIHMng2vDOHscIC/dEXjW+JzO9+LoAZMb03RCUC5xFOv/btSKPm1xL42fn+RjlU4oB42Lg==",
"dev": true "dev": true
}, },
"jquery": { "jquery": {
"version": "3.6.3", "version": "3.6.1",
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz", "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.1.tgz",
"integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg==", "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw==",
"dev": true "dev": true
}, },
"js-tokens": { "js-tokens": {
@ -10101,9 +10098,9 @@
"dev": true "dev": true
}, },
"jshint": { "jshint": {
"version": "2.13.6", "version": "2.13.5",
"resolved": "https://registry.npmjs.org/jshint/-/jshint-2.13.6.tgz", "resolved": "https://registry.npmjs.org/jshint/-/jshint-2.13.5.tgz",
"integrity": "sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==", "integrity": "sha512-dB2n1w3OaQ35PLcBGIWXlszjbPZwsgZoxsg6G8PtNf2cFMC1l0fObkYLUuXqTTdi6tKw4sAjfUseTdmDMHQRcg==",
"dev": true, "dev": true,
"requires": { "requires": {
"cli": "~1.0.0", "cli": "~1.0.0",
@ -10143,9 +10140,9 @@
"dev": true "dev": true
}, },
"json5": { "json5": {
"version": "2.2.3", "version": "2.2.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
"dev": true "dev": true
}, },
"jsonfile": { "jsonfile": {
@ -10165,9 +10162,9 @@
"dev": true "dev": true
}, },
"karma": { "karma": {
"version": "6.4.1", "version": "6.4.0",
"resolved": "https://registry.npmjs.org/karma/-/karma-6.4.1.tgz", "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.0.tgz",
"integrity": "sha512-Cj57NKOskK7wtFWSlMvZf459iX+kpYIPXmkNUzP2WAFcA7nhr/ALn5R7sw3w+1udFDcpMx/tuB8d5amgm3ijaA==", "integrity": "sha512-s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w==",
"dev": true, "dev": true,
"requires": { "requires": {
"@colors/colors": "1.5.0", "@colors/colors": "1.5.0",
@ -10828,9 +10825,9 @@
} }
}, },
"minimatch": { "minimatch": {
"version": "7.3.0", "version": "5.1.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.3.0.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz",
"integrity": "sha512-WaMDuhKa7a6zKiwplR1AOz+zGvJba24k5VU1Cy6NhEguavT2YRlHxuINUgTas4wiS6fwBpYq4TcA1XIECSntyw==", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==",
"dev": true, "dev": true,
"requires": { "requires": {
"brace-expansion": "^2.0.1" "brace-expansion": "^2.0.1"
@ -12069,9 +12066,9 @@
"dev": true "dev": true
}, },
"socket.io-parser": { "socket.io-parser": {
"version": "4.0.5", "version": "4.0.4",
"resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.5.tgz", "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz",
"integrity": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==", "integrity": "sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g==",
"dev": true, "dev": true,
"requires": { "requires": {
"@types/component-emitter": "^1.2.10", "@types/component-emitter": "^1.2.10",
@ -12585,9 +12582,9 @@
"dev": true "dev": true
}, },
"ua-parser-js": { "ua-parser-js": {
"version": "0.7.33", "version": "0.7.31",
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.33.tgz", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz",
"integrity": "sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==", "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==",
"dev": true "dev": true
}, },
"unc-path-regex": { "unc-path-regex": {

View File

@ -40,15 +40,15 @@
"gulp-ng-annotate": "^2.1.0", "gulp-ng-annotate": "^2.1.0",
"gulp-sourcemaps": "^3.0.0", "gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0", "gulp-terser": "^2.1.0",
"jasmine-core": "^4.5.0", "jasmine-core": "^4.3.0",
"jquery": "^3.6.3", "jquery": "^3.6.1",
"jshint": "^2.13.6", "jshint": "^2.13.5",
"karma": "^6.4.1", "karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1", "karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0", "karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2", "karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0", "karma-jasmine": "^5.1.0",
"minimatch": "^7.3.0", "minimatch": "^5.1.0",
"natives": "^1.1.6" "natives": "^1.1.6"
}, },
"dependencies": { "dependencies": {

View File

@ -8,6 +8,7 @@ OC.L10N.register(
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Falló la solicitú! Anguaño Nextcloud ta en mou de caltenimientu.", "Request failed, Nextcloud is in currently in maintenance mode!" : "¡Falló la solicitú! Anguaño Nextcloud ta en mou de caltenimientu.",
"Unread articles" : "Artículos ensin lleer", "Unread articles" : "Artículos ensin lleer",
"News" : "Anuncies", "News" : "Anuncies",
"Purge interval" : "Intervalu de purga",
"Maximum read count per feed" : "Númberu máximu de llectura per feed", "Maximum read count per feed" : "Númberu máximu de llectura per feed",
"Maximum redirects" : "Redirecciones máximes", "Maximum redirects" : "Redirecciones máximes",
"Feed fetcher timeout" : "Tiempo escosao p'algamar el feed", "Feed fetcher timeout" : "Tiempo escosao p'algamar el feed",

View File

@ -6,6 +6,7 @@
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Falló la solicitú! Anguaño Nextcloud ta en mou de caltenimientu.", "Request failed, Nextcloud is in currently in maintenance mode!" : "¡Falló la solicitú! Anguaño Nextcloud ta en mou de caltenimientu.",
"Unread articles" : "Artículos ensin lleer", "Unread articles" : "Artículos ensin lleer",
"News" : "Anuncies", "News" : "Anuncies",
"Purge interval" : "Intervalu de purga",
"Maximum read count per feed" : "Númberu máximu de llectura per feed", "Maximum read count per feed" : "Númberu máximu de llectura per feed",
"Maximum redirects" : "Redirecciones máximes", "Maximum redirects" : "Redirecciones máximes",
"Feed fetcher timeout" : "Tiempo escosao p'algamar el feed", "Feed fetcher timeout" : "Tiempo escosao p'algamar el feed",

View File

@ -3,7 +3,6 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Неуспешна заявка, няма налична мрежова връзка!", "Request failed, network connection unavailable!" : "Неуспешна заявка, няма налична мрежова връзка!",
"Request unauthorized. Are you logged in?" : "Заявката не е упълномощена. Вписан ли сте?", "Request unauthorized. Are you logged in?" : "Заявката не е упълномощена. Вписан ли сте?",
"Request forbidden. Are you an administrator?" : "Заявката е забранена. Вие администратор ли сте?",
"Token expired or app not enabled! Reload the page!" : "Изтекла парола или приложението не е активирано! Презаредете страницата!", "Token expired or app not enabled! Reload the page!" : "Изтекла парола или приложението не е активирано! Презаредете страницата!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Вътрешно сървърна грешка! За допълнителна информация проверете файла data/nextcloud.log !", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Вътрешно сървърна грешка! За допълнителна информация проверете файла data/nextcloud.log !",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Заявка се провали, Nextcloud в момента е в режим на поддръжка!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Заявка се провали, Nextcloud в момента е в режим на поддръжка!",
@ -11,16 +10,14 @@ OC.L10N.register(
"Unread articles" : "Непрочетени статии", "Unread articles" : "Непрочетени статии",
"News" : "Новини", "News" : "Новини",
"News folders" : "Нови папки", "News folders" : "Нови папки",
"News articles" : "Новинарски статии",
"Shared with me" : "Споделено с мен", "Shared with me" : "Споделено с мен",
"An RSS/Atom feed reader" : "Четец за RSS/Atom емисии", "An RSS/Atom feed reader" : "Четец за RSS/Atom емисии",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Приложение за четене на RSS/Atom Feed за Nextcloud\n\n- 📲 Синхронизирайте емисиите си с множество мобилни или настолни [клиенти](https://nextcloud.github.io/news/clients/)\n- 🔄 Автоматични актуализации на вашите новинарски емисии\n- 🆓 Безплатен и отворен код под AGPLv3, без реклами или премиум функции\n\n**За да работи това приложение, в момента се изисква System Cron**\n\nИзискванията могат да бъдат намерени [тук](https://nextcloud.github.io/news/install/#dependencies)\n\nРегистърът на промените е достъпен [тук](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nСъздайте [отчет за грешка](https://github.com/nextcloud/news/issues/new/choose)\n\nСъздайте [заявка за функция](https://github.com/nextcloud/news/discussions/new)\n\nПодайте сигнал за [проблем с емисия](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Приложение за четене на RSS/Atom Feed за Nextcloud\n\n- 📲 Синхронизирайте емисиите си с множество мобилни или настолни [клиенти](https://nextcloud.github.io/news/clients/)\n- 🔄 Автоматични актуализации на вашите новинарски емисии\n- 🆓 Безплатен и отворен код под AGPLv3, без реклами или премиум функции\n\n**За да работи това приложение, в момента се изисква System Cron**\n\nИзискванията могат да бъдат намерени [тук](https://nextcloud.github.io/news/install/#dependencies)\n\nРегистърът на промените е достъпен [тук](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nСъздайте [отчет за грешка](https://github.com/nextcloud/news/issues/new/choose)\n\nСъздайте [заявка за функция](https://github.com/nextcloud/news/discussions/new)\n\nПодайте сигнал за [проблем с емисия](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Използване на системния cron за актуализации", "Use system cron for updates" : "Използване на системния cron за актуализации",
"Disable this if you use a custom updater." : "Деактивирайте това, ако използвате персонализирана програма за актуализиране.", "Disable this if you use a custom updater." : "Деактивирайте това, ако използвате персонализирана програма за актуализиране.",
"Purge interval" : "Интервал за изтриване",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Минимално време в секунди, след което изтрити емисии и папки биват премахвани от базата данни; стойности под 60 секунди ще бъдат игнорирани",
"Maximum read count per feed" : "Максимален брой прочитания на емисия", "Maximum read count per feed" : "Максимален брой прочитания на емисия",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Задава максималния брой статии, които могат да бъдат прочетени за всяка емисия, които няма да бъдат изтрити от автоматичната програма за почистване; ако стари статии се появят отново след като са били прочетени, може да увеличите стойността; отрицателни стойности, като \"-1\", изключват напълно тази функционалност.",
"Delete unread articles automatically" : "Автоматично изтриване на непрочетени статии",
"Enable this if you also want to delete unread articles." : "Разрешаване на опцията ако искате и да изтривате непрочетени статии.",
"Maximum redirects" : "Максимален брой пренасочвания", "Maximum redirects" : "Максимален брой пренасочвания",
"How many redirects the feed fetcher should follow." : "Колко пренасочвания трябва да следва инструментът за извличане на емисии.", "How many redirects the feed fetcher should follow." : "Колко пренасочвания трябва да следва инструментът за извличане на емисии.",
"Feed fetcher timeout" : "Максимално време за изчакване", "Feed fetcher timeout" : "Максимално време за изчакване",
@ -29,8 +26,6 @@ OC.L10N.register(
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Ако е даден, URL адресът на тази услуга ще бъде поискан за показване на емисиите в секцията за изследване на емисия. За да се върнете към вградената услуга за изследване, оставете тези входи данни празни.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Ако е даден, URL адресът на тази услуга ще бъде поискан за показване на емисиите в секцията за изследване на емисия. За да се върнете към вградената услуга за изследване, оставете тези входи данни празни.",
"Update interval" : "Интервал за актуализиране", "Update interval" : "Интервал за актуализиране",
"Interval in seconds in which the feeds will be updated." : "Интервал в секунди, в който емисиите ще бъдат актуализирани.", "Interval in seconds in which the feeds will be updated." : "Интервал в секунди, в който емисиите ще бъдат актуализирани.",
"Successfully updated news configuration" : "Успешно актуализирана конфигурация за новини",
"Unable to update news config" : "Не може да се актуализира конфигурацията за новини",
"Download" : "Изтегли", "Download" : "Изтегли",
"Close" : "Затваряне", "Close" : "Затваряне",
"Subscribe to" : "Абониране за", "Subscribe to" : "Абониране за",

View File

@ -1,7 +1,6 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Неуспешна заявка, няма налична мрежова връзка!", "Request failed, network connection unavailable!" : "Неуспешна заявка, няма налична мрежова връзка!",
"Request unauthorized. Are you logged in?" : "Заявката не е упълномощена. Вписан ли сте?", "Request unauthorized. Are you logged in?" : "Заявката не е упълномощена. Вписан ли сте?",
"Request forbidden. Are you an administrator?" : "Заявката е забранена. Вие администратор ли сте?",
"Token expired or app not enabled! Reload the page!" : "Изтекла парола или приложението не е активирано! Презаредете страницата!", "Token expired or app not enabled! Reload the page!" : "Изтекла парола или приложението не е активирано! Презаредете страницата!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Вътрешно сървърна грешка! За допълнителна информация проверете файла data/nextcloud.log !", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Вътрешно сървърна грешка! За допълнителна информация проверете файла data/nextcloud.log !",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Заявка се провали, Nextcloud в момента е в режим на поддръжка!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Заявка се провали, Nextcloud в момента е в режим на поддръжка!",
@ -9,16 +8,14 @@
"Unread articles" : "Непрочетени статии", "Unread articles" : "Непрочетени статии",
"News" : "Новини", "News" : "Новини",
"News folders" : "Нови папки", "News folders" : "Нови папки",
"News articles" : "Новинарски статии",
"Shared with me" : "Споделено с мен", "Shared with me" : "Споделено с мен",
"An RSS/Atom feed reader" : "Четец за RSS/Atom емисии", "An RSS/Atom feed reader" : "Четец за RSS/Atom емисии",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Приложение за четене на RSS/Atom Feed за Nextcloud\n\n- 📲 Синхронизирайте емисиите си с множество мобилни или настолни [клиенти](https://nextcloud.github.io/news/clients/)\n- 🔄 Автоматични актуализации на вашите новинарски емисии\n- 🆓 Безплатен и отворен код под AGPLv3, без реклами или премиум функции\n\n**За да работи това приложение, в момента се изисква System Cron**\n\nИзискванията могат да бъдат намерени [тук](https://nextcloud.github.io/news/install/#dependencies)\n\nРегистърът на промените е достъпен [тук](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nСъздайте [отчет за грешка](https://github.com/nextcloud/news/issues/new/choose)\n\nСъздайте [заявка за функция](https://github.com/nextcloud/news/discussions/new)\n\nПодайте сигнал за [проблем с емисия](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Приложение за четене на RSS/Atom Feed за Nextcloud\n\n- 📲 Синхронизирайте емисиите си с множество мобилни или настолни [клиенти](https://nextcloud.github.io/news/clients/)\n- 🔄 Автоматични актуализации на вашите новинарски емисии\n- 🆓 Безплатен и отворен код под AGPLv3, без реклами или премиум функции\n\n**За да работи това приложение, в момента се изисква System Cron**\n\nИзискванията могат да бъдат намерени [тук](https://nextcloud.github.io/news/install/#dependencies)\n\nРегистърът на промените е достъпен [тук](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nСъздайте [отчет за грешка](https://github.com/nextcloud/news/issues/new/choose)\n\nСъздайте [заявка за функция](https://github.com/nextcloud/news/discussions/new)\n\nПодайте сигнал за [проблем с емисия](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Използване на системния cron за актуализации", "Use system cron for updates" : "Използване на системния cron за актуализации",
"Disable this if you use a custom updater." : "Деактивирайте това, ако използвате персонализирана програма за актуализиране.", "Disable this if you use a custom updater." : "Деактивирайте това, ако използвате персонализирана програма за актуализиране.",
"Purge interval" : "Интервал за изтриване",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Минимално време в секунди, след което изтрити емисии и папки биват премахвани от базата данни; стойности под 60 секунди ще бъдат игнорирани",
"Maximum read count per feed" : "Максимален брой прочитания на емисия", "Maximum read count per feed" : "Максимален брой прочитания на емисия",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Задава максималния брой статии, които могат да бъдат прочетени за всяка емисия, които няма да бъдат изтрити от автоматичната програма за почистване; ако стари статии се появят отново след като са били прочетени, може да увеличите стойността; отрицателни стойности, като \"-1\", изключват напълно тази функционалност.",
"Delete unread articles automatically" : "Автоматично изтриване на непрочетени статии",
"Enable this if you also want to delete unread articles." : "Разрешаване на опцията ако искате и да изтривате непрочетени статии.",
"Maximum redirects" : "Максимален брой пренасочвания", "Maximum redirects" : "Максимален брой пренасочвания",
"How many redirects the feed fetcher should follow." : "Колко пренасочвания трябва да следва инструментът за извличане на емисии.", "How many redirects the feed fetcher should follow." : "Колко пренасочвания трябва да следва инструментът за извличане на емисии.",
"Feed fetcher timeout" : "Максимално време за изчакване", "Feed fetcher timeout" : "Максимално време за изчакване",
@ -27,8 +24,6 @@
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Ако е даден, URL адресът на тази услуга ще бъде поискан за показване на емисиите в секцията за изследване на емисия. За да се върнете към вградената услуга за изследване, оставете тези входи данни празни.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Ако е даден, URL адресът на тази услуга ще бъде поискан за показване на емисиите в секцията за изследване на емисия. За да се върнете към вградената услуга за изследване, оставете тези входи данни празни.",
"Update interval" : "Интервал за актуализиране", "Update interval" : "Интервал за актуализиране",
"Interval in seconds in which the feeds will be updated." : "Интервал в секунди, в който емисиите ще бъдат актуализирани.", "Interval in seconds in which the feeds will be updated." : "Интервал в секунди, в който емисиите ще бъдат актуализирани.",
"Successfully updated news configuration" : "Успешно актуализирана конфигурация за новини",
"Unable to update news config" : "Не може да се актуализира конфигурацията за новини",
"Download" : "Изтегли", "Download" : "Изтегли",
"Close" : "Затваряне", "Close" : "Затваряне",
"Subscribe to" : "Абониране за", "Subscribe to" : "Абониране за",

View File

@ -11,6 +11,8 @@ OC.L10N.register(
"Shared with me" : "Compartit amb mi", "Shared with me" : "Compartit amb mi",
"An RSS/Atom feed reader" : "Un lector de notícies RSS/Atom", "An RSS/Atom feed reader" : "Un lector de notícies RSS/Atom",
"Use system cron for updates" : "Feu servir el sistema cron per a les actualitzacions", "Use system cron for updates" : "Feu servir el sistema cron per a les actualitzacions",
"Purge interval" : "Interval de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Nombre mí­nim de segons abans que les fonts i carpetes eliminades siguin eliminades definitivament de la base de dades; valors per sota de 60 segons seran ignorats.",
"Maximum read count per feed" : "Màxim nombre de lectures per font", "Maximum read count per feed" : "Màxim nombre de lectures per font",
"Maximum redirects" : "Màxim de redirigits", "Maximum redirects" : "Màxim de redirigits",
"How many redirects the feed fetcher should follow." : "Quantes redireccions hauria de suportar el descarregador de fonts.", "How many redirects the feed fetcher should follow." : "Quantes redireccions hauria de suportar el descarregador de fonts.",

View File

@ -9,6 +9,8 @@
"Shared with me" : "Compartit amb mi", "Shared with me" : "Compartit amb mi",
"An RSS/Atom feed reader" : "Un lector de notícies RSS/Atom", "An RSS/Atom feed reader" : "Un lector de notícies RSS/Atom",
"Use system cron for updates" : "Feu servir el sistema cron per a les actualitzacions", "Use system cron for updates" : "Feu servir el sistema cron per a les actualitzacions",
"Purge interval" : "Interval de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Nombre mí­nim de segons abans que les fonts i carpetes eliminades siguin eliminades definitivament de la base de dades; valors per sota de 60 segons seran ignorats.",
"Maximum read count per feed" : "Màxim nombre de lectures per font", "Maximum read count per feed" : "Màxim nombre de lectures per font",
"Maximum redirects" : "Màxim de redirigits", "Maximum redirects" : "Màxim de redirigits",
"How many redirects the feed fetcher should follow." : "Quantes redireccions hauria de suportar el descarregador de fonts.", "How many redirects the feed fetcher should follow." : "Quantes redireccions hauria de suportar el descarregador de fonts.",

View File

@ -1,46 +1,44 @@
OC.L10N.register( OC.L10N.register(
"news", "news",
{ {
"Request failed, network connection unavailable!" : "Požadavek se nezdařil nedostupné síťové spojení!", "Request failed, network connection unavailable!" : "Požadavek se nezdařil, není dostupné síťové připojení!",
"Request unauthorized. Are you logged in?" : "Neoprávněný požadavek. Jste přihlášení?", "Request unauthorized. Are you logged in?" : "Neoprávněný požadavek. Jste přihlášení?",
"Request forbidden. Are you an administrator?" : "Požadavek odepřen. Jste správce?", "Request forbidden. Are you an administrator?" : "Požadavek odepřen. Jste správce?",
"Token expired or app not enabled! Reload the page!" : "Platnost tokenu skončila nebo aplikace není povolena! Načtěte stránku znovu.", "Token expired or app not enabled! Reload the page!" : "Platnost tokenu skončila nebo aplikace není povolena! Načtěte stránku znovu.",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vnitřní chyba serveru! Podrobnosti naleznete v souboru data/nextcloud.log", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vnitřní chyba serveru! Podrobnosti naleznete v souboru data/nextcloud.log",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Požadavek se nezdařil, protože Nextcloud se právě nachází v režimu údržby!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Požadavek se nezdařil, Nextcloud je aktuálně v režimu údržby!",
"News feeds" : "Kanály novinek", "News feeds" : "Kanály novinek",
"Unread articles" : "Nepřečtené články", "Unread articles" : "Nepřečtené články",
"News" : "Novinky", "News" : "Zprávy",
"News folders" : "Složky novinek", "News folders" : "Nové složky",
"News articles" : "Nové články",
"Shared with me" : "Sdíleno se mnou", "Shared with me" : "Sdíleno se mnou",
"An RSS/Atom feed reader" : "Čtečka RSS/Atom kanálů", "An RSS/Atom feed reader" : "Čtečka RSS/Atom zdrojů",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Aplikace čtečka RSS/Atom kanálů pro Nextcloud\n\n- 📲 Synchronizujte vámi odebírané kanály s vícero mobilními nebo desktopovými [klienty](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatické aktualizace vašich kanálů s novinkami\n- 🆓 Svobodné a open source pod licencí AGPLv3, žádné reklamy nebo funkce přístupné až po zaplacení\n\n**Aby tato aplikace fungovala, je v tuto chvíli zapotřebí systémový plánovač (cron)**\n\nPožadavky na instalaci dalších součástí jsou k nalezení [zde](https://nextcloud.github.io/news/install/#dependencies)\n\nSeznam změn je k dispozici [zde](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nVytvořte [hlášení chyby](https://github.com/nextcloud/news/issues/new/choose)\n\nVytvořte [žádost o přidání funkce](https://github.com/nextcloud/news/discussions/new)\n\nNahlaste [problém s kanálem}(https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Aplikace čtečka RSS/Atom kanálů pro Nextcloud\n\n- 📲 Synchronizujte vámi odebírané kanály s vícero mobilními nebo desktopovými [klienty](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatické aktualizace vašich kanálů s novinkami\n- 🆓 Svobodné a open source pod licencí AGPLv3, žádné reklamy nebo funkce přístupné až po zaplacení\n\n**Aby tato aplikace fungovala, je v tuto chvíli zapotřebí systémový plánovač (cron)**\n\nPožadavky na systém jsou k nalezení [zde](https://nextcloud.github.io/news/install/#dependencies)\n\nSeznam změn je k dispozici [zde](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nVytvořte [hlášení chyby](https://github.com/nextcloud/news/issues/new/choose)\n\nVytvořte [žádost o přidání funkce](https://github.com/nextcloud/news/discussions/new)\n\nHlaste [problém s kanálem}(https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Pro aktualizace používat službu systémového plánovače (cron)", "Use system cron for updates" : "Pro aktualizace použít službu systémového plánovače cron",
"Disable this if you use a custom updater." : "Toto vypněte, pokud používáte uživatelsky určený nástroj pro aktualizace.", "Disable this if you use a custom updater." : "Toto vypněte, pokud používáte uživatelsky určený nástroj pro aktualizace.",
"Maximum read count per feed" : "Maximální počet načítaných novinek na kanál", "Purge interval" : "Interval čištění",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Určuje nejvyšší nastavený počet článků, které je z jednotlivých kanálů možné číst a které tím nebudou mazány při čištění. Pokud se staré už přečtené články znovu objevují, navyšte tuto hodnotu (záporné hodnoty jako např. -1 tuto funkci úplně vypnou).", "Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimální časový interval v sekundách, po kterém jsou z databáze smazány odstraněné kanály novinek a složky; hodnoty kratší než 60 sekund jsou ignorovány.",
"Delete unread articles automatically" : "Automaticky mazat i nepřečtené články", "Maximum read count per feed" : "Maximální počet přečtených novinek na kanál",
"Enable this if you also want to delete unread articles." : "Pokud chcete mazat také nepřečtené články, zapněte toto.",
"Maximum redirects" : "Nejvyšší počet přesměrování", "Maximum redirects" : "Nejvyšší počet přesměrování",
"How many redirects the feed fetcher should follow." : "Kolik až přesměrování může být následováno při stahování článků.", "How many redirects the feed fetcher should follow." : "Kolik přesměrování se může následovat při stahování článků.",
"Feed fetcher timeout" : "Časový limit při stahování článků", "Feed fetcher timeout" : "Časový limit při stahování článků",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Nejdelší přijatelné čekání (v sekundách) na načtení RSS nebo Atom kanálu. Při překročení bude pokus o aktualizaci přerušen.", "Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximální počet sekund pro aktualizaci RSS nebo Atom zdroje; pokud bude interval překročen, aktualizace se ukončí.",
"Explore Service URL" : "URL služby pro objevování", "Explore Service URL" : "URL prohledávání",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Pokud zadáno, bude tato URL dotazována ohledně zobrazování kanálů v rámci sekce pro jejich objevování. Pokud se chcete vrátit k výchozí službě pro objevování, ponechte tuto kolonku prázdnou.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Pokud zadáno, bude tato URL dotazována na zobrazování kanálů v sekci prohledávání kanálu. Pro návrat k výchozí službě hledání ponechte tuto kolonku prázdnou.",
"Update interval" : "Interval aktualizace", "Update interval" : "Interval aktualizace",
"Interval in seconds in which the feeds will be updated." : "Interval (v sekundách) ve kterém budou kanály aktualizovány.", "Interval in seconds in which the feeds will be updated." : "Interval (v sekundách) ve kterém budou kanály aktualizovány.",
"Successfully updated news configuration" : "Nastavení pro Novinky úspěšně zaktualizováno", "Successfully updated news configuration" : "Nastavení pro Novinky úspěšně zaktualizováno",
"Unable to update news config" : "Nedaří se aktualizovat nastavení pro Novinky", "Unable to update news config" : "Nedaří se aktualizovat nastavení pro Novinky",
"Download" : "Stáhnout", "Download" : "Stáhnout",
"Close" : "Zavřít", "Close" : "Zavřít",
"Subscribe to" : "Přihlásit se k odběru", "Subscribe to" : "Přihlásit k odběru",
"No articles available" : "Nejsou k dispozici žádné články", "No articles available" : "Nejsou dostupné žádné články",
"No unread articles available" : "Nemáte žádné nepřečtené články", "No unread articles available" : "Nejsou dostupné žádné nepřečtené články",
"Open website" : "Otevřít webovou stránku", "Open website" : "Otevřít webovou stránku",
"Star article" : "Ohodnotit článek hvězdičkou", "Star article" : "Ohodnotit článek hvězdičkou",
"Unstar article" : "Odebrat článku hvězdičku", "Unstar article" : "Odebrat článku hvězdičku",
"Keep article unread" : "Ponechat stav článku jako nepřečtený", "Keep article unread" : "Ponechat článek jako nepřečtený",
"Remove keep article unread" : "Odebrat článku stav nepřečteného", "Remove keep article unread" : "Odstranit označení článku jako nepřečtený",
"Share" : "Sdílet", "Share" : "Sdílet",
"Share with users" : "Sdílet s uživateli", "Share with users" : "Sdílet s uživateli",
"Username" : "Uživatelské jméno", "Username" : "Uživatelské jméno",
@ -49,29 +47,29 @@ OC.L10N.register(
"Share on social media" : "Sdílet na sociální média", "Share on social media" : "Sdílet na sociální média",
"I wanted you to see this article" : "Tento článek doporučuji k přečtení", "I wanted you to see this article" : "Tento článek doporučuji k přečtení",
"Check out this article" : "Podívej(te) se na tento článek", "Check out this article" : "Podívej(te) se na tento článek",
"by" : "od", "by" : "sdílí",
"from" : "z", "from" : "z",
"shared by" : "sdílí", "shared by" : "sdílí",
"Play audio" : "Přehrát zvuk", "Play audio" : "Přehrát zvukovou podobu",
"Download audio" : "Stáhnout si zvuk", "Download audio" : "Stáhnout si zvukovou podobu",
"Download video" : "Stáhnout si video", "Download video" : "Stáhnout video",
"Keyboard shortcut" : "Klávesová zkratka", "Keyboard shortcut" : "Klávesová zkratka",
"Description" : "Popis", "Description" : "Popis",
"right" : "vpravo", "right" : "vpravo",
"Jump to next article" : "Přejít na další článek", "Jump to next article" : "Jít na další článek",
"left" : "vlevo", "left" : "vlevo",
"Jump to previous article" : "Přejít na předchozí článek", "Jump to previous article" : "Jít na předchozí článek",
"Toggle star article" : "Označit / zrušit označení článku hvězdičkou", "Toggle star article" : "Označit / zrušit označení článku hvězdičkou",
"Star article and jump to next one" : "Označit článek hvězdičkou a přejít na další", "Star article and jump to next one" : "Označit článek hvězdičkou a přejít na další",
"Toggle keep current article unread" : "Vyp/zap. ponechání stávajícího článku jako nepřečteného", "Toggle keep current article unread" : "Ponechat aktuální článek jako nepřečtený",
"Open article in new tab" : "Otevřít článek v novém panelu", "Open article in new tab" : "Otevřít článek v novém panelu",
"Toggle expand article in compact view" : "Rozbal./sbalení článku v rámci kompaktního zobrazení", "Toggle expand article in compact view" : "Přepínat rozbalení článku v kompaktním náhledu",
"Refresh" : "Znovu načíst", "Refresh" : "Obnovit",
"Load next feed" : "Načíst další kanál", "Load next feed" : "Načíst další kanál",
"Load previous feed" : "Načíst předchozí kanál", "Load previous feed" : "Načíst předchozí kanál",
"Load previous folder" : "Načíst předchozí složku", "Load previous folder" : "Načíst předchozí složku",
"Load next folder" : "Načíst další složku", "Load next folder" : "Načíst další složku",
"Scroll to active navigation entry" : "Posunout na aktivní položku navigace", "Scroll to active navigation entry" : "Posuňte na aktivní položku nabídky",
"Mark current article's feed/folder read" : "Označit kanál/složku nyní otevřeného článku jako přečtené", "Mark current article's feed/folder read" : "Označit kanál/složku nyní otevřeného článku jako přečtené",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Zjištěn ajax nebo web cron režim! Kanály nebudou aktualizovány!", "Ajax or webcron mode detected! Your feeds will not be updated!" : "Zjištěn ajax nebo web cron režim! Kanály nebudou aktualizovány!",
"How to set up the operating system cron" : "Jak nastavit službu plánovače operačního systému (cron)", "How to set up the operating system cron" : "Jak nastavit službu plánovače operačního systému (cron)",
@ -86,12 +84,12 @@ OC.L10N.register(
"Go back" : "Jít zpět", "Go back" : "Jít zpět",
"Folder exists already!" : "Složka už existuje!", "Folder exists already!" : "Složka už existuje!",
"Credentials" : "Přihlašovací údaje", "Credentials" : "Přihlašovací údaje",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Je třeba, aby přihlašovací údaje pro HTTP Basic Auth byly uloženy nešifrovaně! Každý s přístupem k serveru nebo databázi je ovšem bude moci přečíst!", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Je třeba, aby přihlašovací údaje pro HTTP Basic Auth byly uloženy nešifrovaně! Každý s přístupem k serveru nebo databázi je bude moci přečíst!",
"Password" : "Heslo", "Password" : "Heslo",
"Auto discover Feed" : "Automaticky objevit kanál", "Auto discover Feed" : "Automaticky objevit kanál",
"New Folder" : "Nová složka", "New Folder" : "Nová složka",
"Create" : "Vytvořit", "Create" : "Vytvořit",
"Explore" : "Objevit", "Explore" : "Prohledat",
"Update failed more than 50 times" : "Aktualizace se nezdařila více než 50krát", "Update failed more than 50 times" : "Aktualizace se nezdařila více než 50krát",
"Deleted feed" : "Smazaný kanál", "Deleted feed" : "Smazaný kanál",
"Undo delete feed" : "Vzít zpět smazání kanálu", "Undo delete feed" : "Vzít zpět smazání kanálu",
@ -103,20 +101,20 @@ OC.L10N.register(
"Newest first" : "První nejnovější", "Newest first" : "První nejnovější",
"Oldest first" : "První nejstarší", "Oldest first" : "První nejstarší",
"Default order" : "Výchozí pořadí", "Default order" : "Výchozí pořadí",
"Enable full text" : "Zobrazovat celý text", "Enable full text" : "Povolit plný text",
"Disable full text" : "Nezobrazovat celý text", "Disable full text" : "Zakázat plný text",
"Unread updated" : "Aktualizované články nastavit jako nepřečtené", "Unread updated" : "Nepřečtěné aktualizovány",
"Ignore updated" : "Ignorovat aktualizované články", "Ignore updated" : "Ignorování zaktualizováno",
"Open feed URL" : "Otevřít URL kanálu", "Open feed URL" : "Otevřít URL kanálu",
"Delete" : "Smazat", "Delete" : "Smazat",
"Dismiss" : "Zahodit", "Dismiss" : "Zamítnout",
"Collapse" : "Sbalit", "Collapse" : "Sbalit",
"Deleted folder" : "Smazaná složka", "Deleted folder" : "Smazaná složka",
"Undo delete folder" : "Vzít zpět smazání složky", "Undo delete folder" : "Vzít zpět smazání složky",
"Starred" : "S hvězdičkou", "Starred" : "S hvězdičkou",
"All articles" : "Všechny články", "All articles" : "Všechny články",
"Settings" : "Nastavení", "Settings" : "Nastavení",
"Disable mark read through scrolling" : "Po posunutí na jejich konec, neoznačovat automaticky články jako přečtené.", "Disable mark read through scrolling" : "Vypnout označování jako přečtené při posunu",
"Compact view" : "Kompaktní zobrazení", "Compact view" : "Kompaktní zobrazení",
"Expand articles on key navigation" : "Rozbalit články po stisknutí kláves navigace", "Expand articles on key navigation" : "Rozbalit články po stisknutí kláves navigace",
"Show all articles" : "Zobrazit všechny články", "Show all articles" : "Zobrazit všechny články",
@ -127,7 +125,7 @@ OC.L10N.register(
"Error when importing: File does not contain valid OPML" : "Chyba při importu: soubor neobsahuje platná OPML data", "Error when importing: File does not contain valid OPML" : "Chyba při importu: soubor neobsahuje platná OPML data",
"Error when importing: OPML is does neither contain feeds nor folders" : "Chyba při importu: OPML neobsahuje kanály ani složky", "Error when importing: OPML is does neither contain feeds nor folders" : "Chyba při importu: OPML neobsahuje kanály ani složky",
"Unread/Starred Articles" : "Články nepřečtené a s hvězdičkou", "Unread/Starred Articles" : "Články nepřečtené a s hvězdičkou",
"Error when importing: file does not contain valid JSON" : "Chyba při importu: soubor neobsahuje platná JSON data", "Error when importing: file does not contain valid JSON" : "Chyba při importování: soubor neobsahuje platná data JSON",
"Help" : "Nápověda", "Help" : "Nápověda",
"Keyboard shortcuts" : "Klávesové zkratky", "Keyboard shortcuts" : "Klávesové zkratky",
"Documentation" : "Dokumentace", "Documentation" : "Dokumentace",

View File

@ -1,44 +1,42 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Požadavek se nezdařil nedostupné síťové spojení!", "Request failed, network connection unavailable!" : "Požadavek se nezdařil, není dostupné síťové připojení!",
"Request unauthorized. Are you logged in?" : "Neoprávněný požadavek. Jste přihlášení?", "Request unauthorized. Are you logged in?" : "Neoprávněný požadavek. Jste přihlášení?",
"Request forbidden. Are you an administrator?" : "Požadavek odepřen. Jste správce?", "Request forbidden. Are you an administrator?" : "Požadavek odepřen. Jste správce?",
"Token expired or app not enabled! Reload the page!" : "Platnost tokenu skončila nebo aplikace není povolena! Načtěte stránku znovu.", "Token expired or app not enabled! Reload the page!" : "Platnost tokenu skončila nebo aplikace není povolena! Načtěte stránku znovu.",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vnitřní chyba serveru! Podrobnosti naleznete v souboru data/nextcloud.log", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vnitřní chyba serveru! Podrobnosti naleznete v souboru data/nextcloud.log",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Požadavek se nezdařil, protože Nextcloud se právě nachází v režimu údržby!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Požadavek se nezdařil, Nextcloud je aktuálně v režimu údržby!",
"News feeds" : "Kanály novinek", "News feeds" : "Kanály novinek",
"Unread articles" : "Nepřečtené články", "Unread articles" : "Nepřečtené články",
"News" : "Novinky", "News" : "Zprávy",
"News folders" : "Složky novinek", "News folders" : "Nové složky",
"News articles" : "Nové články",
"Shared with me" : "Sdíleno se mnou", "Shared with me" : "Sdíleno se mnou",
"An RSS/Atom feed reader" : "Čtečka RSS/Atom kanálů", "An RSS/Atom feed reader" : "Čtečka RSS/Atom zdrojů",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Aplikace čtečka RSS/Atom kanálů pro Nextcloud\n\n- 📲 Synchronizujte vámi odebírané kanály s vícero mobilními nebo desktopovými [klienty](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatické aktualizace vašich kanálů s novinkami\n- 🆓 Svobodné a open source pod licencí AGPLv3, žádné reklamy nebo funkce přístupné až po zaplacení\n\n**Aby tato aplikace fungovala, je v tuto chvíli zapotřebí systémový plánovač (cron)**\n\nPožadavky na instalaci dalších součástí jsou k nalezení [zde](https://nextcloud.github.io/news/install/#dependencies)\n\nSeznam změn je k dispozici [zde](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nVytvořte [hlášení chyby](https://github.com/nextcloud/news/issues/new/choose)\n\nVytvořte [žádost o přidání funkce](https://github.com/nextcloud/news/discussions/new)\n\nNahlaste [problém s kanálem}(https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Aplikace čtečka RSS/Atom kanálů pro Nextcloud\n\n- 📲 Synchronizujte vámi odebírané kanály s vícero mobilními nebo desktopovými [klienty](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatické aktualizace vašich kanálů s novinkami\n- 🆓 Svobodné a open source pod licencí AGPLv3, žádné reklamy nebo funkce přístupné až po zaplacení\n\n**Aby tato aplikace fungovala, je v tuto chvíli zapotřebí systémový plánovač (cron)**\n\nPožadavky na systém jsou k nalezení [zde](https://nextcloud.github.io/news/install/#dependencies)\n\nSeznam změn je k dispozici [zde](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nVytvořte [hlášení chyby](https://github.com/nextcloud/news/issues/new/choose)\n\nVytvořte [žádost o přidání funkce](https://github.com/nextcloud/news/discussions/new)\n\nHlaste [problém s kanálem}(https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Pro aktualizace používat službu systémového plánovače (cron)", "Use system cron for updates" : "Pro aktualizace použít službu systémového plánovače cron",
"Disable this if you use a custom updater." : "Toto vypněte, pokud používáte uživatelsky určený nástroj pro aktualizace.", "Disable this if you use a custom updater." : "Toto vypněte, pokud používáte uživatelsky určený nástroj pro aktualizace.",
"Maximum read count per feed" : "Maximální počet načítaných novinek na kanál", "Purge interval" : "Interval čištění",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Určuje nejvyšší nastavený počet článků, které je z jednotlivých kanálů možné číst a které tím nebudou mazány při čištění. Pokud se staré už přečtené články znovu objevují, navyšte tuto hodnotu (záporné hodnoty jako např. -1 tuto funkci úplně vypnou).", "Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimální časový interval v sekundách, po kterém jsou z databáze smazány odstraněné kanály novinek a složky; hodnoty kratší než 60 sekund jsou ignorovány.",
"Delete unread articles automatically" : "Automaticky mazat i nepřečtené články", "Maximum read count per feed" : "Maximální počet přečtených novinek na kanál",
"Enable this if you also want to delete unread articles." : "Pokud chcete mazat také nepřečtené články, zapněte toto.",
"Maximum redirects" : "Nejvyšší počet přesměrování", "Maximum redirects" : "Nejvyšší počet přesměrování",
"How many redirects the feed fetcher should follow." : "Kolik až přesměrování může být následováno při stahování článků.", "How many redirects the feed fetcher should follow." : "Kolik přesměrování se může následovat při stahování článků.",
"Feed fetcher timeout" : "Časový limit při stahování článků", "Feed fetcher timeout" : "Časový limit při stahování článků",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Nejdelší přijatelné čekání (v sekundách) na načtení RSS nebo Atom kanálu. Při překročení bude pokus o aktualizaci přerušen.", "Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximální počet sekund pro aktualizaci RSS nebo Atom zdroje; pokud bude interval překročen, aktualizace se ukončí.",
"Explore Service URL" : "URL služby pro objevování", "Explore Service URL" : "URL prohledávání",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Pokud zadáno, bude tato URL dotazována ohledně zobrazování kanálů v rámci sekce pro jejich objevování. Pokud se chcete vrátit k výchozí službě pro objevování, ponechte tuto kolonku prázdnou.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Pokud zadáno, bude tato URL dotazována na zobrazování kanálů v sekci prohledávání kanálu. Pro návrat k výchozí službě hledání ponechte tuto kolonku prázdnou.",
"Update interval" : "Interval aktualizace", "Update interval" : "Interval aktualizace",
"Interval in seconds in which the feeds will be updated." : "Interval (v sekundách) ve kterém budou kanály aktualizovány.", "Interval in seconds in which the feeds will be updated." : "Interval (v sekundách) ve kterém budou kanály aktualizovány.",
"Successfully updated news configuration" : "Nastavení pro Novinky úspěšně zaktualizováno", "Successfully updated news configuration" : "Nastavení pro Novinky úspěšně zaktualizováno",
"Unable to update news config" : "Nedaří se aktualizovat nastavení pro Novinky", "Unable to update news config" : "Nedaří se aktualizovat nastavení pro Novinky",
"Download" : "Stáhnout", "Download" : "Stáhnout",
"Close" : "Zavřít", "Close" : "Zavřít",
"Subscribe to" : "Přihlásit se k odběru", "Subscribe to" : "Přihlásit k odběru",
"No articles available" : "Nejsou k dispozici žádné články", "No articles available" : "Nejsou dostupné žádné články",
"No unread articles available" : "Nemáte žádné nepřečtené články", "No unread articles available" : "Nejsou dostupné žádné nepřečtené články",
"Open website" : "Otevřít webovou stránku", "Open website" : "Otevřít webovou stránku",
"Star article" : "Ohodnotit článek hvězdičkou", "Star article" : "Ohodnotit článek hvězdičkou",
"Unstar article" : "Odebrat článku hvězdičku", "Unstar article" : "Odebrat článku hvězdičku",
"Keep article unread" : "Ponechat stav článku jako nepřečtený", "Keep article unread" : "Ponechat článek jako nepřečtený",
"Remove keep article unread" : "Odebrat článku stav nepřečteného", "Remove keep article unread" : "Odstranit označení článku jako nepřečtený",
"Share" : "Sdílet", "Share" : "Sdílet",
"Share with users" : "Sdílet s uživateli", "Share with users" : "Sdílet s uživateli",
"Username" : "Uživatelské jméno", "Username" : "Uživatelské jméno",
@ -47,29 +45,29 @@
"Share on social media" : "Sdílet na sociální média", "Share on social media" : "Sdílet na sociální média",
"I wanted you to see this article" : "Tento článek doporučuji k přečtení", "I wanted you to see this article" : "Tento článek doporučuji k přečtení",
"Check out this article" : "Podívej(te) se na tento článek", "Check out this article" : "Podívej(te) se na tento článek",
"by" : "od", "by" : "sdílí",
"from" : "z", "from" : "z",
"shared by" : "sdílí", "shared by" : "sdílí",
"Play audio" : "Přehrát zvuk", "Play audio" : "Přehrát zvukovou podobu",
"Download audio" : "Stáhnout si zvuk", "Download audio" : "Stáhnout si zvukovou podobu",
"Download video" : "Stáhnout si video", "Download video" : "Stáhnout video",
"Keyboard shortcut" : "Klávesová zkratka", "Keyboard shortcut" : "Klávesová zkratka",
"Description" : "Popis", "Description" : "Popis",
"right" : "vpravo", "right" : "vpravo",
"Jump to next article" : "Přejít na další článek", "Jump to next article" : "Jít na další článek",
"left" : "vlevo", "left" : "vlevo",
"Jump to previous article" : "Přejít na předchozí článek", "Jump to previous article" : "Jít na předchozí článek",
"Toggle star article" : "Označit / zrušit označení článku hvězdičkou", "Toggle star article" : "Označit / zrušit označení článku hvězdičkou",
"Star article and jump to next one" : "Označit článek hvězdičkou a přejít na další", "Star article and jump to next one" : "Označit článek hvězdičkou a přejít na další",
"Toggle keep current article unread" : "Vyp/zap. ponechání stávajícího článku jako nepřečteného", "Toggle keep current article unread" : "Ponechat aktuální článek jako nepřečtený",
"Open article in new tab" : "Otevřít článek v novém panelu", "Open article in new tab" : "Otevřít článek v novém panelu",
"Toggle expand article in compact view" : "Rozbal./sbalení článku v rámci kompaktního zobrazení", "Toggle expand article in compact view" : "Přepínat rozbalení článku v kompaktním náhledu",
"Refresh" : "Znovu načíst", "Refresh" : "Obnovit",
"Load next feed" : "Načíst další kanál", "Load next feed" : "Načíst další kanál",
"Load previous feed" : "Načíst předchozí kanál", "Load previous feed" : "Načíst předchozí kanál",
"Load previous folder" : "Načíst předchozí složku", "Load previous folder" : "Načíst předchozí složku",
"Load next folder" : "Načíst další složku", "Load next folder" : "Načíst další složku",
"Scroll to active navigation entry" : "Posunout na aktivní položku navigace", "Scroll to active navigation entry" : "Posuňte na aktivní položku nabídky",
"Mark current article's feed/folder read" : "Označit kanál/složku nyní otevřeného článku jako přečtené", "Mark current article's feed/folder read" : "Označit kanál/složku nyní otevřeného článku jako přečtené",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Zjištěn ajax nebo web cron režim! Kanály nebudou aktualizovány!", "Ajax or webcron mode detected! Your feeds will not be updated!" : "Zjištěn ajax nebo web cron režim! Kanály nebudou aktualizovány!",
"How to set up the operating system cron" : "Jak nastavit službu plánovače operačního systému (cron)", "How to set up the operating system cron" : "Jak nastavit službu plánovače operačního systému (cron)",
@ -84,12 +82,12 @@
"Go back" : "Jít zpět", "Go back" : "Jít zpět",
"Folder exists already!" : "Složka už existuje!", "Folder exists already!" : "Složka už existuje!",
"Credentials" : "Přihlašovací údaje", "Credentials" : "Přihlašovací údaje",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Je třeba, aby přihlašovací údaje pro HTTP Basic Auth byly uloženy nešifrovaně! Každý s přístupem k serveru nebo databázi je ovšem bude moci přečíst!", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Je třeba, aby přihlašovací údaje pro HTTP Basic Auth byly uloženy nešifrovaně! Každý s přístupem k serveru nebo databázi je bude moci přečíst!",
"Password" : "Heslo", "Password" : "Heslo",
"Auto discover Feed" : "Automaticky objevit kanál", "Auto discover Feed" : "Automaticky objevit kanál",
"New Folder" : "Nová složka", "New Folder" : "Nová složka",
"Create" : "Vytvořit", "Create" : "Vytvořit",
"Explore" : "Objevit", "Explore" : "Prohledat",
"Update failed more than 50 times" : "Aktualizace se nezdařila více než 50krát", "Update failed more than 50 times" : "Aktualizace se nezdařila více než 50krát",
"Deleted feed" : "Smazaný kanál", "Deleted feed" : "Smazaný kanál",
"Undo delete feed" : "Vzít zpět smazání kanálu", "Undo delete feed" : "Vzít zpět smazání kanálu",
@ -101,20 +99,20 @@
"Newest first" : "První nejnovější", "Newest first" : "První nejnovější",
"Oldest first" : "První nejstarší", "Oldest first" : "První nejstarší",
"Default order" : "Výchozí pořadí", "Default order" : "Výchozí pořadí",
"Enable full text" : "Zobrazovat celý text", "Enable full text" : "Povolit plný text",
"Disable full text" : "Nezobrazovat celý text", "Disable full text" : "Zakázat plný text",
"Unread updated" : "Aktualizované články nastavit jako nepřečtené", "Unread updated" : "Nepřečtěné aktualizovány",
"Ignore updated" : "Ignorovat aktualizované články", "Ignore updated" : "Ignorování zaktualizováno",
"Open feed URL" : "Otevřít URL kanálu", "Open feed URL" : "Otevřít URL kanálu",
"Delete" : "Smazat", "Delete" : "Smazat",
"Dismiss" : "Zahodit", "Dismiss" : "Zamítnout",
"Collapse" : "Sbalit", "Collapse" : "Sbalit",
"Deleted folder" : "Smazaná složka", "Deleted folder" : "Smazaná složka",
"Undo delete folder" : "Vzít zpět smazání složky", "Undo delete folder" : "Vzít zpět smazání složky",
"Starred" : "S hvězdičkou", "Starred" : "S hvězdičkou",
"All articles" : "Všechny články", "All articles" : "Všechny články",
"Settings" : "Nastavení", "Settings" : "Nastavení",
"Disable mark read through scrolling" : "Po posunutí na jejich konec, neoznačovat automaticky články jako přečtené.", "Disable mark read through scrolling" : "Vypnout označování jako přečtené při posunu",
"Compact view" : "Kompaktní zobrazení", "Compact view" : "Kompaktní zobrazení",
"Expand articles on key navigation" : "Rozbalit články po stisknutí kláves navigace", "Expand articles on key navigation" : "Rozbalit články po stisknutí kláves navigace",
"Show all articles" : "Zobrazit všechny články", "Show all articles" : "Zobrazit všechny články",
@ -125,7 +123,7 @@
"Error when importing: File does not contain valid OPML" : "Chyba při importu: soubor neobsahuje platná OPML data", "Error when importing: File does not contain valid OPML" : "Chyba při importu: soubor neobsahuje platná OPML data",
"Error when importing: OPML is does neither contain feeds nor folders" : "Chyba při importu: OPML neobsahuje kanály ani složky", "Error when importing: OPML is does neither contain feeds nor folders" : "Chyba při importu: OPML neobsahuje kanály ani složky",
"Unread/Starred Articles" : "Články nepřečtené a s hvězdičkou", "Unread/Starred Articles" : "Články nepřečtené a s hvězdičkou",
"Error when importing: file does not contain valid JSON" : "Chyba při importu: soubor neobsahuje platná JSON data", "Error when importing: file does not contain valid JSON" : "Chyba při importování: soubor neobsahuje platná data JSON",
"Help" : "Nápověda", "Help" : "Nápověda",
"Keyboard shortcuts" : "Klávesové zkratky", "Keyboard shortcuts" : "Klávesové zkratky",
"Documentation" : "Dokumentace", "Documentation" : "Dokumentace",

View File

@ -3,34 +3,20 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Forespørgslen mislykkedes, netværksforbindelse er ikke tilgængelig!", "Request failed, network connection unavailable!" : "Forespørgslen mislykkedes, netværksforbindelse er ikke tilgængelig!",
"Request unauthorized. Are you logged in?" : "Forespørgslen var ikke autoriseret. Er du logget ind?", "Request unauthorized. Are you logged in?" : "Forespørgslen var ikke autoriseret. Er du logget ind?",
"Request forbidden. Are you an administrator?" : "Anmodning forbudt. Er du administrator?",
"Token expired or app not enabled! Reload the page!" : "Nøglen er udløbet eller appen er ikke aktiveret! Genindlæs siden!", "Token expired or app not enabled! Reload the page!" : "Nøglen er udløbet eller appen er ikke aktiveret! Genindlæs siden!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern server fejl! Tjek din data/nextcloud.log log-fil for yderligere information.", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern server fejl! Tjek din data/nextcloud.log log-fil for yderligere information.",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørgslen mislykkedes, Nextcloud er i øjeblikket i vedligeholdelse tilstand!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørgslen mislykkedes, Nextcloud er i øjeblikket i vedligeholdelse tilstand!",
"News feeds" : "Nyhedsfeeds",
"Unread articles" : "Ulæste artikler", "Unread articles" : "Ulæste artikler",
"News" : "Nyheder", "News" : "Nyheder",
"News folders" : "Nyhedsmapper",
"Shared with me" : "Delt med mig", "Shared with me" : "Delt med mig",
"An RSS/Atom feed reader" : "En RSS/Atom-feedlæser",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 En RSS/Atom Feed-læser-app til Nextcloud\n\n- 📲 Synkroniser dine feeds med flere mobile eller desktop [klienter](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatiske opdateringer af dine nyhedsfeeds\n- 🆓 Gratis og open source under AGPLv3, ingen annoncer eller premium-funktioner\n\n**System Cron er i øjeblikket påkrævet for at denne app kan fungere**\n\nKravene kan findes [her](https://nextcloud.github.io/news/install/#dependencies)\n\nÆndringsloggen er tilgængelig [her](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nOpret en [fejlrapport](https://github.com/nextcloud/news/issues/new/choose)\n\nOpret en [funktionsanmodning](https://github.com/nextcloud/news/discussions/new)\n\nRapporter et [feedproblem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Benyt system cron til opdateringer", "Use system cron for updates" : "Benyt system cron til opdateringer",
"Disable this if you use a custom updater." : "Deaktiver dette, hvis du bruger en brugerdefineret opdatering.", "Purge interval" : "Oprydningsinterval",
"Maximum read count per feed" : "Det maksimale antal læsninger per feed", "Maximum read count per feed" : "Det maksimale antal læsninger per feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definerer den maksimale mængde af artikler, der kan læses pr. feed, som ikke vil blive slettet af oprydningsjobbet; hvis gamle artikler dukker op igen efter at være blevet læst, skal du øge denne værdi; negative værdier såsom -1 vil slå denne funktion fra.",
"Maximum redirects" : "Maksimum for videredirigeringer", "Maximum redirects" : "Maksimum for videredirigeringer",
"How many redirects the feed fetcher should follow." : "Hvor mange omdirigeringer feedhenteren skal følge.",
"Feed fetcher timeout" : "Tidsudløb for feed-indhenter", "Feed fetcher timeout" : "Tidsudløb for feed-indhenter",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maksimalt antal sekunder at vente på, at et RSS- eller Atom-feed indlæses; hvis det tager længere tid, vil opdateringen blive afbrudt.",
"Explore Service URL" : "Udforsk tjenestens URL", "Explore Service URL" : "Udforsk tjenestens URL",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Hvis det er givet, vil denne tjenestes URL blive forespurgt for at vise feeds i sektionen Udforsk feed. For at falde tilbage til den indbyggede udforskningstjeneste skal du lade dette input stå tomt.",
"Update interval" : "Opdateringsinterval",
"Interval in seconds in which the feeds will be updated." : "Interval i sekunder, hvori feeds vil blive opdateret.",
"Successfully updated news configuration" : "Nyhedskonfigurationen blev opdateret",
"Unable to update news config" : "Kunne ikke opdatere nyhedskonfigurationen",
"Download" : "Download", "Download" : "Download",
"Close" : "Luk", "Close" : "Luk",
"Subscribe to" : "Abonnere på",
"No articles available" : "Ingen tilgængelige artikler", "No articles available" : "Ingen tilgængelige artikler",
"No unread articles available" : "Ingen tilgængelige ulæste artikler", "No unread articles available" : "Ingen tilgængelige ulæste artikler",
"Open website" : "Åbn websted", "Open website" : "Åbn websted",
@ -39,16 +25,9 @@ OC.L10N.register(
"Keep article unread" : "Bevar artikel ulæst", "Keep article unread" : "Bevar artikel ulæst",
"Remove keep article unread" : "Fjern \"bevar artikel ulæst\"", "Remove keep article unread" : "Fjern \"bevar artikel ulæst\"",
"Share" : "Del", "Share" : "Del",
"Share with users" : "Del med brugere",
"Username" : "Brugernavn", "Username" : "Brugernavn",
"No users found" : "Ingen brugere fundet",
"Error while searching for users" : "Fejl under søgning efter brugere",
"Share on social media" : "Del på sociale medier",
"I wanted you to see this article" : "Jeg ville have dig til at se denne artikel",
"Check out this article" : "Tjek denne artikel",
"by" : "af", "by" : "af",
"from" : "fra", "from" : "fra",
"shared by" : "delt af",
"Play audio" : "Afspil lydfil", "Play audio" : "Afspil lydfil",
"Download audio" : "Hent lydfil", "Download audio" : "Hent lydfil",
"Download video" : "Hent video", "Download video" : "Hent video",
@ -85,7 +64,6 @@ OC.L10N.register(
"Credentials" : "Brugeroplysninger", "Credentials" : "Brugeroplysninger",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Grundlæggende HTTP Autentificerings akkreditiver skal lagres ukrypteret! Alle med adgang til server eller database vil være i stand til at få adgang til dem!", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Grundlæggende HTTP Autentificerings akkreditiver skal lagres ukrypteret! Alle med adgang til server eller database vil være i stand til at få adgang til dem!",
"Password" : "Adgangskode", "Password" : "Adgangskode",
"Auto discover Feed" : "Automatisk opdage feed",
"New Folder" : "Ny mappe", "New Folder" : "Ny mappe",
"Create" : "Ny", "Create" : "Ny",
"Explore" : "Udforsk", "Explore" : "Udforsk",

View File

@ -1,34 +1,20 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Forespørgslen mislykkedes, netværksforbindelse er ikke tilgængelig!", "Request failed, network connection unavailable!" : "Forespørgslen mislykkedes, netværksforbindelse er ikke tilgængelig!",
"Request unauthorized. Are you logged in?" : "Forespørgslen var ikke autoriseret. Er du logget ind?", "Request unauthorized. Are you logged in?" : "Forespørgslen var ikke autoriseret. Er du logget ind?",
"Request forbidden. Are you an administrator?" : "Anmodning forbudt. Er du administrator?",
"Token expired or app not enabled! Reload the page!" : "Nøglen er udløbet eller appen er ikke aktiveret! Genindlæs siden!", "Token expired or app not enabled! Reload the page!" : "Nøglen er udløbet eller appen er ikke aktiveret! Genindlæs siden!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern server fejl! Tjek din data/nextcloud.log log-fil for yderligere information.", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern server fejl! Tjek din data/nextcloud.log log-fil for yderligere information.",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørgslen mislykkedes, Nextcloud er i øjeblikket i vedligeholdelse tilstand!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørgslen mislykkedes, Nextcloud er i øjeblikket i vedligeholdelse tilstand!",
"News feeds" : "Nyhedsfeeds",
"Unread articles" : "Ulæste artikler", "Unread articles" : "Ulæste artikler",
"News" : "Nyheder", "News" : "Nyheder",
"News folders" : "Nyhedsmapper",
"Shared with me" : "Delt med mig", "Shared with me" : "Delt med mig",
"An RSS/Atom feed reader" : "En RSS/Atom-feedlæser",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 En RSS/Atom Feed-læser-app til Nextcloud\n\n- 📲 Synkroniser dine feeds med flere mobile eller desktop [klienter](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatiske opdateringer af dine nyhedsfeeds\n- 🆓 Gratis og open source under AGPLv3, ingen annoncer eller premium-funktioner\n\n**System Cron er i øjeblikket påkrævet for at denne app kan fungere**\n\nKravene kan findes [her](https://nextcloud.github.io/news/install/#dependencies)\n\nÆndringsloggen er tilgængelig [her](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nOpret en [fejlrapport](https://github.com/nextcloud/news/issues/new/choose)\n\nOpret en [funktionsanmodning](https://github.com/nextcloud/news/discussions/new)\n\nRapporter et [feedproblem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Benyt system cron til opdateringer", "Use system cron for updates" : "Benyt system cron til opdateringer",
"Disable this if you use a custom updater." : "Deaktiver dette, hvis du bruger en brugerdefineret opdatering.", "Purge interval" : "Oprydningsinterval",
"Maximum read count per feed" : "Det maksimale antal læsninger per feed", "Maximum read count per feed" : "Det maksimale antal læsninger per feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definerer den maksimale mængde af artikler, der kan læses pr. feed, som ikke vil blive slettet af oprydningsjobbet; hvis gamle artikler dukker op igen efter at være blevet læst, skal du øge denne værdi; negative værdier såsom -1 vil slå denne funktion fra.",
"Maximum redirects" : "Maksimum for videredirigeringer", "Maximum redirects" : "Maksimum for videredirigeringer",
"How many redirects the feed fetcher should follow." : "Hvor mange omdirigeringer feedhenteren skal følge.",
"Feed fetcher timeout" : "Tidsudløb for feed-indhenter", "Feed fetcher timeout" : "Tidsudløb for feed-indhenter",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maksimalt antal sekunder at vente på, at et RSS- eller Atom-feed indlæses; hvis det tager længere tid, vil opdateringen blive afbrudt.",
"Explore Service URL" : "Udforsk tjenestens URL", "Explore Service URL" : "Udforsk tjenestens URL",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Hvis det er givet, vil denne tjenestes URL blive forespurgt for at vise feeds i sektionen Udforsk feed. For at falde tilbage til den indbyggede udforskningstjeneste skal du lade dette input stå tomt.",
"Update interval" : "Opdateringsinterval",
"Interval in seconds in which the feeds will be updated." : "Interval i sekunder, hvori feeds vil blive opdateret.",
"Successfully updated news configuration" : "Nyhedskonfigurationen blev opdateret",
"Unable to update news config" : "Kunne ikke opdatere nyhedskonfigurationen",
"Download" : "Download", "Download" : "Download",
"Close" : "Luk", "Close" : "Luk",
"Subscribe to" : "Abonnere på",
"No articles available" : "Ingen tilgængelige artikler", "No articles available" : "Ingen tilgængelige artikler",
"No unread articles available" : "Ingen tilgængelige ulæste artikler", "No unread articles available" : "Ingen tilgængelige ulæste artikler",
"Open website" : "Åbn websted", "Open website" : "Åbn websted",
@ -37,16 +23,9 @@
"Keep article unread" : "Bevar artikel ulæst", "Keep article unread" : "Bevar artikel ulæst",
"Remove keep article unread" : "Fjern \"bevar artikel ulæst\"", "Remove keep article unread" : "Fjern \"bevar artikel ulæst\"",
"Share" : "Del", "Share" : "Del",
"Share with users" : "Del med brugere",
"Username" : "Brugernavn", "Username" : "Brugernavn",
"No users found" : "Ingen brugere fundet",
"Error while searching for users" : "Fejl under søgning efter brugere",
"Share on social media" : "Del på sociale medier",
"I wanted you to see this article" : "Jeg ville have dig til at se denne artikel",
"Check out this article" : "Tjek denne artikel",
"by" : "af", "by" : "af",
"from" : "fra", "from" : "fra",
"shared by" : "delt af",
"Play audio" : "Afspil lydfil", "Play audio" : "Afspil lydfil",
"Download audio" : "Hent lydfil", "Download audio" : "Hent lydfil",
"Download video" : "Hent video", "Download video" : "Hent video",
@ -83,7 +62,6 @@
"Credentials" : "Brugeroplysninger", "Credentials" : "Brugeroplysninger",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Grundlæggende HTTP Autentificerings akkreditiver skal lagres ukrypteret! Alle med adgang til server eller database vil være i stand til at få adgang til dem!", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Grundlæggende HTTP Autentificerings akkreditiver skal lagres ukrypteret! Alle med adgang til server eller database vil være i stand til at få adgang til dem!",
"Password" : "Adgangskode", "Password" : "Adgangskode",
"Auto discover Feed" : "Automatisk opdage feed",
"New Folder" : "Ny mappe", "New Folder" : "Ny mappe",
"Create" : "Ny", "Create" : "Ny",
"Explore" : "Udforsk", "Explore" : "Udforsk",

View File

@ -11,16 +11,14 @@ OC.L10N.register(
"Unread articles" : "Ungelesene Artikel", "Unread articles" : "Ungelesene Artikel",
"News" : "News", "News" : "News",
"News folders" : "Neuigkeitenordner", "News folders" : "Neuigkeitenordner",
"News articles" : "Neue Artikel",
"Shared with me" : "Mit mir geteilt", "Shared with me" : "Mit mir geteilt",
"An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader", "An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisiere deine Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung deiner Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen findest du [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) findest du [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstelle einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstelle eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelde ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisiere deine Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung deiner Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen findest du [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) findest du [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstelle einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstelle eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelde ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Verwende System-Cron für Aktualisierungen", "Use system cron for updates" : "Verwende System-Cron für Aktualisierungen",
"Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn du einen eigenen Updater verwendest.", "Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn du einen eigenen Updater verwendest.",
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed", "Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhe diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett",
"Delete unread articles automatically" : "Ungelesene Artikel automatisch löschen",
"Enable this if you also want to delete unread articles." : "Aktiviere dies, wenn du auch ungelesene Artikel löschen möchtest.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen", "Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen, die der Feed-Sammler folgen soll.", "How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen, die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler", "Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",

View File

@ -9,16 +9,14 @@
"Unread articles" : "Ungelesene Artikel", "Unread articles" : "Ungelesene Artikel",
"News" : "News", "News" : "News",
"News folders" : "Neuigkeitenordner", "News folders" : "Neuigkeitenordner",
"News articles" : "Neue Artikel",
"Shared with me" : "Mit mir geteilt", "Shared with me" : "Mit mir geteilt",
"An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader", "An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisiere deine Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung deiner Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen findest du [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) findest du [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstelle einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstelle eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelde ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisiere deine Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung deiner Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen findest du [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) findest du [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstelle einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstelle eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelde ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Verwende System-Cron für Aktualisierungen", "Use system cron for updates" : "Verwende System-Cron für Aktualisierungen",
"Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn du einen eigenen Updater verwendest.", "Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn du einen eigenen Updater verwendest.",
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed", "Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhe diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett",
"Delete unread articles automatically" : "Ungelesene Artikel automatisch löschen",
"Enable this if you also want to delete unread articles." : "Aktiviere dies, wenn du auch ungelesene Artikel löschen möchtest.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen", "Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen, die der Feed-Sammler folgen soll.", "How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen, die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler", "Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",

View File

@ -3,7 +3,7 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Anfrage fehlgeschlagen, Netzwerkverbindung nicht verfügbar!", "Request failed, network connection unavailable!" : "Anfrage fehlgeschlagen, Netzwerkverbindung nicht verfügbar!",
"Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Sind Sie angemeldet?", "Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Sind Sie angemeldet?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie von der Administration?", "Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie ein Admin?",
"Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte laden Sie die Seite neu!", "Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte laden Sie die Seite neu!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Interner Serverfehler! Bitte kontrollieren Sie data/nextcloud.log für weitere Informationen!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Interner Serverfehler! Bitte kontrollieren Sie data/nextcloud.log für weitere Informationen!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Anfrage fehlgeschlagen, diese Nextcloud-Instanz befindet sich derzeit im Wartungsmodus.", "Request failed, Nextcloud is in currently in maintenance mode!" : "Anfrage fehlgeschlagen, diese Nextcloud-Instanz befindet sich derzeit im Wartungsmodus.",
@ -11,16 +11,14 @@ OC.L10N.register(
"Unread articles" : "Ungelesene Artikel", "Unread articles" : "Ungelesene Artikel",
"News" : "News", "News" : "News",
"News folders" : "Nachrichtenordner", "News folders" : "Nachrichtenordner",
"News articles" : "Nachrichtenartikel",
"Shared with me" : "Mit mir geteilt", "Shared with me" : "Mit mir geteilt",
"An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader", "An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisieren Sie Ihre Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung Ihrer Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen finden Sie [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) finden Sie [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstellen Sie einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstellen Sie eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelden Sie ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisieren Sie Ihre Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung Ihrer Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen finden Sie [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) finden Sie [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstellen Sie einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstellen Sie eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelden Sie ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Verwende System-Cron für Aktualisierungen", "Use system cron for updates" : "Verwende System-Cron für Aktualisierungen",
"Disable this if you use a custom updater." : "Deaktivieren Sie diese Option, wenn Sie einen eigenen Updater verwenden.", "Disable this if you use a custom updater." : "Deaktivieren Sie diese Option, wenn Sie einen eigenen Updater verwenden.",
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed", "Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhe diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett",
"Delete unread articles automatically" : "Ungelesene Artikel automatisch löschen",
"Enable this if you also want to delete unread articles." : "Dies aktivieren, wenn auch ungelesene Artikel gelöscht werden sollen.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen", "Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.", "How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler", "Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",
@ -29,7 +27,7 @@ OC.L10N.register(
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Falls angegeben, wird die URL dieses Dienstes zur Feed-Anzeige innerhalb des Explore-Feed-Bereichs abgefragt. Lassen Sie dieses Feld unausgefüllt, um auf den eingebauten Explore-Dienst zurückzugreifen.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Falls angegeben, wird die URL dieses Dienstes zur Feed-Anzeige innerhalb des Explore-Feed-Bereichs abgefragt. Lassen Sie dieses Feld unausgefüllt, um auf den eingebauten Explore-Dienst zurückzugreifen.",
"Update interval" : "Aktualisierungsintervall", "Update interval" : "Aktualisierungsintervall",
"Interval in seconds in which the feeds will be updated." : "Intervall in Sekunden, in dem die Feeds aktualisiert werden.", "Interval in seconds in which the feeds will be updated." : "Intervall in Sekunden, in dem die Feeds aktualisiert werden.",
"Successfully updated news configuration" : "Die News-Einstellungen wurde aktualisiert", "Successfully updated news configuration" : "Die News-Einstellungen wurde erfolgreich aktualisiert",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden", "Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden",
"Download" : "Herunterladen", "Download" : "Herunterladen",
"Close" : "Schließen", "Close" : "Schließen",
@ -100,7 +98,7 @@ OC.L10N.register(
"Mark read" : "Als gelesen markieren", "Mark read" : "Als gelesen markieren",
"Unpin from top" : "Fixierung aufheben", "Unpin from top" : "Fixierung aufheben",
"Pin to top" : "Oben fixieren", "Pin to top" : "Oben fixieren",
"Newest first" : "Neue zuerst", "Newest first" : "Neueste zuerst",
"Oldest first" : "Älteste zuerst", "Oldest first" : "Älteste zuerst",
"Default order" : "Standard-Sortierung", "Default order" : "Standard-Sortierung",
"Enable full text" : "Volltext aktivieren", "Enable full text" : "Volltext aktivieren",

View File

@ -1,7 +1,7 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Anfrage fehlgeschlagen, Netzwerkverbindung nicht verfügbar!", "Request failed, network connection unavailable!" : "Anfrage fehlgeschlagen, Netzwerkverbindung nicht verfügbar!",
"Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Sind Sie angemeldet?", "Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Sind Sie angemeldet?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie von der Administration?", "Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie ein Admin?",
"Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte laden Sie die Seite neu!", "Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte laden Sie die Seite neu!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Interner Serverfehler! Bitte kontrollieren Sie data/nextcloud.log für weitere Informationen!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Interner Serverfehler! Bitte kontrollieren Sie data/nextcloud.log für weitere Informationen!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Anfrage fehlgeschlagen, diese Nextcloud-Instanz befindet sich derzeit im Wartungsmodus.", "Request failed, Nextcloud is in currently in maintenance mode!" : "Anfrage fehlgeschlagen, diese Nextcloud-Instanz befindet sich derzeit im Wartungsmodus.",
@ -9,16 +9,14 @@
"Unread articles" : "Ungelesene Artikel", "Unread articles" : "Ungelesene Artikel",
"News" : "News", "News" : "News",
"News folders" : "Nachrichtenordner", "News folders" : "Nachrichtenordner",
"News articles" : "Nachrichtenartikel",
"Shared with me" : "Mit mir geteilt", "Shared with me" : "Mit mir geteilt",
"An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader", "An RSS/Atom feed reader" : "Ein RSS/Atom-Feed-Reader",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisieren Sie Ihre Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung Ihrer Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen finden Sie [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) finden Sie [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstellen Sie einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstellen Sie eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelden Sie ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisieren Sie Ihre Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung Ihrer Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen finden Sie [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) finden Sie [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstellen Sie einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstellen Sie eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelden Sie ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Verwende System-Cron für Aktualisierungen", "Use system cron for updates" : "Verwende System-Cron für Aktualisierungen",
"Disable this if you use a custom updater." : "Deaktivieren Sie diese Option, wenn Sie einen eigenen Updater verwenden.", "Disable this if you use a custom updater." : "Deaktivieren Sie diese Option, wenn Sie einen eigenen Updater verwenden.",
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed", "Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhe diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett",
"Delete unread articles automatically" : "Ungelesene Artikel automatisch löschen",
"Enable this if you also want to delete unread articles." : "Dies aktivieren, wenn auch ungelesene Artikel gelöscht werden sollen.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen", "Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.", "How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler", "Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",
@ -27,7 +25,7 @@
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Falls angegeben, wird die URL dieses Dienstes zur Feed-Anzeige innerhalb des Explore-Feed-Bereichs abgefragt. Lassen Sie dieses Feld unausgefüllt, um auf den eingebauten Explore-Dienst zurückzugreifen.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Falls angegeben, wird die URL dieses Dienstes zur Feed-Anzeige innerhalb des Explore-Feed-Bereichs abgefragt. Lassen Sie dieses Feld unausgefüllt, um auf den eingebauten Explore-Dienst zurückzugreifen.",
"Update interval" : "Aktualisierungsintervall", "Update interval" : "Aktualisierungsintervall",
"Interval in seconds in which the feeds will be updated." : "Intervall in Sekunden, in dem die Feeds aktualisiert werden.", "Interval in seconds in which the feeds will be updated." : "Intervall in Sekunden, in dem die Feeds aktualisiert werden.",
"Successfully updated news configuration" : "Die News-Einstellungen wurde aktualisiert", "Successfully updated news configuration" : "Die News-Einstellungen wurde erfolgreich aktualisiert",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden", "Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden",
"Download" : "Herunterladen", "Download" : "Herunterladen",
"Close" : "Schließen", "Close" : "Schließen",
@ -98,7 +96,7 @@
"Mark read" : "Als gelesen markieren", "Mark read" : "Als gelesen markieren",
"Unpin from top" : "Fixierung aufheben", "Unpin from top" : "Fixierung aufheben",
"Pin to top" : "Oben fixieren", "Pin to top" : "Oben fixieren",
"Newest first" : "Neue zuerst", "Newest first" : "Neueste zuerst",
"Oldest first" : "Älteste zuerst", "Oldest first" : "Älteste zuerst",
"Default order" : "Standard-Sortierung", "Default order" : "Standard-Sortierung",
"Enable full text" : "Volltext aktivieren", "Enable full text" : "Volltext aktivieren",

View File

@ -11,6 +11,8 @@ OC.L10N.register(
"Shared with me" : "Διαμοιρασμένα με εμένα", "Shared with me" : "Διαμοιρασμένα με εμένα",
"An RSS/Atom feed reader" : "Τροφοδότης ροής RSS/Atom", "An RSS/Atom feed reader" : "Τροφοδότης ροής RSS/Atom",
"Use system cron for updates" : "Χρήση του cron του συστήματος για ενημερώσεις", "Use system cron for updates" : "Χρήση του cron του συστήματος για ενημερώσεις",
"Purge interval" : "Διάστημα καθαρισμού",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Η ελάχιστη διάρκεια σε δευτερόλεπτα μετά τη διαγραφή ροών και φακέλων, όπου θα αφαιρούνται από τη βάση δεδομένων; Οι τιμές κάτω των 60 δευτερολέπτων θα αγνοούνται.",
"Maximum read count per feed" : "Ο μέγιστος αριθμός διαβασμένων ανά ροή", "Maximum read count per feed" : "Ο μέγιστος αριθμός διαβασμένων ανά ροή",
"Maximum redirects" : "Μέγιστος αριθμός ανακατευθύνσεων", "Maximum redirects" : "Μέγιστος αριθμός ανακατευθύνσεων",
"How many redirects the feed fetcher should follow." : "Πόσες ανακατευθύνσεις θα μπορεί να ακολουθεί η υπηρεσία ροών.", "How many redirects the feed fetcher should follow." : "Πόσες ανακατευθύνσεις θα μπορεί να ακολουθεί η υπηρεσία ροών.",
@ -35,7 +37,6 @@ OC.L10N.register(
"No users found" : "Δεν βρέθηκαν χρήστες", "No users found" : "Δεν βρέθηκαν χρήστες",
"by" : "από", "by" : "από",
"from" : "από", "from" : "από",
"shared by" : "σε κοινή χρήση από",
"Play audio" : "Αναπαραγωγή ήχου", "Play audio" : "Αναπαραγωγή ήχου",
"Download audio" : "Λήψη ήχου", "Download audio" : "Λήψη ήχου",
"Download video" : "Κατεβάστε το βίντεο", "Download video" : "Κατεβάστε το βίντεο",

View File

@ -9,6 +9,8 @@
"Shared with me" : "Διαμοιρασμένα με εμένα", "Shared with me" : "Διαμοιρασμένα με εμένα",
"An RSS/Atom feed reader" : "Τροφοδότης ροής RSS/Atom", "An RSS/Atom feed reader" : "Τροφοδότης ροής RSS/Atom",
"Use system cron for updates" : "Χρήση του cron του συστήματος για ενημερώσεις", "Use system cron for updates" : "Χρήση του cron του συστήματος για ενημερώσεις",
"Purge interval" : "Διάστημα καθαρισμού",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Η ελάχιστη διάρκεια σε δευτερόλεπτα μετά τη διαγραφή ροών και φακέλων, όπου θα αφαιρούνται από τη βάση δεδομένων; Οι τιμές κάτω των 60 δευτερολέπτων θα αγνοούνται.",
"Maximum read count per feed" : "Ο μέγιστος αριθμός διαβασμένων ανά ροή", "Maximum read count per feed" : "Ο μέγιστος αριθμός διαβασμένων ανά ροή",
"Maximum redirects" : "Μέγιστος αριθμός ανακατευθύνσεων", "Maximum redirects" : "Μέγιστος αριθμός ανακατευθύνσεων",
"How many redirects the feed fetcher should follow." : "Πόσες ανακατευθύνσεις θα μπορεί να ακολουθεί η υπηρεσία ροών.", "How many redirects the feed fetcher should follow." : "Πόσες ανακατευθύνσεις θα μπορεί να ακολουθεί η υπηρεσία ροών.",
@ -33,7 +35,6 @@
"No users found" : "Δεν βρέθηκαν χρήστες", "No users found" : "Δεν βρέθηκαν χρήστες",
"by" : "από", "by" : "από",
"from" : "από", "from" : "από",
"shared by" : "σε κοινή χρήση από",
"Play audio" : "Αναπαραγωγή ήχου", "Play audio" : "Αναπαραγωγή ήχου",
"Download audio" : "Λήψη ήχου", "Download audio" : "Λήψη ήχου",
"Download video" : "Κατεβάστε το βίντεο", "Download video" : "Κατεβάστε το βίντεο",

View File

@ -3,37 +3,21 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Request failed, network connection unavailable!", "Request failed, network connection unavailable!" : "Request failed, network connection unavailable!",
"Request unauthorized. Are you logged in?" : "Request unauthorised. Are you logged in?", "Request unauthorized. Are you logged in?" : "Request unauthorised. Are you logged in?",
"Request forbidden. Are you an administrator?" : "Request forbidden. Are you an administrator?",
"Token expired or app not enabled! Reload the page!" : "Token expired or app not enabled! Reload the page!", "Token expired or app not enabled! Reload the page!" : "Token expired or app not enabled! Reload the page!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Internal server error! Please check your data/nextcloud.log file for additional information!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Internal server error! Please check your data/nextcloud.log file for additional information!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Request failed, Nextcloud is in currently in maintenance mode!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Request failed, Nextcloud is in currently in maintenance mode!",
"News feeds" : "News feeds",
"Unread articles" : "Unread articles", "Unread articles" : "Unread articles",
"News" : "News", "News" : "News",
"News folders" : "News folders",
"News articles" : "News articles",
"Shared with me" : "Shared with me", "Shared with me" : "Shared with me",
"An RSS/Atom feed reader" : "An RSS/Atom feed reader", "An RSS/Atom feed reader" : "An RSS/Atom feed reader",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Use system cron for updates", "Use system cron for updates" : "Use system cron for updates",
"Disable this if you use a custom updater." : "Disable this if you use a custom updater.", "Purge interval" : "Purge interval",
"Maximum read count per feed" : "Maximum read count per feed", "Maximum read count per feed" : "Maximum read count per feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off.",
"Delete unread articles automatically" : "Delete unread articles automatically",
"Enable this if you also want to delete unread articles." : "Enable this if you also want to delete unread articles.",
"Maximum redirects" : "Maximum redirects", "Maximum redirects" : "Maximum redirects",
"How many redirects the feed fetcher should follow." : "How many redirects the feed fetcher should follow.",
"Feed fetcher timeout" : "Feed fetcher timeout", "Feed fetcher timeout" : "Feed fetcher timeout",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted.",
"Explore Service URL" : "Explore Service URL", "Explore Service URL" : "Explore Service URL",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty.",
"Update interval" : "Update interval",
"Interval in seconds in which the feeds will be updated." : "Interval in seconds in which the feeds will be updated.",
"Successfully updated news configuration" : "Successfully updated news configuration",
"Unable to update news config" : "Unable to update news config",
"Download" : "Download", "Download" : "Download",
"Close" : "Close", "Close" : "Close",
"Subscribe to" : "Subscribe to",
"No articles available" : "No articles available", "No articles available" : "No articles available",
"No unread articles available" : "No unread articles available", "No unread articles available" : "No unread articles available",
"Open website" : "Open website", "Open website" : "Open website",
@ -42,16 +26,9 @@ OC.L10N.register(
"Keep article unread" : "Keep article unread", "Keep article unread" : "Keep article unread",
"Remove keep article unread" : "Remove keep article unread", "Remove keep article unread" : "Remove keep article unread",
"Share" : "Share", "Share" : "Share",
"Share with users" : "Share with users",
"Username" : "Username", "Username" : "Username",
"No users found" : "No users found",
"Error while searching for users" : "Error while searching for users",
"Share on social media" : "Share on social media",
"I wanted you to see this article" : "I wanted you to see this article",
"Check out this article" : "Check out this article",
"by" : "by", "by" : "by",
"from" : "from", "from" : "from",
"shared by" : "shared by",
"Play audio" : "Play audio", "Play audio" : "Play audio",
"Download audio" : "Download audio", "Download audio" : "Download audio",
"Download video" : "Download video", "Download video" : "Download video",
@ -88,7 +65,6 @@ OC.L10N.register(
"Credentials" : "Credentials", "Credentials" : "Credentials",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!",
"Password" : "Password", "Password" : "Password",
"Auto discover Feed" : "Auto discover Feed",
"New Folder" : "New Folder", "New Folder" : "New Folder",
"Create" : "Create", "Create" : "Create",
"Explore" : "Explore", "Explore" : "Explore",

View File

@ -1,37 +1,21 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Request failed, network connection unavailable!", "Request failed, network connection unavailable!" : "Request failed, network connection unavailable!",
"Request unauthorized. Are you logged in?" : "Request unauthorised. Are you logged in?", "Request unauthorized. Are you logged in?" : "Request unauthorised. Are you logged in?",
"Request forbidden. Are you an administrator?" : "Request forbidden. Are you an administrator?",
"Token expired or app not enabled! Reload the page!" : "Token expired or app not enabled! Reload the page!", "Token expired or app not enabled! Reload the page!" : "Token expired or app not enabled! Reload the page!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Internal server error! Please check your data/nextcloud.log file for additional information!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Internal server error! Please check your data/nextcloud.log file for additional information!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Request failed, Nextcloud is in currently in maintenance mode!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Request failed, Nextcloud is in currently in maintenance mode!",
"News feeds" : "News feeds",
"Unread articles" : "Unread articles", "Unread articles" : "Unread articles",
"News" : "News", "News" : "News",
"News folders" : "News folders",
"News articles" : "News articles",
"Shared with me" : "Shared with me", "Shared with me" : "Shared with me",
"An RSS/Atom feed reader" : "An RSS/Atom feed reader", "An RSS/Atom feed reader" : "An RSS/Atom feed reader",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Use system cron for updates", "Use system cron for updates" : "Use system cron for updates",
"Disable this if you use a custom updater." : "Disable this if you use a custom updater.", "Purge interval" : "Purge interval",
"Maximum read count per feed" : "Maximum read count per feed", "Maximum read count per feed" : "Maximum read count per feed",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off.",
"Delete unread articles automatically" : "Delete unread articles automatically",
"Enable this if you also want to delete unread articles." : "Enable this if you also want to delete unread articles.",
"Maximum redirects" : "Maximum redirects", "Maximum redirects" : "Maximum redirects",
"How many redirects the feed fetcher should follow." : "How many redirects the feed fetcher should follow.",
"Feed fetcher timeout" : "Feed fetcher timeout", "Feed fetcher timeout" : "Feed fetcher timeout",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted.",
"Explore Service URL" : "Explore Service URL", "Explore Service URL" : "Explore Service URL",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty.",
"Update interval" : "Update interval",
"Interval in seconds in which the feeds will be updated." : "Interval in seconds in which the feeds will be updated.",
"Successfully updated news configuration" : "Successfully updated news configuration",
"Unable to update news config" : "Unable to update news config",
"Download" : "Download", "Download" : "Download",
"Close" : "Close", "Close" : "Close",
"Subscribe to" : "Subscribe to",
"No articles available" : "No articles available", "No articles available" : "No articles available",
"No unread articles available" : "No unread articles available", "No unread articles available" : "No unread articles available",
"Open website" : "Open website", "Open website" : "Open website",
@ -40,16 +24,9 @@
"Keep article unread" : "Keep article unread", "Keep article unread" : "Keep article unread",
"Remove keep article unread" : "Remove keep article unread", "Remove keep article unread" : "Remove keep article unread",
"Share" : "Share", "Share" : "Share",
"Share with users" : "Share with users",
"Username" : "Username", "Username" : "Username",
"No users found" : "No users found",
"Error while searching for users" : "Error while searching for users",
"Share on social media" : "Share on social media",
"I wanted you to see this article" : "I wanted you to see this article",
"Check out this article" : "Check out this article",
"by" : "by", "by" : "by",
"from" : "from", "from" : "from",
"shared by" : "shared by",
"Play audio" : "Play audio", "Play audio" : "Play audio",
"Download audio" : "Download audio", "Download audio" : "Download audio",
"Download video" : "Download video", "Download video" : "Download video",
@ -86,7 +63,6 @@
"Credentials" : "Credentials", "Credentials" : "Credentials",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!",
"Password" : "Password", "Password" : "Password",
"Auto discover Feed" : "Auto discover Feed",
"New Folder" : "New Folder", "New Folder" : "New Folder",
"Create" : "Create", "Create" : "Create",
"Explore" : "Explore", "Explore" : "Explore",

View File

@ -3,7 +3,6 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "La petición ha fallado, ¡la conexión de red no está disponible!", "Request failed, network connection unavailable!" : "La petición ha fallado, ¡la conexión de red no está disponible!",
"Request unauthorized. Are you logged in?" : "Petición no autorizada, ¿has iniciado sesión?", "Request unauthorized. Are you logged in?" : "Petición no autorizada, ¿has iniciado sesión?",
"Request forbidden. Are you an administrator?" : "Petición prohibida. ¿Eres el administrador?",
"Token expired or app not enabled! Reload the page!" : "¡Sesión caducada o aplicación no habilitada! ¡Vuelve a cargar la página!", "Token expired or app not enabled! Reload the page!" : "¡Sesión caducada o aplicación no habilitada! ¡Vuelve a cargar la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Error interno del servidor! ¡Por favor, comprueba el archivo data/nextcloud.log para mas información!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Error interno del servidor! ¡Por favor, comprueba el archivo data/nextcloud.log para mas información!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Petición fallida! Nexcloud está actualmente en modo mantenimiento.", "Request failed, Nextcloud is in currently in maintenance mode!" : "¡Petición fallida! Nexcloud está actualmente en modo mantenimiento.",
@ -11,16 +10,14 @@ OC.L10N.register(
"Unread articles" : "Artículos sin leer", "Unread articles" : "Artículos sin leer",
"News" : "Noticias", "News" : "Noticias",
"News folders" : "Carpetas nuevas", "News folders" : "Carpetas nuevas",
"News articles" : "Artículos de noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom", "An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 App de lectura de fuentes de noticias RSS/Atom para Nextcloud\n\n- 📲 Sincronice sus fuentes de noticias con múltiples [clientes](https://nextcloud.github.io/news/clients/) móviles o de escritorio.\n- 🔄 Actualizaciones automáticas de sus fuentes de noticias.\n- 🆓 Gratis y de código abierto bajo AGPLv3, sin anuncios o funciones premium.\n\n**Se requiere el Cron del sistema para que esta aplicación funcione**\n\nLos requisitos se pueden encontrar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n\nLa lista de cambios se encuentra [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrear un [reporte de bug](https://github.com/nextcloud/news/issues/new/choose)\nCrear una [solicitud de función](https://github.com/nextcloud/news/discussions/new)\n\nInformar de un [problema en fuente](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 App de lectura de fuentes de noticias RSS/Atom para Nextcloud\n\n- 📲 Sincronice sus fuentes de noticias con múltiples [clientes](https://nextcloud.github.io/news/clients/) móviles o de escritorio.\n- 🔄 Actualizaciones automáticas de sus fuentes de noticias.\n- 🆓 Gratis y de código abierto bajo AGPLv3, sin anuncios o funciones premium.\n\n**Se requiere el Cron del sistema para que esta aplicación funcione**\n\nLos requisitos se pueden encontrar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n\nLa lista de cambios se encuentra [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrear un [reporte de bug](https://github.com/nextcloud/news/issues/new/choose)\nCrear una [solicitud de función](https://github.com/nextcloud/news/discussions/new)\n\nInformar de un [problema en fuente](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Disable this if you use a custom updater." : "Desactiva esto si ejecutas un actualizador personalizado.", "Disable this if you use a custom updater." : "Desactiva esto si ejecutas un actualizador personalizado.",
"Purge interval" : "Intervalo de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Cantidad de segundos mínima antes de que las fuentes y carpetas borradas se eliminen de la base de datos; los valores por debajo de 60 segundos son ignorados.",
"Maximum read count per feed" : "Máximo número de lecturas por fuente", "Maximum read count per feed" : "Máximo número de lecturas por fuente",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Define la cantidad de artículos máxima que se pueden leer por fuente que no se borrarán mediante el trabajo de limpieza, si reaparecen artículos viejos después de que los hayas leído, aumenta este valor, valores negativos como -1 desactivarán esta característica.",
"Delete unread articles automatically" : "Borrar artículos no leídos de forma automática",
"Enable this if you also want to delete unread articles." : "Habilite esta opción si además quiere borrar los artículos no leídos.",
"Maximum redirects" : "Máximo de redirecciones", "Maximum redirects" : "Máximo de redirecciones",
"How many redirects the feed fetcher should follow." : "Cuántas redirecciones debería seguir el capturador de fuentes.", "How many redirects the feed fetcher should follow." : "Cuántas redirecciones debería seguir el capturador de fuentes.",
"Feed fetcher timeout" : "Tiempo de espera agotado para la descarga de la fuente", "Feed fetcher timeout" : "Tiempo de espera agotado para la descarga de la fuente",
@ -29,8 +26,6 @@ OC.L10N.register(
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si se da, esta URL del servicio se usará para mostrar las fuentes en la sección de explorar fuentes. Para volver al servicio de exploración incorporado, deja este campo vacío.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si se da, esta URL del servicio se usará para mostrar las fuentes en la sección de explorar fuentes. Para volver al servicio de exploración incorporado, deja este campo vacío.",
"Update interval" : "Intervalo de actualización", "Update interval" : "Intervalo de actualización",
"Interval in seconds in which the feeds will be updated." : "Intervalo en segundos en el que se actualizarán las fuentes.", "Interval in seconds in which the feeds will be updated." : "Intervalo en segundos en el que se actualizarán las fuentes.",
"Successfully updated news configuration" : "Se actualizó la configuración de noticias de forma exitosa",
"Unable to update news config" : "No se puede actualizar la configuración de las noticias",
"Download" : "Descargar", "Download" : "Descargar",
"Close" : "Cerrar", "Close" : "Cerrar",
"Subscribe to" : "Subscribirse a", "Subscribe to" : "Subscribirse a",

View File

@ -1,7 +1,6 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "La petición ha fallado, ¡la conexión de red no está disponible!", "Request failed, network connection unavailable!" : "La petición ha fallado, ¡la conexión de red no está disponible!",
"Request unauthorized. Are you logged in?" : "Petición no autorizada, ¿has iniciado sesión?", "Request unauthorized. Are you logged in?" : "Petición no autorizada, ¿has iniciado sesión?",
"Request forbidden. Are you an administrator?" : "Petición prohibida. ¿Eres el administrador?",
"Token expired or app not enabled! Reload the page!" : "¡Sesión caducada o aplicación no habilitada! ¡Vuelve a cargar la página!", "Token expired or app not enabled! Reload the page!" : "¡Sesión caducada o aplicación no habilitada! ¡Vuelve a cargar la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Error interno del servidor! ¡Por favor, comprueba el archivo data/nextcloud.log para mas información!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Error interno del servidor! ¡Por favor, comprueba el archivo data/nextcloud.log para mas información!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Petición fallida! Nexcloud está actualmente en modo mantenimiento.", "Request failed, Nextcloud is in currently in maintenance mode!" : "¡Petición fallida! Nexcloud está actualmente en modo mantenimiento.",
@ -9,16 +8,14 @@
"Unread articles" : "Artículos sin leer", "Unread articles" : "Artículos sin leer",
"News" : "Noticias", "News" : "Noticias",
"News folders" : "Carpetas nuevas", "News folders" : "Carpetas nuevas",
"News articles" : "Artículos de noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom", "An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 App de lectura de fuentes de noticias RSS/Atom para Nextcloud\n\n- 📲 Sincronice sus fuentes de noticias con múltiples [clientes](https://nextcloud.github.io/news/clients/) móviles o de escritorio.\n- 🔄 Actualizaciones automáticas de sus fuentes de noticias.\n- 🆓 Gratis y de código abierto bajo AGPLv3, sin anuncios o funciones premium.\n\n**Se requiere el Cron del sistema para que esta aplicación funcione**\n\nLos requisitos se pueden encontrar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n\nLa lista de cambios se encuentra [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrear un [reporte de bug](https://github.com/nextcloud/news/issues/new/choose)\nCrear una [solicitud de función](https://github.com/nextcloud/news/discussions/new)\n\nInformar de un [problema en fuente](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 App de lectura de fuentes de noticias RSS/Atom para Nextcloud\n\n- 📲 Sincronice sus fuentes de noticias con múltiples [clientes](https://nextcloud.github.io/news/clients/) móviles o de escritorio.\n- 🔄 Actualizaciones automáticas de sus fuentes de noticias.\n- 🆓 Gratis y de código abierto bajo AGPLv3, sin anuncios o funciones premium.\n\n**Se requiere el Cron del sistema para que esta aplicación funcione**\n\nLos requisitos se pueden encontrar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n\nLa lista de cambios se encuentra [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrear un [reporte de bug](https://github.com/nextcloud/news/issues/new/choose)\nCrear una [solicitud de función](https://github.com/nextcloud/news/discussions/new)\n\nInformar de un [problema en fuente](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Disable this if you use a custom updater." : "Desactiva esto si ejecutas un actualizador personalizado.", "Disable this if you use a custom updater." : "Desactiva esto si ejecutas un actualizador personalizado.",
"Purge interval" : "Intervalo de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Cantidad de segundos mínima antes de que las fuentes y carpetas borradas se eliminen de la base de datos; los valores por debajo de 60 segundos son ignorados.",
"Maximum read count per feed" : "Máximo número de lecturas por fuente", "Maximum read count per feed" : "Máximo número de lecturas por fuente",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Define la cantidad de artículos máxima que se pueden leer por fuente que no se borrarán mediante el trabajo de limpieza, si reaparecen artículos viejos después de que los hayas leído, aumenta este valor, valores negativos como -1 desactivarán esta característica.",
"Delete unread articles automatically" : "Borrar artículos no leídos de forma automática",
"Enable this if you also want to delete unread articles." : "Habilite esta opción si además quiere borrar los artículos no leídos.",
"Maximum redirects" : "Máximo de redirecciones", "Maximum redirects" : "Máximo de redirecciones",
"How many redirects the feed fetcher should follow." : "Cuántas redirecciones debería seguir el capturador de fuentes.", "How many redirects the feed fetcher should follow." : "Cuántas redirecciones debería seguir el capturador de fuentes.",
"Feed fetcher timeout" : "Tiempo de espera agotado para la descarga de la fuente", "Feed fetcher timeout" : "Tiempo de espera agotado para la descarga de la fuente",
@ -27,8 +24,6 @@
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si se da, esta URL del servicio se usará para mostrar las fuentes en la sección de explorar fuentes. Para volver al servicio de exploración incorporado, deja este campo vacío.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si se da, esta URL del servicio se usará para mostrar las fuentes en la sección de explorar fuentes. Para volver al servicio de exploración incorporado, deja este campo vacío.",
"Update interval" : "Intervalo de actualización", "Update interval" : "Intervalo de actualización",
"Interval in seconds in which the feeds will be updated." : "Intervalo en segundos en el que se actualizarán las fuentes.", "Interval in seconds in which the feeds will be updated." : "Intervalo en segundos en el que se actualizarán las fuentes.",
"Successfully updated news configuration" : "Se actualizó la configuración de noticias de forma exitosa",
"Unable to update news config" : "No se puede actualizar la configuración de las noticias",
"Download" : "Descargar", "Download" : "Descargar",
"Close" : "Cerrar", "Close" : "Cerrar",
"Subscribe to" : "Subscribirse a", "Subscribe to" : "Subscribirse a",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -11,6 +11,7 @@ OC.L10N.register(
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom", "An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom",
"Use system cron for updates" : "Use el sistema cron para las actualizaciones", "Use system cron for updates" : "Use el sistema cron para las actualizaciones",
"Purge interval" : "Purgar el intervalo",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de espera máximo para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de espera máximo para el buscador de fuentes",

View File

@ -9,6 +9,7 @@
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom", "An RSS/Atom feed reader" : "Un lector de feeds RSS/Atom",
"Use system cron for updates" : "Use el sistema cron para las actualizaciones", "Use system cron for updates" : "Use el sistema cron para las actualizaciones",
"Purge interval" : "Purgar el intervalo",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de espera máximo para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de espera máximo para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -11,6 +11,7 @@ OC.L10N.register(
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de fuentes RSS/Atom", "An RSS/Atom feed reader" : "Un lector de fuentes RSS/Atom",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -9,6 +9,7 @@
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de fuentes RSS/Atom", "An RSS/Atom feed reader" : "Un lector de fuentes RSS/Atom",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -8,6 +8,7 @@
"News" : "Noticias", "News" : "Noticias",
"Shared with me" : "Compartido conmigo", "Shared with me" : "Compartido conmigo",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones", "Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Purge interval" : "Intervalo de purga",
"Maximum read count per feed" : "Conteo máximo de lecturas por fuente", "Maximum read count per feed" : "Conteo máximo de lecturas por fuente",
"Maximum redirects" : "Redirecciones máximas", "Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes", "Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",

View File

@ -3,17 +3,12 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Päring ei õnnestunud, võrguühendus puudub!", "Request failed, network connection unavailable!" : "Päring ei õnnestunud, võrguühendus puudub!",
"Request unauthorized. Are you logged in?" : "Päring pole lubatud. Oled sa sisse loginud?", "Request unauthorized. Are you logged in?" : "Päring pole lubatud. Oled sa sisse loginud?",
"Request forbidden. Are you an administrator?" : "Päring on keelatud. Kas oled administraator?",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Päring ebaõnnestus, Nextcloud on hetkel hooldusrežiimis.", "Request failed, Nextcloud is in currently in maintenance mode!" : "Päring ebaõnnestus, Nextcloud on hetkel hooldusrežiimis.",
"News feeds" : "Uudisvood",
"Unread articles" : "Lugemata artiklid", "Unread articles" : "Lugemata artiklid",
"News" : "Uudised", "News" : "News",
"News folders" : "Uudiste kataloogid",
"News articles" : "Uudiste artiklid",
"Shared with me" : "Jagatud minuga",
"Use system cron for updates" : "Kasuta süsteemi croni uuendusteks", "Use system cron for updates" : "Kasuta süsteemi croni uuendusteks",
"Purge interval" : "Puhastuse intervall",
"Maximum read count per feed" : "Maksimaalne lugemiste arv voo kohta", "Maximum read count per feed" : "Maksimaalne lugemiste arv voo kohta",
"Delete unread articles automatically" : "Kustuta automaatselt lugemata artiklid",
"Maximum redirects" : "Maksimaalsed ümbersuunamised", "Maximum redirects" : "Maksimaalsed ümbersuunamised",
"Feed fetcher timeout" : "Voo ühenduse aegumine", "Feed fetcher timeout" : "Voo ühenduse aegumine",
"Explore Service URL" : "Sirvi teenuse URL-i", "Explore Service URL" : "Sirvi teenuse URL-i",
@ -27,10 +22,7 @@ OC.L10N.register(
"Keep article unread" : "Hoia kui lugemata", "Keep article unread" : "Hoia kui lugemata",
"Remove keep article unread" : "Eemalda märgistus 'Hoia kui lugemata'", "Remove keep article unread" : "Eemalda märgistus 'Hoia kui lugemata'",
"Share" : "Jaga", "Share" : "Jaga",
"Share with users" : "Jaga kasutajatega",
"Username" : "Kasutajanimi", "Username" : "Kasutajanimi",
"No users found" : "Kasutajaid ei leitud",
"Share on social media" : "Jaga sotsiaalmeedias",
"by" : "lisas", "by" : "lisas",
"from" : "kohast", "from" : "kohast",
"Play audio" : "Esita heli", "Play audio" : "Esita heli",
@ -39,7 +31,7 @@ OC.L10N.register(
"Keyboard shortcut" : "Klaviatuuri otsetee", "Keyboard shortcut" : "Klaviatuuri otsetee",
"Description" : "Kirjeldus", "Description" : "Kirjeldus",
"right" : "paremal", "right" : "paremal",
"Jump to next article" : "Hüppa järgmisele artiklile", "Jump to next article" : "Hüppar järgmisele artiklile",
"left" : "vasakul", "left" : "vasakul",
"Jump to previous article" : "Hüppa eelmisele artiklile", "Jump to previous article" : "Hüppa eelmisele artiklile",
"Toggle star article" : "Lülita artikli tähtekest", "Toggle star article" : "Lülita artikli tähtekest",

View File

@ -1,17 +1,12 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Päring ei õnnestunud, võrguühendus puudub!", "Request failed, network connection unavailable!" : "Päring ei õnnestunud, võrguühendus puudub!",
"Request unauthorized. Are you logged in?" : "Päring pole lubatud. Oled sa sisse loginud?", "Request unauthorized. Are you logged in?" : "Päring pole lubatud. Oled sa sisse loginud?",
"Request forbidden. Are you an administrator?" : "Päring on keelatud. Kas oled administraator?",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Päring ebaõnnestus, Nextcloud on hetkel hooldusrežiimis.", "Request failed, Nextcloud is in currently in maintenance mode!" : "Päring ebaõnnestus, Nextcloud on hetkel hooldusrežiimis.",
"News feeds" : "Uudisvood",
"Unread articles" : "Lugemata artiklid", "Unread articles" : "Lugemata artiklid",
"News" : "Uudised", "News" : "News",
"News folders" : "Uudiste kataloogid",
"News articles" : "Uudiste artiklid",
"Shared with me" : "Jagatud minuga",
"Use system cron for updates" : "Kasuta süsteemi croni uuendusteks", "Use system cron for updates" : "Kasuta süsteemi croni uuendusteks",
"Purge interval" : "Puhastuse intervall",
"Maximum read count per feed" : "Maksimaalne lugemiste arv voo kohta", "Maximum read count per feed" : "Maksimaalne lugemiste arv voo kohta",
"Delete unread articles automatically" : "Kustuta automaatselt lugemata artiklid",
"Maximum redirects" : "Maksimaalsed ümbersuunamised", "Maximum redirects" : "Maksimaalsed ümbersuunamised",
"Feed fetcher timeout" : "Voo ühenduse aegumine", "Feed fetcher timeout" : "Voo ühenduse aegumine",
"Explore Service URL" : "Sirvi teenuse URL-i", "Explore Service URL" : "Sirvi teenuse URL-i",
@ -25,10 +20,7 @@
"Keep article unread" : "Hoia kui lugemata", "Keep article unread" : "Hoia kui lugemata",
"Remove keep article unread" : "Eemalda märgistus 'Hoia kui lugemata'", "Remove keep article unread" : "Eemalda märgistus 'Hoia kui lugemata'",
"Share" : "Jaga", "Share" : "Jaga",
"Share with users" : "Jaga kasutajatega",
"Username" : "Kasutajanimi", "Username" : "Kasutajanimi",
"No users found" : "Kasutajaid ei leitud",
"Share on social media" : "Jaga sotsiaalmeedias",
"by" : "lisas", "by" : "lisas",
"from" : "kohast", "from" : "kohast",
"Play audio" : "Esita heli", "Play audio" : "Esita heli",
@ -37,7 +29,7 @@
"Keyboard shortcut" : "Klaviatuuri otsetee", "Keyboard shortcut" : "Klaviatuuri otsetee",
"Description" : "Kirjeldus", "Description" : "Kirjeldus",
"right" : "paremal", "right" : "paremal",
"Jump to next article" : "Hüppa järgmisele artiklile", "Jump to next article" : "Hüppar järgmisele artiklile",
"left" : "vasakul", "left" : "vasakul",
"Jump to previous article" : "Hüppa eelmisele artiklile", "Jump to previous article" : "Hüppa eelmisele artiklile",
"Toggle star article" : "Lülita artikli tähtekest", "Toggle star article" : "Lülita artikli tähtekest",

View File

@ -3,7 +3,6 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Eskaerak huts egin du, sareko konexioa ez dago eskuragarri!", "Request failed, network connection unavailable!" : "Eskaerak huts egin du, sareko konexioa ez dago eskuragarri!",
"Request unauthorized. Are you logged in?" : "Baimendu gabeko eskaera. Saioa hasi duzu?", "Request unauthorized. Are you logged in?" : "Baimendu gabeko eskaera. Saioa hasi duzu?",
"Request forbidden. Are you an administrator?" : "Debekatutako eskaera. Administratzailea al zara?",
"Token expired or app not enabled! Reload the page!" : "Tokena iraungi da edo aplikazioa ez dago gaituta! Kargatu berriz orria!", "Token expired or app not enabled! Reload the page!" : "Tokena iraungi da edo aplikazioa ez dago gaituta! Kargatu berriz orria!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Zerbitzariaren barneko errorea! Begiratu data/nextcloud.log fitxategia informazio gehiagorako!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Zerbitzariaren barneko errorea! Begiratu data/nextcloud.log fitxategia informazio gehiagorako!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Eskaerak huts egin du, Nextcloud mantentze moduan dago une honetan!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Eskaerak huts egin du, Nextcloud mantentze moduan dago une honetan!",
@ -16,10 +15,9 @@ OC.L10N.register(
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 RSS/Atom Feed irakurgailu aplikazioa Nextcloud-entzat\n\n- 📲Sinkronizatu jarioak mugikorreko edo mahaigaineko [bezero](https://nextcloud.github.io/news/clients/) anitzekin \n- 🔄 Zure albisteen jarioen eguneratze automatikoak\n- 🆓 Kode irekia eta doakoa AGPLv3-pean, iragarkirik edo premium funtziorik gabe\n\n** Une honetan Cron beharrezkoa da aplikazio honek funtziona dezan **\n\nBaldintzak [hemen](https://nextcloud.github.io/news/install/#dependencies) aurki daitezke\n\nAldaketa-erregistroa eskuragarri dago [hemen](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSortu [akatsen txostena](https://github.com/nextcloud/news/issues/new/choose)\n\nSortu [ezaugarri eskaera](https://github.com/nextcloud/news/discussions/new)\n\nEman [jarioaren arazo](https://github.com/nextcloud/news/discussions/new)-en berri", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 RSS/Atom Feed irakurgailu aplikazioa Nextcloud-entzat\n\n- 📲Sinkronizatu jarioak mugikorreko edo mahaigaineko [bezero](https://nextcloud.github.io/news/clients/) anitzekin \n- 🔄 Zure albisteen jarioen eguneratze automatikoak\n- 🆓 Kode irekia eta doakoa AGPLv3-pean, iragarkirik edo premium funtziorik gabe\n\n** Une honetan Cron beharrezkoa da aplikazio honek funtziona dezan **\n\nBaldintzak [hemen](https://nextcloud.github.io/news/install/#dependencies) aurki daitezke\n\nAldaketa-erregistroa eskuragarri dago [hemen](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSortu [akatsen txostena](https://github.com/nextcloud/news/issues/new/choose)\n\nSortu [ezaugarri eskaera](https://github.com/nextcloud/news/discussions/new)\n\nEman [jarioaren arazo](https://github.com/nextcloud/news/discussions/new)-en berri",
"Use system cron for updates" : "Erabili sistemaren cron-a eguneraketak egiteko", "Use system cron for updates" : "Erabili sistemaren cron-a eguneraketak egiteko",
"Disable this if you use a custom updater." : "Desgaitu hau eguneratze pertsonalizatua erabiltzen baduzu.", "Disable this if you use a custom updater." : "Desgaitu hau eguneratze pertsonalizatua erabiltzen baduzu.",
"Purge interval" : "Garbiketa bitartea",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Ezabatutako jario eta karpetak datu-basetik kendu aurretik igaro beharreko gutxieneko denbora; 60 segundotik beherako balioei ez ikusia egiten zaie.",
"Maximum read count per feed" : "Gehienezko irakurketa kopurua jarioko", "Maximum read count per feed" : "Gehienezko irakurketa kopurua jarioko",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Garbiketa lanak jario bakoitzean ezabatuko ez dituen artikuluen gehienezko kopurua zehazten du; artikulu zaharrak irakurri ondoren berriz agertzen hasten badira, handitu balio hau; -1 bezalako balio negatiboek ezaugarri hau desgaitzen dute.",
"Delete unread articles automatically" : "Ezabatu irakurri gabeko artikuluak automatikoki",
"Enable this if you also want to delete unread articles." : "Gaitu irakurri gabeko artikuluak ere ezabatu nahi badituzu.",
"Maximum redirects" : "Gehienezko birbideratzeak", "Maximum redirects" : "Gehienezko birbideratzeak",
"How many redirects the feed fetcher should follow." : "Jarioak eskuratzean zenbat birbideratze jarraituko diren.", "How many redirects the feed fetcher should follow." : "Jarioak eskuratzean zenbat birbideratze jarraituko diren.",
"Feed fetcher timeout" : "Jarioak hartzeko denbora-muga", "Feed fetcher timeout" : "Jarioak hartzeko denbora-muga",
@ -28,8 +26,6 @@ OC.L10N.register(
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Emanez gero, zerbitzu honen URLa erabiliko da 'Arakatu jarioak' atalean bistaratutako jarioak eskuratzeko. Berriz ere jario lehenetsiak bistaratzeko, utzi eremu hau hutsik.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Emanez gero, zerbitzu honen URLa erabiliko da 'Arakatu jarioak' atalean bistaratutako jarioak eskuratzeko. Berriz ere jario lehenetsiak bistaratzeko, utzi eremu hau hutsik.",
"Update interval" : "Eguneraketa tartea", "Update interval" : "Eguneraketa tartea",
"Interval in seconds in which the feeds will be updated." : "Jarioak zenbat segundoko tartean eguneratuko diren.", "Interval in seconds in which the feeds will be updated." : "Jarioak zenbat segundoko tartean eguneratuko diren.",
"Successfully updated news configuration" : "Berrien konfigurazioa ondo eguneratu da",
"Unable to update news config" : "Ezin izan da berrien konfigurazioa eguneratu.",
"Download" : "Deskargatu", "Download" : "Deskargatu",
"Close" : "Itxi", "Close" : "Itxi",
"Subscribe to" : "Harpidetu", "Subscribe to" : "Harpidetu",

View File

@ -1,7 +1,6 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Eskaerak huts egin du, sareko konexioa ez dago eskuragarri!", "Request failed, network connection unavailable!" : "Eskaerak huts egin du, sareko konexioa ez dago eskuragarri!",
"Request unauthorized. Are you logged in?" : "Baimendu gabeko eskaera. Saioa hasi duzu?", "Request unauthorized. Are you logged in?" : "Baimendu gabeko eskaera. Saioa hasi duzu?",
"Request forbidden. Are you an administrator?" : "Debekatutako eskaera. Administratzailea al zara?",
"Token expired or app not enabled! Reload the page!" : "Tokena iraungi da edo aplikazioa ez dago gaituta! Kargatu berriz orria!", "Token expired or app not enabled! Reload the page!" : "Tokena iraungi da edo aplikazioa ez dago gaituta! Kargatu berriz orria!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Zerbitzariaren barneko errorea! Begiratu data/nextcloud.log fitxategia informazio gehiagorako!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Zerbitzariaren barneko errorea! Begiratu data/nextcloud.log fitxategia informazio gehiagorako!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Eskaerak huts egin du, Nextcloud mantentze moduan dago une honetan!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Eskaerak huts egin du, Nextcloud mantentze moduan dago une honetan!",
@ -14,10 +13,9 @@
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 RSS/Atom Feed irakurgailu aplikazioa Nextcloud-entzat\n\n- 📲Sinkronizatu jarioak mugikorreko edo mahaigaineko [bezero](https://nextcloud.github.io/news/clients/) anitzekin \n- 🔄 Zure albisteen jarioen eguneratze automatikoak\n- 🆓 Kode irekia eta doakoa AGPLv3-pean, iragarkirik edo premium funtziorik gabe\n\n** Une honetan Cron beharrezkoa da aplikazio honek funtziona dezan **\n\nBaldintzak [hemen](https://nextcloud.github.io/news/install/#dependencies) aurki daitezke\n\nAldaketa-erregistroa eskuragarri dago [hemen](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSortu [akatsen txostena](https://github.com/nextcloud/news/issues/new/choose)\n\nSortu [ezaugarri eskaera](https://github.com/nextcloud/news/discussions/new)\n\nEman [jarioaren arazo](https://github.com/nextcloud/news/discussions/new)-en berri", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 RSS/Atom Feed irakurgailu aplikazioa Nextcloud-entzat\n\n- 📲Sinkronizatu jarioak mugikorreko edo mahaigaineko [bezero](https://nextcloud.github.io/news/clients/) anitzekin \n- 🔄 Zure albisteen jarioen eguneratze automatikoak\n- 🆓 Kode irekia eta doakoa AGPLv3-pean, iragarkirik edo premium funtziorik gabe\n\n** Une honetan Cron beharrezkoa da aplikazio honek funtziona dezan **\n\nBaldintzak [hemen](https://nextcloud.github.io/news/install/#dependencies) aurki daitezke\n\nAldaketa-erregistroa eskuragarri dago [hemen](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSortu [akatsen txostena](https://github.com/nextcloud/news/issues/new/choose)\n\nSortu [ezaugarri eskaera](https://github.com/nextcloud/news/discussions/new)\n\nEman [jarioaren arazo](https://github.com/nextcloud/news/discussions/new)-en berri",
"Use system cron for updates" : "Erabili sistemaren cron-a eguneraketak egiteko", "Use system cron for updates" : "Erabili sistemaren cron-a eguneraketak egiteko",
"Disable this if you use a custom updater." : "Desgaitu hau eguneratze pertsonalizatua erabiltzen baduzu.", "Disable this if you use a custom updater." : "Desgaitu hau eguneratze pertsonalizatua erabiltzen baduzu.",
"Purge interval" : "Garbiketa bitartea",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Ezabatutako jario eta karpetak datu-basetik kendu aurretik igaro beharreko gutxieneko denbora; 60 segundotik beherako balioei ez ikusia egiten zaie.",
"Maximum read count per feed" : "Gehienezko irakurketa kopurua jarioko", "Maximum read count per feed" : "Gehienezko irakurketa kopurua jarioko",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Garbiketa lanak jario bakoitzean ezabatuko ez dituen artikuluen gehienezko kopurua zehazten du; artikulu zaharrak irakurri ondoren berriz agertzen hasten badira, handitu balio hau; -1 bezalako balio negatiboek ezaugarri hau desgaitzen dute.",
"Delete unread articles automatically" : "Ezabatu irakurri gabeko artikuluak automatikoki",
"Enable this if you also want to delete unread articles." : "Gaitu irakurri gabeko artikuluak ere ezabatu nahi badituzu.",
"Maximum redirects" : "Gehienezko birbideratzeak", "Maximum redirects" : "Gehienezko birbideratzeak",
"How many redirects the feed fetcher should follow." : "Jarioak eskuratzean zenbat birbideratze jarraituko diren.", "How many redirects the feed fetcher should follow." : "Jarioak eskuratzean zenbat birbideratze jarraituko diren.",
"Feed fetcher timeout" : "Jarioak hartzeko denbora-muga", "Feed fetcher timeout" : "Jarioak hartzeko denbora-muga",
@ -26,8 +24,6 @@
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Emanez gero, zerbitzu honen URLa erabiliko da 'Arakatu jarioak' atalean bistaratutako jarioak eskuratzeko. Berriz ere jario lehenetsiak bistaratzeko, utzi eremu hau hutsik.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Emanez gero, zerbitzu honen URLa erabiliko da 'Arakatu jarioak' atalean bistaratutako jarioak eskuratzeko. Berriz ere jario lehenetsiak bistaratzeko, utzi eremu hau hutsik.",
"Update interval" : "Eguneraketa tartea", "Update interval" : "Eguneraketa tartea",
"Interval in seconds in which the feeds will be updated." : "Jarioak zenbat segundoko tartean eguneratuko diren.", "Interval in seconds in which the feeds will be updated." : "Jarioak zenbat segundoko tartean eguneratuko diren.",
"Successfully updated news configuration" : "Berrien konfigurazioa ondo eguneratu da",
"Unable to update news config" : "Ezin izan da berrien konfigurazioa eguneratu.",
"Download" : "Deskargatu", "Download" : "Deskargatu",
"Close" : "Itxi", "Close" : "Itxi",
"Subscribe to" : "Harpidetu", "Subscribe to" : "Harpidetu",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "اخبار", "News" : "اخبار",
"An RSS/Atom feed reader" : "An RSS/Atom feed reader", "An RSS/Atom feed reader" : "An RSS/Atom feed reader",
"Use system cron for updates" : "برای بروزرسانی ها از سیستم cron استفاده کنید", "Use system cron for updates" : "برای بروزرسانی ها از سیستم cron استفاده کنید",
"Purge interval" : "فاصله فاصله",
"Maximum read count per feed" : "حداکثر تعداد خواندن در هر خوراک", "Maximum read count per feed" : "حداکثر تعداد خواندن در هر خوراک",
"Maximum redirects" : "حداکثر تغییر مسیرها", "Maximum redirects" : "حداکثر تغییر مسیرها",
"Feed fetcher timeout" : "خاتمه دادن به فست فایر", "Feed fetcher timeout" : "خاتمه دادن به فست فایر",

View File

@ -8,6 +8,7 @@
"News" : "اخبار", "News" : "اخبار",
"An RSS/Atom feed reader" : "An RSS/Atom feed reader", "An RSS/Atom feed reader" : "An RSS/Atom feed reader",
"Use system cron for updates" : "برای بروزرسانی ها از سیستم cron استفاده کنید", "Use system cron for updates" : "برای بروزرسانی ها از سیستم cron استفاده کنید",
"Purge interval" : "فاصله فاصله",
"Maximum read count per feed" : "حداکثر تعداد خواندن در هر خوراک", "Maximum read count per feed" : "حداکثر تعداد خواندن در هر خوراک",
"Maximum redirects" : "حداکثر تغییر مسیرها", "Maximum redirects" : "حداکثر تغییر مسیرها",
"Feed fetcher timeout" : "خاتمه دادن به فست فایر", "Feed fetcher timeout" : "خاتمه دادن به فست فایر",

View File

@ -3,7 +3,6 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Pyyntö epäonnistui, yhteys ei ole käytettävissä!", "Request failed, network connection unavailable!" : "Pyyntö epäonnistui, yhteys ei ole käytettävissä!",
"Request unauthorized. Are you logged in?" : "Pyyntö ei ole valtutettu. Oletko sisäänkirjautuneena?", "Request unauthorized. Are you logged in?" : "Pyyntö ei ole valtutettu. Oletko sisäänkirjautuneena?",
"Request forbidden. Are you an administrator?" : "Pyyntö ei ole valtuutettu. Oletko ylläpitäjä?",
"Token expired or app not enabled! Reload the page!" : "Valtuutus vanheni tai sovellus ei ole käytössä! Lataa sivu uudelleen!", "Token expired or app not enabled! Reload the page!" : "Valtuutus vanheni tai sovellus ei ole käytössä! Lataa sivu uudelleen!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Sisäinen palvelinvirhe! Tarkista lisätiedot lokitiedostosta data/nextcloud.log!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Sisäinen palvelinvirhe! Tarkista lisätiedot lokitiedostosta data/nextcloud.log!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Pyyntö epäonnistui, Nextcloud on parhaillaan ylläpitotilassa!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Pyyntö epäonnistui, Nextcloud on parhaillaan ylläpitotilassa!",
@ -11,13 +10,13 @@ OC.L10N.register(
"Unread articles" : "Lukemattomat artikkelit", "Unread articles" : "Lukemattomat artikkelit",
"News" : "Uutiset", "News" : "Uutiset",
"News folders" : "Syötekansiot", "News folders" : "Syötekansiot",
"News articles" : "Uutisartikkelit",
"Shared with me" : "Jaettu kanssasi", "Shared with me" : "Jaettu kanssasi",
"An RSS/Atom feed reader" : "RSS-/Atom-syötteiden lukija", "An RSS/Atom feed reader" : "RSS-/Atom-syötteiden lukija",
"Use system cron for updates" : "Käytä järjestelmän cronia päivityksille", "Use system cron for updates" : "Käytä järjestelmän cronia päivityksille",
"Disable this if you use a custom updater." : "Poista tämä käytöstä, jos käytät erillistä päivitintä.", "Disable this if you use a custom updater." : "Poista tämä käytöstä, jos käytät erillistä päivitintä.",
"Purge interval" : "Hävitysväli",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimiaika sekunteina jonka jälkeen poistetut syötteet ja kansiot poistetaan tietokannasta; alle 60 sekuntin arvot ohitetaan.",
"Maximum read count per feed" : "Syötekohtainen lukukertojen enimmäismäärä", "Maximum read count per feed" : "Syötekohtainen lukukertojen enimmäismäärä",
"Delete unread articles automatically" : "Poista lukemattomat artikkelit automaattisesti",
"Maximum redirects" : "Uudelleenohjausten enimmäismäärä", "Maximum redirects" : "Uudelleenohjausten enimmäismäärä",
"How many redirects the feed fetcher should follow." : "Kuinka montaa uudelleenohjausta syötteen noutajan tulisi seurata.", "How many redirects the feed fetcher should follow." : "Kuinka montaa uudelleenohjausta syötteen noutajan tulisi seurata.",
"Feed fetcher timeout" : "Syötteen hakemisen aikakatkaisu", "Feed fetcher timeout" : "Syötteen hakemisen aikakatkaisu",

View File

@ -1,7 +1,6 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Pyyntö epäonnistui, yhteys ei ole käytettävissä!", "Request failed, network connection unavailable!" : "Pyyntö epäonnistui, yhteys ei ole käytettävissä!",
"Request unauthorized. Are you logged in?" : "Pyyntö ei ole valtutettu. Oletko sisäänkirjautuneena?", "Request unauthorized. Are you logged in?" : "Pyyntö ei ole valtutettu. Oletko sisäänkirjautuneena?",
"Request forbidden. Are you an administrator?" : "Pyyntö ei ole valtuutettu. Oletko ylläpitäjä?",
"Token expired or app not enabled! Reload the page!" : "Valtuutus vanheni tai sovellus ei ole käytössä! Lataa sivu uudelleen!", "Token expired or app not enabled! Reload the page!" : "Valtuutus vanheni tai sovellus ei ole käytössä! Lataa sivu uudelleen!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Sisäinen palvelinvirhe! Tarkista lisätiedot lokitiedostosta data/nextcloud.log!", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Sisäinen palvelinvirhe! Tarkista lisätiedot lokitiedostosta data/nextcloud.log!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Pyyntö epäonnistui, Nextcloud on parhaillaan ylläpitotilassa!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Pyyntö epäonnistui, Nextcloud on parhaillaan ylläpitotilassa!",
@ -9,13 +8,13 @@
"Unread articles" : "Lukemattomat artikkelit", "Unread articles" : "Lukemattomat artikkelit",
"News" : "Uutiset", "News" : "Uutiset",
"News folders" : "Syötekansiot", "News folders" : "Syötekansiot",
"News articles" : "Uutisartikkelit",
"Shared with me" : "Jaettu kanssasi", "Shared with me" : "Jaettu kanssasi",
"An RSS/Atom feed reader" : "RSS-/Atom-syötteiden lukija", "An RSS/Atom feed reader" : "RSS-/Atom-syötteiden lukija",
"Use system cron for updates" : "Käytä järjestelmän cronia päivityksille", "Use system cron for updates" : "Käytä järjestelmän cronia päivityksille",
"Disable this if you use a custom updater." : "Poista tämä käytöstä, jos käytät erillistä päivitintä.", "Disable this if you use a custom updater." : "Poista tämä käytöstä, jos käytät erillistä päivitintä.",
"Purge interval" : "Hävitysväli",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimiaika sekunteina jonka jälkeen poistetut syötteet ja kansiot poistetaan tietokannasta; alle 60 sekuntin arvot ohitetaan.",
"Maximum read count per feed" : "Syötekohtainen lukukertojen enimmäismäärä", "Maximum read count per feed" : "Syötekohtainen lukukertojen enimmäismäärä",
"Delete unread articles automatically" : "Poista lukemattomat artikkelit automaattisesti",
"Maximum redirects" : "Uudelleenohjausten enimmäismäärä", "Maximum redirects" : "Uudelleenohjausten enimmäismäärä",
"How many redirects the feed fetcher should follow." : "Kuinka montaa uudelleenohjausta syötteen noutajan tulisi seurata.", "How many redirects the feed fetcher should follow." : "Kuinka montaa uudelleenohjausta syötteen noutajan tulisi seurata.",
"Feed fetcher timeout" : "Syötteen hakemisen aikakatkaisu", "Feed fetcher timeout" : "Syötteen hakemisen aikakatkaisu",

View File

@ -3,7 +3,6 @@ OC.L10N.register(
{ {
"Request failed, network connection unavailable!" : "Échec de la requête, connexion réseau indisponible !", "Request failed, network connection unavailable!" : "Échec de la requête, connexion réseau indisponible !",
"Request unauthorized. Are you logged in?" : "Requête non autorisée. Êtes-vous bien connecté ?", "Request unauthorized. Are you logged in?" : "Requête non autorisée. Êtes-vous bien connecté ?",
"Request forbidden. Are you an administrator?" : "Requête interdite. Avez-vous les droits administrateurs ?",
"Token expired or app not enabled! Reload the page!" : "Le jeton a expiré ou l'application n'est pas activée ! Veuillez recharger la page !", "Token expired or app not enabled! Reload the page!" : "Le jeton a expiré ou l'application n'est pas activée ! Veuillez recharger la page !",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Erreur interne du serveur ! Veuillez consulter votre fichier data/nextcloud.log pour plus d'informations !", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Erreur interne du serveur ! Veuillez consulter votre fichier data/nextcloud.log pour plus d'informations !",
"Request failed, Nextcloud is in currently in maintenance mode!" : "La requête a échoué, Nextcloud est actuellement en maintenance !", "Request failed, Nextcloud is in currently in maintenance mode!" : "La requête a échoué, Nextcloud est actuellement en maintenance !",
@ -11,16 +10,14 @@ OC.L10N.register(
"Unread articles" : "Articles non lus", "Unread articles" : "Articles non lus",
"News" : "News", "News" : "News",
"News folders" : "Dossiers d'actualités", "News folders" : "Dossiers d'actualités",
"News articles" : "Articles d'actualité",
"Shared with me" : "Partagé avec moi", "Shared with me" : "Partagé avec moi",
"An RSS/Atom feed reader" : "Un lecteur du flux RSS/Atom", "An RSS/Atom feed reader" : "Un lecteur du flux RSS/Atom",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Un lecteur de flux RSS/Atom pour Nextcloud\n\n- 📲 Synchronisez vos flux sur plusieurs [clients](https://nextcloud.github.io/news/clients/) mobiles ou de bureau\n- 🔄 Mise à jour automatique de vox flux d'actualité\n- 🆓 Libre et open-source sous licence AGPLv3, sans publicité et sans fonctionnalités premium\n\n**L'utilisation du Cron système est requise pour le fonctionnement de cette application**\n\nLa liste des pré-requis est disponible [ici](https://nextcloud.github.io/news/install/#dependencies)\n\nLa journal de versions est consultable [ici](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSignaler un [bug](https://github.com/nextcloud/news/issues/new/choose)\n\nDemander une [fonctionnalité](https://github.com/nextcloud/news/discussions/new)\n\nSignaler un [problème avec l'application](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Un lecteur de flux RSS/Atom pour Nextcloud\n\n- 📲 Synchronisez vos flux sur plusieurs [clients](https://nextcloud.github.io/news/clients/) mobiles ou de bureau\n- 🔄 Mise à jour automatique de vox flux d'actualité\n- 🆓 Libre et open-source sous licence AGPLv3, sans publicité et sans fonctionnalités premium\n\n**L'utilisation du Cron système est requise pour le fonctionnement de cette application**\n\nLa liste des pré-requis est disponible [ici](https://nextcloud.github.io/news/install/#dependencies)\n\nLa journal de versions est consultable [ici](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSignaler un [bug](https://github.com/nextcloud/news/issues/new/choose)\n\nDemander une [fonctionnalité](https://github.com/nextcloud/news/discussions/new)\n\nSignaler un [problème avec l'application](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Utiliser le « cron » du système pour les mises à jour", "Use system cron for updates" : "Utiliser le « cron » du système pour les mises à jour",
"Disable this if you use a custom updater." : "Désactivez ceci si vous utilisez un outil de mise à jour personnalisé.", "Disable this if you use a custom updater." : "Désactivez ceci si vous utilisez un outil de mise à jour personnalisé.",
"Purge interval" : "Intervalle de purge",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Nombre minimum de secondes après lequel les flux et dossiers supprimés seront effacés de la base de données. Les valeurs inférieures à 60 secondes seront ignorées.",
"Maximum read count per feed" : "Nombre maximum de lecture par flux", "Maximum read count per feed" : "Nombre maximum de lecture par flux",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Définit le nombre maximum darticles pouvant être lus par flux qui ne seront pas supprimés par la tâche de nettoyage ; si d'anciens articles réapparaissent après avoir été lus, augmentez cette valeur ; les valeurs négatives telles que -1 vont désactiver cette fonctionnalité.",
"Delete unread articles automatically" : "Supprimer automatiquement les articles non lus",
"Enable this if you also want to delete unread articles." : "Activez ceci si vous voulez aussi supprimer les articles non lus.",
"Maximum redirects" : "Nombre maximal de redirections", "Maximum redirects" : "Nombre maximal de redirections",
"How many redirects the feed fetcher should follow." : "Nombre de redirections que le récupérateur de flux doit suivre", "How many redirects the feed fetcher should follow." : "Nombre de redirections que le récupérateur de flux doit suivre",
"Feed fetcher timeout" : "Délai d'attente maximum du récupérateur de flux", "Feed fetcher timeout" : "Délai d'attente maximum du récupérateur de flux",
@ -29,8 +26,6 @@ OC.L10N.register(
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si indiquée, l'URL de ce service sera interrogée pour afficher les flux dans la section \"Explorer\". Pour revenir au service d'exploration par défaut, laissez ce champ vide.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si indiquée, l'URL de ce service sera interrogée pour afficher les flux dans la section \"Explorer\". Pour revenir au service d'exploration par défaut, laissez ce champ vide.",
"Update interval" : "Intervalle de mise à jour", "Update interval" : "Intervalle de mise à jour",
"Interval in seconds in which the feeds will be updated." : "Fréquence à laquelle les flux seront mis à jour (en secondes).", "Interval in seconds in which the feeds will be updated." : "Fréquence à laquelle les flux seront mis à jour (en secondes).",
"Successfully updated news configuration" : "Mise à jour réussie de la configuration des actualités",
"Unable to update news config" : "Impossible de mettre à jour la configuration des actualités",
"Download" : "Télécharger", "Download" : "Télécharger",
"Close" : "Fermer", "Close" : "Fermer",
"Subscribe to" : "S'abonner à ", "Subscribe to" : "S'abonner à ",
@ -53,7 +48,7 @@ OC.L10N.register(
"from" : "de", "from" : "de",
"shared by" : "Partagé par", "shared by" : "Partagé par",
"Play audio" : "Ecouter", "Play audio" : "Ecouter",
"Download audio" : "Télécharger le fichier audio", "Download audio" : "Télécharger le son",
"Download video" : "Télécharger la vidéo", "Download video" : "Télécharger la vidéo",
"Keyboard shortcut" : "Raccourcis clavier", "Keyboard shortcut" : "Raccourcis clavier",
"Description" : "Description", "Description" : "Description",
@ -61,18 +56,18 @@ OC.L10N.register(
"Jump to next article" : "Aller au prochain article", "Jump to next article" : "Aller au prochain article",
"left" : "gauche", "left" : "gauche",
"Jump to previous article" : "Aller à l'article précédent", "Jump to previous article" : "Aller à l'article précédent",
"Toggle star article" : "Épingler/Désépingler l'article", "Toggle star article" : "Épingler / Désépingler l'article",
"Star article and jump to next one" : "Épingler l'article et aller au suivant", "Star article and jump to next one" : "Épingler l'article et aller au suivant",
"Toggle keep current article unread" : "Marquer l'article comme Lu/Non lu", "Toggle keep current article unread" : "Marquer l'article comme Lu / Non lu",
"Open article in new tab" : "Ouvrir l'article dans un nouvel onglet", "Open article in new tab" : "Ouvrir l'article dans un nouvel onglet",
"Toggle expand article in compact view" : "Étendre/Réduire l'article", "Toggle expand article in compact view" : "Étendre / Réduire la vue (si en vue compacte)",
"Refresh" : "Rafraîchir", "Refresh" : "Rafraîchir",
"Load next feed" : "Charger le flux suivant", "Load next feed" : "Charger le flux suivant",
"Load previous feed" : "Charger le flux précédent", "Load previous feed" : "Charger le flux précédent",
"Load previous folder" : "Charger le dossier précédent", "Load previous folder" : "Charger le dossier précédent",
"Load next folder" : "Charger le dossier suivant", "Load next folder" : "Charger le dossier suivant",
"Scroll to active navigation entry" : "Aller à l'élément actif", "Scroll to active navigation entry" : "Aller à l'élément actif",
"Mark current article's feed/folder read" : "Marquer comme lu le flux / le dossier de l'article en cours", "Mark current article's feed/folder read" : "Marquer comme lu le flux / le répertoire de l'article en cours",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Mode Ajax ou Webcron détecté ! Vos flux ne seront pas mis à jour !", "Ajax or webcron mode detected! Your feeds will not be updated!" : "Mode Ajax ou Webcron détecté ! Vos flux ne seront pas mis à jour !",
"How to set up the operating system cron" : "Comment configurer le cron du système d'exploitation", "How to set up the operating system cron" : "Comment configurer le cron du système d'exploitation",
"Install and set up a faster parallel updater that uses the News app's update API" : "Installe et met en place un updater qui utilise la mise à jour API de l'application News", "Install and set up a faster parallel updater that uses the News app's update API" : "Installe et met en place un updater qui utilise la mise à jour API de l'application News",
@ -88,7 +83,7 @@ OC.L10N.register(
"Credentials" : "Informations d'identification", "Credentials" : "Informations d'identification",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Les informations d'identification HTTP Basic Auth doivent être stocké en clair ! Toute personne ayant accès au serveur ou à la base de données y aura accès !", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Les informations d'identification HTTP Basic Auth doivent être stocké en clair ! Toute personne ayant accès au serveur ou à la base de données y aura accès !",
"Password" : "Mot de passe", "Password" : "Mot de passe",
"Auto discover Feed" : "Découverte automatique du flux", "Auto discover Feed" : "Flux de découverte automatique",
"New Folder" : "Nouveau dossier", "New Folder" : "Nouveau dossier",
"Create" : "Créer", "Create" : "Créer",
"Explore" : "Explorer", "Explore" : "Explorer",

View File

@ -1,7 +1,6 @@
{ "translations": { { "translations": {
"Request failed, network connection unavailable!" : "Échec de la requête, connexion réseau indisponible !", "Request failed, network connection unavailable!" : "Échec de la requête, connexion réseau indisponible !",
"Request unauthorized. Are you logged in?" : "Requête non autorisée. Êtes-vous bien connecté ?", "Request unauthorized. Are you logged in?" : "Requête non autorisée. Êtes-vous bien connecté ?",
"Request forbidden. Are you an administrator?" : "Requête interdite. Avez-vous les droits administrateurs ?",
"Token expired or app not enabled! Reload the page!" : "Le jeton a expiré ou l'application n'est pas activée ! Veuillez recharger la page !", "Token expired or app not enabled! Reload the page!" : "Le jeton a expiré ou l'application n'est pas activée ! Veuillez recharger la page !",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Erreur interne du serveur ! Veuillez consulter votre fichier data/nextcloud.log pour plus d'informations !", "Internal server error! Please check your data/nextcloud.log file for additional information!" : "Erreur interne du serveur ! Veuillez consulter votre fichier data/nextcloud.log pour plus d'informations !",
"Request failed, Nextcloud is in currently in maintenance mode!" : "La requête a échoué, Nextcloud est actuellement en maintenance !", "Request failed, Nextcloud is in currently in maintenance mode!" : "La requête a échoué, Nextcloud est actuellement en maintenance !",
@ -9,16 +8,14 @@
"Unread articles" : "Articles non lus", "Unread articles" : "Articles non lus",
"News" : "News", "News" : "News",
"News folders" : "Dossiers d'actualités", "News folders" : "Dossiers d'actualités",
"News articles" : "Articles d'actualité",
"Shared with me" : "Partagé avec moi", "Shared with me" : "Partagé avec moi",
"An RSS/Atom feed reader" : "Un lecteur du flux RSS/Atom", "An RSS/Atom feed reader" : "Un lecteur du flux RSS/Atom",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Un lecteur de flux RSS/Atom pour Nextcloud\n\n- 📲 Synchronisez vos flux sur plusieurs [clients](https://nextcloud.github.io/news/clients/) mobiles ou de bureau\n- 🔄 Mise à jour automatique de vox flux d'actualité\n- 🆓 Libre et open-source sous licence AGPLv3, sans publicité et sans fonctionnalités premium\n\n**L'utilisation du Cron système est requise pour le fonctionnement de cette application**\n\nLa liste des pré-requis est disponible [ici](https://nextcloud.github.io/news/install/#dependencies)\n\nLa journal de versions est consultable [ici](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSignaler un [bug](https://github.com/nextcloud/news/issues/new/choose)\n\nDemander une [fonctionnalité](https://github.com/nextcloud/news/discussions/new)\n\nSignaler un [problème avec l'application](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Un lecteur de flux RSS/Atom pour Nextcloud\n\n- 📲 Synchronisez vos flux sur plusieurs [clients](https://nextcloud.github.io/news/clients/) mobiles ou de bureau\n- 🔄 Mise à jour automatique de vox flux d'actualité\n- 🆓 Libre et open-source sous licence AGPLv3, sans publicité et sans fonctionnalités premium\n\n**L'utilisation du Cron système est requise pour le fonctionnement de cette application**\n\nLa liste des pré-requis est disponible [ici](https://nextcloud.github.io/news/install/#dependencies)\n\nLa journal de versions est consultable [ici](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nSignaler un [bug](https://github.com/nextcloud/news/issues/new/choose)\n\nDemander une [fonctionnalité](https://github.com/nextcloud/news/discussions/new)\n\nSignaler un [problème avec l'application](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Utiliser le « cron » du système pour les mises à jour", "Use system cron for updates" : "Utiliser le « cron » du système pour les mises à jour",
"Disable this if you use a custom updater." : "Désactivez ceci si vous utilisez un outil de mise à jour personnalisé.", "Disable this if you use a custom updater." : "Désactivez ceci si vous utilisez un outil de mise à jour personnalisé.",
"Purge interval" : "Intervalle de purge",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Nombre minimum de secondes après lequel les flux et dossiers supprimés seront effacés de la base de données. Les valeurs inférieures à 60 secondes seront ignorées.",
"Maximum read count per feed" : "Nombre maximum de lecture par flux", "Maximum read count per feed" : "Nombre maximum de lecture par flux",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Définit le nombre maximum darticles pouvant être lus par flux qui ne seront pas supprimés par la tâche de nettoyage ; si d'anciens articles réapparaissent après avoir été lus, augmentez cette valeur ; les valeurs négatives telles que -1 vont désactiver cette fonctionnalité.",
"Delete unread articles automatically" : "Supprimer automatiquement les articles non lus",
"Enable this if you also want to delete unread articles." : "Activez ceci si vous voulez aussi supprimer les articles non lus.",
"Maximum redirects" : "Nombre maximal de redirections", "Maximum redirects" : "Nombre maximal de redirections",
"How many redirects the feed fetcher should follow." : "Nombre de redirections que le récupérateur de flux doit suivre", "How many redirects the feed fetcher should follow." : "Nombre de redirections que le récupérateur de flux doit suivre",
"Feed fetcher timeout" : "Délai d'attente maximum du récupérateur de flux", "Feed fetcher timeout" : "Délai d'attente maximum du récupérateur de flux",
@ -27,8 +24,6 @@
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si indiquée, l'URL de ce service sera interrogée pour afficher les flux dans la section \"Explorer\". Pour revenir au service d'exploration par défaut, laissez ce champ vide.", "If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Si indiquée, l'URL de ce service sera interrogée pour afficher les flux dans la section \"Explorer\". Pour revenir au service d'exploration par défaut, laissez ce champ vide.",
"Update interval" : "Intervalle de mise à jour", "Update interval" : "Intervalle de mise à jour",
"Interval in seconds in which the feeds will be updated." : "Fréquence à laquelle les flux seront mis à jour (en secondes).", "Interval in seconds in which the feeds will be updated." : "Fréquence à laquelle les flux seront mis à jour (en secondes).",
"Successfully updated news configuration" : "Mise à jour réussie de la configuration des actualités",
"Unable to update news config" : "Impossible de mettre à jour la configuration des actualités",
"Download" : "Télécharger", "Download" : "Télécharger",
"Close" : "Fermer", "Close" : "Fermer",
"Subscribe to" : "S'abonner à ", "Subscribe to" : "S'abonner à ",
@ -51,7 +46,7 @@
"from" : "de", "from" : "de",
"shared by" : "Partagé par", "shared by" : "Partagé par",
"Play audio" : "Ecouter", "Play audio" : "Ecouter",
"Download audio" : "Télécharger le fichier audio", "Download audio" : "Télécharger le son",
"Download video" : "Télécharger la vidéo", "Download video" : "Télécharger la vidéo",
"Keyboard shortcut" : "Raccourcis clavier", "Keyboard shortcut" : "Raccourcis clavier",
"Description" : "Description", "Description" : "Description",
@ -59,18 +54,18 @@
"Jump to next article" : "Aller au prochain article", "Jump to next article" : "Aller au prochain article",
"left" : "gauche", "left" : "gauche",
"Jump to previous article" : "Aller à l'article précédent", "Jump to previous article" : "Aller à l'article précédent",
"Toggle star article" : "Épingler/Désépingler l'article", "Toggle star article" : "Épingler / Désépingler l'article",
"Star article and jump to next one" : "Épingler l'article et aller au suivant", "Star article and jump to next one" : "Épingler l'article et aller au suivant",
"Toggle keep current article unread" : "Marquer l'article comme Lu/Non lu", "Toggle keep current article unread" : "Marquer l'article comme Lu / Non lu",
"Open article in new tab" : "Ouvrir l'article dans un nouvel onglet", "Open article in new tab" : "Ouvrir l'article dans un nouvel onglet",
"Toggle expand article in compact view" : "Étendre/Réduire l'article", "Toggle expand article in compact view" : "Étendre / Réduire la vue (si en vue compacte)",
"Refresh" : "Rafraîchir", "Refresh" : "Rafraîchir",
"Load next feed" : "Charger le flux suivant", "Load next feed" : "Charger le flux suivant",
"Load previous feed" : "Charger le flux précédent", "Load previous feed" : "Charger le flux précédent",
"Load previous folder" : "Charger le dossier précédent", "Load previous folder" : "Charger le dossier précédent",
"Load next folder" : "Charger le dossier suivant", "Load next folder" : "Charger le dossier suivant",
"Scroll to active navigation entry" : "Aller à l'élément actif", "Scroll to active navigation entry" : "Aller à l'élément actif",
"Mark current article's feed/folder read" : "Marquer comme lu le flux / le dossier de l'article en cours", "Mark current article's feed/folder read" : "Marquer comme lu le flux / le répertoire de l'article en cours",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Mode Ajax ou Webcron détecté ! Vos flux ne seront pas mis à jour !", "Ajax or webcron mode detected! Your feeds will not be updated!" : "Mode Ajax ou Webcron détecté ! Vos flux ne seront pas mis à jour !",
"How to set up the operating system cron" : "Comment configurer le cron du système d'exploitation", "How to set up the operating system cron" : "Comment configurer le cron du système d'exploitation",
"Install and set up a faster parallel updater that uses the News app's update API" : "Installe et met en place un updater qui utilise la mise à jour API de l'application News", "Install and set up a faster parallel updater that uses the News app's update API" : "Installe et met en place un updater qui utilise la mise à jour API de l'application News",
@ -86,7 +81,7 @@
"Credentials" : "Informations d'identification", "Credentials" : "Informations d'identification",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Les informations d'identification HTTP Basic Auth doivent être stocké en clair ! Toute personne ayant accès au serveur ou à la base de données y aura accès !", "HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Les informations d'identification HTTP Basic Auth doivent être stocké en clair ! Toute personne ayant accès au serveur ou à la base de données y aura accès !",
"Password" : "Mot de passe", "Password" : "Mot de passe",
"Auto discover Feed" : "Découverte automatique du flux", "Auto discover Feed" : "Flux de découverte automatique",
"New Folder" : "Nouveau dossier", "New Folder" : "Nouveau dossier",
"Create" : "Créer", "Create" : "Créer",
"Explore" : "Explorer", "Explore" : "Explorer",

View File

@ -11,6 +11,8 @@ OC.L10N.register(
"Shared with me" : "Compartido comigo", "Shared with me" : "Compartido comigo",
"An RSS/Atom feed reader" : "Un lector de fontes RSS/Atom", "An RSS/Atom feed reader" : "Un lector de fontes RSS/Atom",
"Use system cron for updates" : "Use o cron do sistema para as actualizacións", "Use system cron for updates" : "Use o cron do sistema para as actualizacións",
"Purge interval" : "Intervalo de depuración",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Cantidade mínima de segundos após eliminar as fontes e cartafoles da base de datos; os valores menores de 60 segundos son ignorados.",
"Maximum read count per feed" : "Conta máxima de lidos por fonte", "Maximum read count per feed" : "Conta máxima de lidos por fonte",
"Maximum redirects" : "Redireccionamentos máximos", "Maximum redirects" : "Redireccionamentos máximos",
"How many redirects the feed fetcher should follow." : "Cantos redirecionamentos debe seguir o recuperador de fontes.", "How many redirects the feed fetcher should follow." : "Cantos redirecionamentos debe seguir o recuperador de fontes.",

View File

@ -9,6 +9,8 @@
"Shared with me" : "Compartido comigo", "Shared with me" : "Compartido comigo",
"An RSS/Atom feed reader" : "Un lector de fontes RSS/Atom", "An RSS/Atom feed reader" : "Un lector de fontes RSS/Atom",
"Use system cron for updates" : "Use o cron do sistema para as actualizacións", "Use system cron for updates" : "Use o cron do sistema para as actualizacións",
"Purge interval" : "Intervalo de depuración",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Cantidade mínima de segundos após eliminar as fontes e cartafoles da base de datos; os valores menores de 60 segundos son ignorados.",
"Maximum read count per feed" : "Conta máxima de lidos por fonte", "Maximum read count per feed" : "Conta máxima de lidos por fonte",
"Maximum redirects" : "Redireccionamentos máximos", "Maximum redirects" : "Redireccionamentos máximos",
"How many redirects the feed fetcher should follow." : "Cantos redirecionamentos debe seguir o recuperador de fontes.", "How many redirects the feed fetcher should follow." : "Cantos redirecionamentos debe seguir o recuperador de fontes.",

View File

@ -11,6 +11,7 @@ OC.L10N.register(
"Shared with me" : "משותף אתי", "Shared with me" : "משותף אתי",
"An RSS/Atom feed reader" : "קורא ערוצי תוכן מסוג RSS/Atom", "An RSS/Atom feed reader" : "קורא ערוצי תוכן מסוג RSS/Atom",
"Use system cron for updates" : "שימוש ב־cron של המערכת לעדכונים", "Use system cron for updates" : "שימוש ב־cron של המערכת לעדכונים",
"Purge interval" : "מרווח להסרה ממסד הנתונים",
"Maximum read count per feed" : "מספר מקסימלי של שורות קריאה מערוץ הזנת תוכן", "Maximum read count per feed" : "מספר מקסימלי של שורות קריאה מערוץ הזנת תוכן",
"Maximum redirects" : "מספר ניתובים מירבי", "Maximum redirects" : "מספר ניתובים מירבי",
"Feed fetcher timeout" : "עבר זמן מרבי להזנת ערוץ התוכן", "Feed fetcher timeout" : "עבר זמן מרבי להזנת ערוץ התוכן",

View File

@ -9,6 +9,7 @@
"Shared with me" : "משותף אתי", "Shared with me" : "משותף אתי",
"An RSS/Atom feed reader" : "קורא ערוצי תוכן מסוג RSS/Atom", "An RSS/Atom feed reader" : "קורא ערוצי תוכן מסוג RSS/Atom",
"Use system cron for updates" : "שימוש ב־cron של המערכת לעדכונים", "Use system cron for updates" : "שימוש ב־cron של המערכת לעדכונים",
"Purge interval" : "מרווח להסרה ממסד הנתונים",
"Maximum read count per feed" : "מספר מקסימלי של שורות קריאה מערוץ הזנת תוכן", "Maximum read count per feed" : "מספר מקסימלי של שורות קריאה מערוץ הזנת תוכן",
"Maximum redirects" : "מספר ניתובים מירבי", "Maximum redirects" : "מספר ניתובים מירבי",
"Feed fetcher timeout" : "עבר זמן מרבי להזנת ערוץ התוכן", "Feed fetcher timeout" : "עבר זמן מרבי להזנת ערוץ התוכן",

View File

@ -14,6 +14,8 @@ OC.L10N.register(
"An RSS/Atom feed reader" : "RSS/Atom čitač sažetaka", "An RSS/Atom feed reader" : "RSS/Atom čitač sažetaka",
"Use system cron for updates" : "Koristi sustav cron za ažuriranja", "Use system cron for updates" : "Koristi sustav cron za ažuriranja",
"Disable this if you use a custom updater." : "Onemogućite ovo ako koristite prilagođenim alatom za ažuriranje.", "Disable this if you use a custom updater." : "Onemogućite ovo ako koristite prilagođenim alatom za ažuriranje.",
"Purge interval" : "Interval čišćenja",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimalna količina sekundi nakon uklanjanja izbrisanih feedova i mapa iz baze podataka; vrijednosti ispod 60 sekundi se zanemaruju.",
"Maximum read count per feed" : "Maksimalni broj čitanja po sažetku", "Maximum read count per feed" : "Maksimalni broj čitanja po sažetku",
"Maximum redirects" : "Maksimalni broj preusmjeravanja", "Maximum redirects" : "Maksimalni broj preusmjeravanja",
"How many redirects the feed fetcher should follow." : "Koliko preusmjeravanja bi hvatač sažetaka trebao pratiti.", "How many redirects the feed fetcher should follow." : "Koliko preusmjeravanja bi hvatač sažetaka trebao pratiti.",

View File

@ -12,6 +12,8 @@
"An RSS/Atom feed reader" : "RSS/Atom čitač sažetaka", "An RSS/Atom feed reader" : "RSS/Atom čitač sažetaka",
"Use system cron for updates" : "Koristi sustav cron za ažuriranja", "Use system cron for updates" : "Koristi sustav cron za ažuriranja",
"Disable this if you use a custom updater." : "Onemogućite ovo ako koristite prilagođenim alatom za ažuriranje.", "Disable this if you use a custom updater." : "Onemogućite ovo ako koristite prilagođenim alatom za ažuriranje.",
"Purge interval" : "Interval čišćenja",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimalna količina sekundi nakon uklanjanja izbrisanih feedova i mapa iz baze podataka; vrijednosti ispod 60 sekundi se zanemaruju.",
"Maximum read count per feed" : "Maksimalni broj čitanja po sažetku", "Maximum read count per feed" : "Maksimalni broj čitanja po sažetku",
"Maximum redirects" : "Maksimalni broj preusmjeravanja", "Maximum redirects" : "Maksimalni broj preusmjeravanja",
"How many redirects the feed fetcher should follow." : "Koliko preusmjeravanja bi hvatač sažetaka trebao pratiti.", "How many redirects the feed fetcher should follow." : "Koliko preusmjeravanja bi hvatač sažetaka trebao pratiti.",

View File

@ -16,10 +16,9 @@ OC.L10N.register(
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Egy RSS/Atom hírolvasó alkalmazás a Nextcloudhoz\n\n- 📲 Hírcsatornák szinkronizálása több mobil- vagy asztali [klienssel](https://nextcloud.github.io/news/clients/)\n- 🔄 Hírcsatornák automatikus frissítése\n- 🆓 Szabad és nyílt forráskódú, AGPLv3 licenc alatt, hirdetések és prémium funkciók nélkül\n\n**Az alkalmazás működéséhez jelenleg a rendszer cron használata szükséges**\n\nA követelmények [itt találhatók](https://nextcloud.github.io/news/install/#dependencies)\n\nA változásnapló pedig [itt](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nKészítsen egy [hibajelentést](https://github.com/nextcloud/news/issues/new/choose)\n\nKészítsen egy [funkciókérést](https://github.com/nextcloud/news/discussions/new)\n\nJelentse egy [hírcsatorna problémáját](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Egy RSS/Atom hírolvasó alkalmazás a Nextcloudhoz\n\n- 📲 Hírcsatornák szinkronizálása több mobil- vagy asztali [klienssel](https://nextcloud.github.io/news/clients/)\n- 🔄 Hírcsatornák automatikus frissítése\n- 🆓 Szabad és nyílt forráskódú, AGPLv3 licenc alatt, hirdetések és prémium funkciók nélkül\n\n**Az alkalmazás működéséhez jelenleg a rendszer cron használata szükséges**\n\nA követelmények [itt találhatók](https://nextcloud.github.io/news/install/#dependencies)\n\nA változásnapló pedig [itt](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nKészítsen egy [hibajelentést](https://github.com/nextcloud/news/issues/new/choose)\n\nKészítsen egy [funkciókérést](https://github.com/nextcloud/news/discussions/new)\n\nJelentse egy [hírcsatorna problémáját](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "A rendszer cron használata a frissítésekhez", "Use system cron for updates" : "A rendszer cron használata a frissítésekhez",
"Disable this if you use a custom updater." : "Tiltsa le, ha egyéni frissítőt használ.", "Disable this if you use a custom updater." : "Tiltsa le, ha egyéni frissítőt használ.",
"Purge interval" : "Tisztogatási időköz",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "A hírcsatornák és mappák törlése után, legalább ennyi időt adatbázisból való eltávolítását követő másodpercek minimális száma; a 60 másodperc alatti értékeket figyelmen kívül hagyjuk.",
"Maximum read count per feed" : "Maximális olvasási szám hírfolyamonként", "Maximum read count per feed" : "Maximális olvasási szám hírfolyamonként",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Meghatározza a hírcsatornánként olvasható cikkek maximális mennyiségét, amelyeket a törlési feladat nem töröl; ha a régi cikkek újra megjelennek olvasás után, növelje ezt az értéket; negatív értékek, például a -1 kikapcsolja ezt a funkciót.",
"Delete unread articles automatically" : "Az olvasatlan cikkek automatikus törlése",
"Enable this if you also want to delete unread articles." : "Kapcsolja be, ha törölni szeretné az olvasatlan cikkeket.",
"Maximum redirects" : "Maximum átirányítás", "Maximum redirects" : "Maximum átirányítás",
"How many redirects the feed fetcher should follow." : "Hány átirányítást kell követnie a hírcsatornának.", "How many redirects the feed fetcher should follow." : "Hány átirányítást kell követnie a hírcsatornának.",
"Feed fetcher timeout" : "Hírfolyam letöltő időtúllépés", "Feed fetcher timeout" : "Hírfolyam letöltő időtúllépés",

View File

@ -14,10 +14,9 @@
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Egy RSS/Atom hírolvasó alkalmazás a Nextcloudhoz\n\n- 📲 Hírcsatornák szinkronizálása több mobil- vagy asztali [klienssel](https://nextcloud.github.io/news/clients/)\n- 🔄 Hírcsatornák automatikus frissítése\n- 🆓 Szabad és nyílt forráskódú, AGPLv3 licenc alatt, hirdetések és prémium funkciók nélkül\n\n**Az alkalmazás működéséhez jelenleg a rendszer cron használata szükséges**\n\nA követelmények [itt találhatók](https://nextcloud.github.io/news/install/#dependencies)\n\nA változásnapló pedig [itt](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nKészítsen egy [hibajelentést](https://github.com/nextcloud/news/issues/new/choose)\n\nKészítsen egy [funkciókérést](https://github.com/nextcloud/news/discussions/new)\n\nJelentse egy [hírcsatorna problémáját](https://github.com/nextcloud/news/discussions/new)", "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Egy RSS/Atom hírolvasó alkalmazás a Nextcloudhoz\n\n- 📲 Hírcsatornák szinkronizálása több mobil- vagy asztali [klienssel](https://nextcloud.github.io/news/clients/)\n- 🔄 Hírcsatornák automatikus frissítése\n- 🆓 Szabad és nyílt forráskódú, AGPLv3 licenc alatt, hirdetések és prémium funkciók nélkül\n\n**Az alkalmazás működéséhez jelenleg a rendszer cron használata szükséges**\n\nA követelmények [itt találhatók](https://nextcloud.github.io/news/install/#dependencies)\n\nA változásnapló pedig [itt](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nKészítsen egy [hibajelentést](https://github.com/nextcloud/news/issues/new/choose)\n\nKészítsen egy [funkciókérést](https://github.com/nextcloud/news/discussions/new)\n\nJelentse egy [hírcsatorna problémáját](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "A rendszer cron használata a frissítésekhez", "Use system cron for updates" : "A rendszer cron használata a frissítésekhez",
"Disable this if you use a custom updater." : "Tiltsa le, ha egyéni frissítőt használ.", "Disable this if you use a custom updater." : "Tiltsa le, ha egyéni frissítőt használ.",
"Purge interval" : "Tisztogatási időköz",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "A hírcsatornák és mappák törlése után, legalább ennyi időt adatbázisból való eltávolítását követő másodpercek minimális száma; a 60 másodperc alatti értékeket figyelmen kívül hagyjuk.",
"Maximum read count per feed" : "Maximális olvasási szám hírfolyamonként", "Maximum read count per feed" : "Maximális olvasási szám hírfolyamonként",
"Defines the maximum amount of articles that can be read per feed which will not be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Meghatározza a hírcsatornánként olvasható cikkek maximális mennyiségét, amelyeket a törlési feladat nem töröl; ha a régi cikkek újra megjelennek olvasás után, növelje ezt az értéket; negatív értékek, például a -1 kikapcsolja ezt a funkciót.",
"Delete unread articles automatically" : "Az olvasatlan cikkek automatikus törlése",
"Enable this if you also want to delete unread articles." : "Kapcsolja be, ha törölni szeretné az olvasatlan cikkeket.",
"Maximum redirects" : "Maximum átirányítás", "Maximum redirects" : "Maximum átirányítás",
"How many redirects the feed fetcher should follow." : "Hány átirányítást kell követnie a hírcsatornának.", "How many redirects the feed fetcher should follow." : "Hány átirányítást kell követnie a hírcsatornának.",
"Feed fetcher timeout" : "Hírfolyam letöltő időtúllépés", "Feed fetcher timeout" : "Hírfolyam letöltő időtúllépés",

View File

@ -8,6 +8,7 @@ OC.L10N.register(
"Request failed, Nextcloud is in currently in maintenance mode!" : "Permintaan gagal, Nextcloud sedang dalam mode pemeliharaan!", "Request failed, Nextcloud is in currently in maintenance mode!" : "Permintaan gagal, Nextcloud sedang dalam mode pemeliharaan!",
"Unread articles" : "Artikel belum dibaca", "Unread articles" : "Artikel belum dibaca",
"Use system cron for updates" : "Gunakan cron sistem untuk pembaruan", "Use system cron for updates" : "Gunakan cron sistem untuk pembaruan",
"Purge interval" : "Singkirkan interval",
"Maximum read count per feed" : "Jumlah baca maksimum per feed", "Maximum read count per feed" : "Jumlah baca maksimum per feed",
"Maximum redirects" : "Pengalihan maksimum", "Maximum redirects" : "Pengalihan maksimum",
"Feed fetcher timeout" : "Pengambil feed kehabisan waktu", "Feed fetcher timeout" : "Pengambil feed kehabisan waktu",

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