upmerged from master

Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
This commit is contained in:
Devlin Junker 2023-08-05 19:16:39 -07:00 committed by Benjamin Brahmer
parent 450047ef4b
commit 923f986e67
142 changed files with 23068 additions and 14010 deletions

12
.github/pull_request_template.md vendored Normal file
View File

@ -0,0 +1,12 @@
* 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

@ -28,23 +28,27 @@ jobs:
- 5432:5432 # Maps tcp port 5432 on service container to the host
strategy:
matrix:
php-versions: ['7.4', '8.0']
nextcloud: ['stable23', 'stable24', 'stable25']
php-versions: ['8.0', '8.1']
nextcloud: ['stable25', 'stable26', 'stable27']
database: ['sqlite', 'pgsql', 'mysql']
experimental: [false]
include:
- php-versions: '8.0'
nextcloud: pre-release
database: sqlite
experimental: true
- php-versions: '8.2'
nextcloud: pre-release
database: sqlite
experimental: true
- php-versions: 8.1
nextcloud: pre-release
database: sqlite
experimental: true
- php-versions: 8.2
nextcloud: pre-release
database: sqlite
experimental: true
- php-versions: 7.4
nextcloud: stable25
database: sqlite
experimental: false
- php-versions: 8.2
nextcloud: stable26
database: sqlite
experimental: false
steps:
- name: Checkout
uses: actions/checkout@v3
@ -126,9 +130,6 @@ jobs:
kill %1
kill %2
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Functional tests maintenance
working-directory: ../server
run: |

View File

@ -7,14 +7,18 @@ jobs:
continue-on-error: true
strategy:
matrix:
php-versions: [ '7.4', '8.0', '8.1' ]
nextcloud: [ 'stable25' ]
php-versions: ['8.0', '8.1', '8.2' ]
nextcloud: [ 'stable27' ]
database: [ 'sqlite' ]
include:
- php-versions: '8.2'
- php-versions: 8.2
nextcloud: pre-release
database: sqlite
experimental: true
- php-versions: 7.4
nextcloud: stable25
database: sqlite
experimental: false
name: "phpstan: Nextcloud ${{ matrix.nextcloud }} with ${{ matrix.php-versions }}"
steps:
- name: Checkout

View File

@ -10,13 +10,13 @@ jobs:
strategy:
matrix:
php-versions: ['8.1']
nextcloud: ['stable25']
nextcloud: ['stable26', 'stable27']
database: ['sqlite']
experimental: [false]
codecoverage: [false]
include:
- php-versions: 8.0
nextcloud: stable24
nextcloud: stable25
database: sqlite
experimental: false
codecoverage: true
@ -50,9 +50,6 @@ jobs:
app: 'news'
check-code: false
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Prep PHP tests
working-directory: ../server/apps/news
run: make php-test-dependencies

View File

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

View File

@ -4,13 +4,13 @@ on:
jobs:
php:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.experimental }}
name: "Frontend: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}"
strategy:
matrix:
php-versions: ['8.1']
nextcloud: ['stable24']
nextcloud: ['stable27']
database: ['sqlite']
experimental: [false]
steps:

View File

@ -25,10 +25,10 @@ jobs:
uses: actions/checkout@v3
- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@v1.2
uses: skjnldsv/read-package-engines-version-actions@v2.2
id: versions
with:
fallbackNode: '^12'
fallbackNode: '^16'
fallbackNpm: '^6'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}

View File

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

80
.github/workflows/updater-test.yml vendored Normal file
View File

@ -0,0 +1,80 @@
name: Updater Tests
on:
pull_request
env:
POSTGRES_PASSWORD: nc_test_db
MYSQL_USER: nc_test
MYSQL_PASSWORD: nc_test_db
MYSQL_DATABASE: nc_test
MYSQL_PORT: 3800
jobs:
integration:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: "Update Test: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }}"
strategy:
matrix:
php-versions: ['8.1']
nextcloud: ['stable27']
database: ['sqlite']
experimental: [false]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: pdo_sqlite,pdo_mysql,pdo_pgsql,gd,zip
coverage: none
- name: Setup BATS & httpie
run: sudo apt-get install -y httpie && npm install -g bats@1.7.0
- name: Set up server
uses: SMillerDev/nextcloud-actions/setup-nextcloud@main
with:
version: ${{ matrix.nextcloud }}
cron: true
database-type: ${{ matrix.database }}
database-host: localhost
database-port: 5432
database-name: postgres
database-user: postgres
database-password: ${{ env.POSTGRES_PASSWORD }}
- name: Prime app build
run: make
- name: Configure server with app
uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@main
with:
app: 'news'
check-code: false
force: ${{ matrix.experimental }}
- name: Install composer install php-feed-generator
working-directory: ../server
run: composer install -d apps/news/tests/test_helper/php-feed-generator
- name: Run Updater tests
working-directory: ../server
run: |
php -S localhost:8080 &> /tmp/webserver.log &
cd apps/news/tests/test_helper/feeds && php -S localhost:8090 &> /tmp/feedserver.log &
sleep 2
cd ${{ github.workspace }}/../server
bats apps/news/tests/updater
# Kill php server
kill %1
kill %2

6
.gitignore vendored
View File

@ -16,6 +16,9 @@ tests/api/helpers/settings-override.bash
#bats
tests/api/helpers/settings-override.bash
tests/test_helper/feeds/test.xml
tests/test_helper/feeds/feed1.xml
tests/test_helper/feeds/feed2.xml
# python
PKG-INFO
@ -72,3 +75,6 @@ nbproject
# Mac OS
.DS_Store
*.iml
# VS Code
.vscode

3
.gitmodules vendored
View File

@ -4,3 +4,6 @@
[submodule "tests/test_helper/bats-assert"]
path = tests/test_helper/bats-assert
url = https://github.com/bats-core/bats-assert.git
[submodule "tests/test_helper/php-feed-generator"]
path = tests/test_helper/php-feed-generator
url = https://github.com/Grotax/php-feed-generator.git

View File

@ -50,11 +50,14 @@
* [Daniel Kesselberg](mailto:mail@danielkesselberg.de)
* [ELHADDAD Hamza](mailto:elhaddadhamza49@gmail.com)
* [Jakob Sack](mailto:mail@jakobsack.de)
* [ManuelSailer](mailto:github.com@manuel-sailer.de)
* [Qingping Hou](mailto:dave2008713@gmail.com)
* [Roman](mailto:reverse@jamm.me)
* [b_b](mailto:bruno@eliaz.fr)
* [chylex](mailto:contact@chylex.com)
* [heyarne](mailto:arne@schlueter.is)
* [marco.nassabain@etu.unistra.fr](mailto:marco.nassabain@hotmail.com)
* [Anderson Silva](mailto:UnderEu@users.noreply.github.com)
* [Andreas Fischer](mailto:bantu@owncloud.com)
* [David Guillot](mailto:david@guillot.me)
* [Gioele Falcetti](mailto:thegio.f@gmail.com)
@ -66,13 +69,13 @@
* [Konrad Graefe](mailto:konradgraefe@aol.com)
* [Loki3000](mailto:github@labcms.ru)
* [Maik Kulbe](mailto:info@linux-web-development.de)
* [Manuel Sailer](mailto:github.com@manuel-sailer.de)
* [Michael Gapczynski](mailto:mtgap@owncloud.com)
* [Nikita Chernyi](mailto:rakshazi@users.noreply.github.com)
* [Peter Hedlund](mailto:peter@peterandlinda.com)
* [Simon Spannagel](mailto:simonspa@kth.se)
* [bbBowser](mailto:carspi@mail.de)
* [benediktb](mailto:benedikt@blablub.de)
* [chylex](mailto:contact@chylex.com)
* [coderkun](mailto:olli@coderkun.de)
* [davidak](mailto:git@davidak.de)
* [hooger](mailto:horvathg.1988@gmail.com)
@ -85,7 +88,6 @@
* [Alexander Grüßung](mailto:alexander@gruessung-online.de)
* [Allan Nordhøy](mailto:epost@anotheragency.no)
* [Alwaysin](mailto:adrien@demma.fr)
* [Anderson Silva](mailto:UnderEu@users.noreply.github.com)
* [Andrea Boero](mailto:mail@tsumi.it)
* [Andreas Demmelbauer](mailto:git@notice.at)
* [Artem Lavrukhin](mailto:lavryha4590@gmail.com)
@ -107,6 +109,7 @@
* [Colin W](mailto:cwmke@users.noreply.github.com)
* [Daniel Aleksandersen](mailto:code@daniel.priv.no)
* [Daniel S](mailto:daniel@while-true-do.org)
* [Daniel Starzmann](mailto:daniel@starze.de)
* [David Baucum](mailto:david@baucum.me)
* [David Engster](mailto:deng@randomsample.de)
* [Dennis Müller](mailto:dennismueller.kontakt@gmail.com)
@ -129,6 +132,7 @@
* [Hendrik Leppelsack](mailto:hendrik@leppelsack.de)
* [Jasper Knockaert](mailto:jasper@knockaert.nl)
* [Kevin Decherf](mailto:kevin@kdecherf.com)
* [Kuba Orlik](mailto:kontakt@kuba-orlik.name)
* [Maceček Richard](mailto:46937538+macecekrichard@users.noreply.github.com)
* [Marc Cousin](mailto:marc.cousin@people-doc.com)
* [Martin Ferretti](mailto:ferrettimartin@protonmail.com)
@ -148,6 +152,7 @@
* [Piotr Dobrowolski](mailto:admin@tastycode.pl)
* [Raspbeguy](mailto:raspbeguy@users.noreply.github.com)
* [René Henrich](mailto:contact@rene-henrich.de)
* [Robert Wunderer](mailto:robert.wunderer@caprisys.at)
* [Rodrigo Aguilera](mailto:rodrigo.aguilera@amazee.com)
* [Roeland Jago Douma](mailto:roeland@famdouma.nl)
* [Simon](mailto:sschubert89@gmail.com)

View File

@ -3,13 +3,82 @@ 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.
# Unreleased
## [20.x.x]
## [23.x.x]
### Changed
- Vue Rewrite
- Add Typescript
- Add Jest for Unit Tests
# Releases
## [22.0.0] - 2023-07-23
### Changed
- Support deflate and gzip compression for HTTP response bodies (#2269)
- Broke apart old FAQ into different guides. Deprecated old FAQ (#2285)
## [22.0.0-beta2] - 2023-06-18
### Changed
- allowEvalScript set to true (#2262)
## [22.0.0-beta1] - 2023-05-18
### Changed
- Drop support for Nextcloud 24 (#2223)
- Add support for Nextcloud 27 (#2223)
## [21.2.0] - 2023-05-06
### Changed
- Improve visibility of links in dark theme (#2215)
## [21.2.0-beta4] - 2023-04-16
### Fixed
- Fix audio player floating when scrolling in NC25+ (#2142)
- Fix sorting of folder names in select when adding subscription (#2090)
## [21.2.0-beta3] - 2023-04-16
### Changed
- Improve performance of item updates (#1322)
### Fixed
- Fix display issue in NC26+ (#2192)
## [21.2.0-beta2] - 2023-04-05
### Fixed
- Fix last_modified not updated when all items are marked as read (#2183)
## [21.2.0-beta1] - 2023-03-23
### Changed
- Use httpLastModified field for If-Modified-Since header when fetching feed updates (#2119)
## [21.1.0] - 2023-03-20
No notable changes compared 21.1.0-beta1
## [21.1.0-beta1] - 2023-03-13
### Changed
- Remove unused background job OCA\News\Cron\Updater (#2137)
- (Nextcloud 26+) Add info card to the admin settings, showing last job execution (#2141)
## [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)

View File

@ -9,6 +9,14 @@ The News app is an RSS/Atom feed aggregator. It offers a [RESTful API](https://n
## Documentation
The documentation can be found [here](https://nextcloud.github.io/news/), the source of the documentation is on [GitHub](https://github.com/nextcloud/news/blob/master/docs)
### Common Guides
There are some small guides for dealing with common setup and issues.
* [Troubleshooting Guide](docs/troubleshooting.md)
* [Integration Guide](docs/features/integration.md)
## Bugs
Please read the [appropriate section in the contributing notices](https://github.com/nextcloud/news/blob/master/CONTRIBUTING.md#issues)

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)
]]></description>
<version>19.0.0</version>
<version>22.0.0</version>
<licence>agpl</licence>
<author>Benjamin Brahmer</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/3-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/3.png</screenshot>
<dependencies>
<php min-version="7.3" min-int-size="64"/>
<php min-version="7.4" min-int-size="64"/>
<database min-version="10">pgsql</database>
<database>sqlite</database>
<database min-version="8.0">mysql</database>
@ -55,13 +55,19 @@ Report a [feed issue](https://github.com/nextcloud/news/discussions/new)
<lib>json</lib>
<owncloud max-version="0" min-version="0"/>
<nextcloud min-version="23" max-version="25"/>
<nextcloud min-version="25" max-version="27"/>
</dependencies>
<background-jobs>
<job>OCA\News\Cron\UpdaterJob</job>
</background-jobs>
<repair-steps>
<post-migration>
<step>OCA\News\Migration\RemoveUnusedJob</step>
</post-migration>
</repair-steps>
<commands>
<command>OCA\News\Command\ExploreGenerator</command>
<command>OCA\News\Command\ShowFeed</command>

View File

@ -40,7 +40,7 @@
"source": "https://github.com/nextcloud/news/"
},
"require": {
"php": "^7.2 || ~8.0",
"php": "^7.4 || ~8.0",
"ezyang/htmlpurifier": "^4.16.0",
"pear/net_url2": "^2.2.2",
"riimu/kit-pathjoin": "^1.2.0",
@ -54,16 +54,16 @@
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "9.5.*",
"squizlabs/php_codesniffer": "^3.7.1",
"phpstan/phpstan": "^1.9.0",
"phpstan/phpstan-doctrine": "^1.3.22",
"phpstan/phpstan-strict-rules": "^1.4.4",
"phpstan/phpstan-phpunit": "^1.2.2",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "9.6.*",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": "^1.10.26",
"phpstan/phpstan-doctrine": "^1.3.40",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1",
"guzzlehttp/guzzle": "^7.3.0",
"doctrine/dbal": "^3.5.1",
"doctrine/dbal": "^3.6.5",
"symfony/console": "^4.4.19",
"psr/log": "^1.1.0"
},

View File

@ -11,8 +11,11 @@ Alternatively you may use an [external updater](https://nextcloud.github.io/news
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.
The individual limit per feed is only adjusted when it's bigger. Let's say last feed update came with 210 items,
then that will be the limit for that feed as long as no bigger update with more items is fetched.
In this case the limit will be 210 instead of 200, for that feed.
This is needed to prevent items from reappearing in the feed.
## 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.

View File

@ -12,6 +12,7 @@ A sync client can be used to read news and synchronize via the API.
| [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) |
| [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) |
| [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) |

View File

@ -1,119 +0,0 @@
# FAQ
## My browser shows a mixed content warning (Connection is Not Secure)
If you are serving your Nextcloud over HTTPS your browser will very likely warn you with a yellow warnings sign about your connection not being secure.
Chrome will show no green HTTPS lock sign, Firefox will show you the following image
![Mixed Passive Content](https://ffp4g1ylyit3jdyti1hqcvtb-wpengine.netdna-ssl.com/security/files/2015/10/mixed-passive-click1-600x221.png)
Note that this warning **is not red and won't block the page like the following images** which signal **a serious issue**:
![Untrusted Cert](https://www.inmotionhosting.com/support/images/stories/website/errors/ssl/chrome-self-signed-ssl-warning.png)
![Mixed Active Content](https://www.howtogeek.com/wp-content/uploads/2014/02/650x367xchrome-mixed-content-https-problem.png.pagespeed.gp+jp+jw+pj+js+rj+rp+rw+ri+cp+md.ic.r_lQiZiq38.png)
### What is the cause of the (yellow) error message
This warning is caused by [mixed passive content](https://developer.mozilla.org/en/docs/Security/MixedContent) and means that your page loads passive resources from non HTTPS resources, such as:
* Images
* Video/Audio
This allows a possible attacker to perform a MITM (man-in-the-middle) attack by serving you different images or audio/video.
### Why doesn't the News app fix it
The News app fully prevents mixed **active** content by only allowing HTTPS iframes from known locations; other possible mixed active content elements such as <script\> are stripped from the feed. Because images and audio/video are an integral part of a feed, we can not simply strip them.
Since an attacker can not execute code in contrast to mixed active content, but only replace images/audio/video in your feed reader, this is **not considered to be a security issue**. If, for whatever reason (e.g. feed which would allow fishing), this is a security problem for you, contact the specific feed provider and ask him to serve his feed content over HTTPS.
### 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.
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.
Because we care about our users' security and don't want to hide security warnings, we won't fix (aka silence) this issue.
The only fix for this issue is that feed providers serve their content over HTTPS.
## I am getting: Exception: Some\\Class does not exist errors in my nextcloud.log
This is very often caused by missing or old files, e.g. by failing to upload all the News app files or errors during installation. Before you report a bug, please recheck if all files from the archive are in place and accessible.
## Feeds not updated
Feeds can be updated using Nextcloud's system cron or an [external updater](https://nextcloud.github.io/news/clients/#update-clients) via the API
**The feed update is not run in Webcron and AJAX cron mode!**
### System Cron
* Check if you are using the system cron (Cron) setting on the admin page. AJAX and Web cron will not update feeds
* Check if the cronjob exists with **crontab -u www-data -e** (replace www-data with your httpd user)
* Check the file permissions of the **cron.php** file and if **www-data** (or whatever your httpd user is called like) can read and execute that script
* Check if you can execute the cron with **sudo -u www-data php -f nextcloud/cron.php** (replace www-data with your httpd user)
* Check your **data/nextcloud.log** for errors
* Check if the cronjob is ever executed by placing an **error_log('updating');** in the [background job file](https://github.com/nextcloud/news/blob/master/lib/Service/UpdaterService.php#L55). If the cronjob runs, there should be an updating log statement in your httpd log.
* If there is no **updating** statement in your logs check if your cronjob is executed by executing a different script
* Check if the **oc_jobs** table has a **reserved_at** entry with a value other than 0. If it does for whatever reason, set it to 0. You can check this by executing:
```sql
SELECT * from oc_jobs WHERE class LIKE '%News%' ORDER BY id;
```
You will get two rows where column `class`will be `OCA\News\Cron\Updater` and `OCA\News\Cron\UpdaterJob`.
Reset the `reserved_at` by executing
```sql
UPDATE oc_jobs SET reserved_at = 0 WHERE id = <id from above SELECT statement>;
```
* If your cron works fine, but Nextcloud's cronjobs are never executed, file a bug in [server](https://github.com/nextcloud/server/)
### External Updater
* Check if your configuration is set to **not** use the system cron.
* Consult the documentation of the updater
* Check your **data/nextcloud.log** for errors
## Adding feeds that use self-signed certificates
If you want to add a feed that uses a self-signed certificate that is not signed by a trusted CA the request will fail with "SSL certificate is invalid". A common solution is to turn off the certificate verification **which is wrong** and **makes your installation vulnerable to MITM attacks**. Therefore **turning off certificate verification is not supported**.
If you have control over the feed in question, consider signing your certificate for free on one of the following providers:
* [Let's Encrypt](https://letsencrypt.org/)
* [ZeroSSL](https://zerossl.com/)
If you do not have control over the chosen feed, you should [download the certificate from the feed's website](https://superuser.com/questions/97201/how-to-save-a-remote-server-ssl-certificate-locally-as-a-file) and [add it to your server's trusted certificates](https://www.onlinesmartketer.com/2009/06/23/curl-adding-installing-trusting-new-self-signed-certificate/). The exact procedure however may vary depending on your distribution.
## Is There An Subscription URL To Easily Subscribe To Feeds
By appending **?subscribe_to=SOME_URL** to your News app URL, you can launch the News app with a pre-filled URL, e.g.:
https://yourdomain.com/nextcloud/index.php/apps/news?subscribe_to=https://github.com/nextcloud/news/releases
## 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
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.
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.
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
`autoPurgeCount` is used.
The purge count only applies to the items that are purged. For example, when purging a feed that has 100 unread items, 100 starred read
items and 100 unstarred read items, using a `purge-count` of 50 would keep all unread and starred items and the latest 50 read items. Using
a `purge-count` of 50 along with `--purge-unread` would keep the all starred items plus the latest 50 from the set of unread and read items.
## Missing 4-byte support SQLSTATE[22007]: Invalid datetime format: 1366 Incorrect string value: ...
This is likely caused by your feed using emojis in the feed title or text.
The DB is then not able to store the feed and runs into strange decoding errors.
You need to convert your DB to support 4 bytes, check the [Nextcloud documentation](https://docs.nextcloud.com/server/stable/admin_manual/configuration_database/mysql_4byte_support.html).
References [#1165](https://github.com/nextcloud/news/issues/1165) [#526](https://github.com/nextcloud/news/issues/526)

View File

@ -0,0 +1,30 @@
# Integrations
## Is There An Subscription URL To Easily Subscribe To Feeds?
By appending `/index.php/apps/news?subscribe_to=SOME_RSS_URL` to your NextCloud base path URL, you can launch the News app with a pre-filled URL, e.g.:
Ex.
https://yourdomain.com/nextcloud/index.php/apps/news?subscribe_to=https://github.com/nextcloud/news/releases
### Known Working Integrations
#### Chrome / Edge
1. Install [RSS Subscription Extension (by Google)](https://chrome.google.com/webstore/detail/rss-subscription-extensio/nlbjncdgjeocebhnmkbbbdekmmmcbfjd) extension
1. Open the extension's options menu
1. Click `Add..`
1. In the *Description* field, enter a description for the RSS reader entry. 'NextCloud News' is a reasonable name.
1. Enter `https://<NEXTCLOUD_BASE_PATH>/index.php/apps/news?subscribe_to=%s` replacing &lt;NEXTCLOUD_BASE_PATH&gt; with the base URL path to your NextCloud instance.
* Domain based example: https://cloud.mydomain.com/index.php/apps/news?subscribe_to=%s
* Domain+subpath based example: https://cloud.mydomain.com/nextcloud/index.php/apps/news?subscribe_to=%s
#### Firefox
1. Install Firefox Add-on Extension [Awesome RSS](https://addons.mozilla.org/en-US/firefox/addon/awesome-rss/)
1. Open the `Preferences` for the extension
2. In the 'Subscribe using' section, select the `NextCloud` radio button
3. In the field link field, enter the base NextCloud URL.
* Domain based example: https://cloud.mydomain.com/
* Domain+subpath based example: https://cloud.mydomain.com/nextcloud/

View File

@ -21,7 +21,7 @@ You also need some PHP extensions:
* MySQL >= 8.0
* SQLite (discouraged)
Also see the [Nextcloud documentation](https://docs.nextcloud.com/server/stable/admin_manual/configuration_database/linux_database_configuration.html?highlight=database). Oracle is currently not supported by news.
Also see the [Nextcloud documentation](https://docs.nextcloud.com/server/stable/admin_manual/configuration_database/linux_database_configuration.html?highlight=database). Oracle is currently not supported by News.
## Performance Notices
* Use MySQL/MariaDB or PostgreSQL for better database performance
@ -108,8 +108,8 @@ If you changed the temporary directory for Nextcloud you need to check on your o
Careful, this next part is only intended for admins, that know what they are doing.
To remove the tables from the DB we drop the tables of news.
Your installation might have a different prefix then `oc_` but it is the default in most installations.
To remove the tables from the DB we drop the tables of News.
Your installation might have a different prefix than `oc_` but it is the default in most installations.
Connect to your DB and execute the commands. Don't forget to switch to the right database.
For example in mysql: `use nextcloud;`
@ -140,4 +140,4 @@ DELETE FROM oc_jobs WHERE class='OCA\\News\\Cron\\Updater';
DELETE FROM oc_jobs WHERE argument='["OCA\\\\News\\\\Cron\\\\Updater","run"]';
```
Now nothing is left from news in your nextcloud installation.
Now nothing is left from News in your nextcloud installation.

97
docs/troubleshooting.md Normal file
View File

@ -0,0 +1,97 @@
# Troubleshooting
This is a brief list of common issues that come up with NextCloud News.
## My browser shows a mixed content warning (Connection is Not Secure)
If you are serving your Nextcloud over HTTPS your browser will very likely warn you with a yellow warnings sign about your connection not being secure.
* Chrome will show no green HTTPS lock sign.
* Firefox will show you the following image Mixed Passive Content ![Mixed Content Type](https://ffp4g1ylyit3jdyti1hqcvtb-wpengine.netdna-ssl.com/security/files/2015/10/mixed-passive-click1-600x221.png)
Note that this warning **is not red and won't block the page like the following images** which signal a serious issue:
* Chrome ![Chrome error](https://www.inmotionhosting.com/support/images/stories/website/errors/ssl/chrome-self-signed-ssl-warning.png)
* Firefox ![Firefox error](https://www.howtogeek.com/wp-content/uploads/2014/02/650x367xchrome-mixed-content-https-problem.png.pagespeed.gp+jp+jw+pj+js+rj+rp+rw+ri+cp+md.ic.r_lQiZiq38.png)
### What is the cause of the (yellow) error message?
This warning is caused by mixed passive content and means that your page loads passive resources from non HTTPS resources, such as:
* Images
* Video/Audio
* Some Ads
This allows a possible attacker to perform a MITM (man-in-the-middle) attack by serving you different images or audio/video.
### Why doesn't the News app fix it?
The News app fully prevents mixed **active** content by only allowing HTTPS iframes from known locations; other possible mixed active content elements such as &lt;script\&gt; are stripped from the feed. Because images and audio/video are an integral part of a feed, we can not simply strip them.
Since an attacker can not execute code in contrast to mixed active content, but only replace images/audio/video in your feed reader, this is **not considered to be a security issue**. If, for whatever reason (e.g. feed which would allow fishing), this is a security problem for you, contact the specific feed provider and ask him to serve his feed content over HTTPS.
### 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.
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.
Because we care about our users' security and don't want to hide security warnings, we won't fix (aka silence) this issue.
The only fix for this issue is that feed providers serve their content over HTTPS.
## I am getting: Exception: Some\Class does not exist errors in my nextcloud.log
This is very often caused by missing or old files, e.g. by failing to upload all the News app files or errors during installation. Before you report a bug, please recheck if all files from the archive are in place and accessible.
## Feeds not updated
Feeds can be updated using Nextcloud's system cron or an external updater via the API. **The feed update is not run in Webcron and AJAX cron mode!**
### Validating Using System Cron
* Check if you are using the system cron (Cron) setting on the admin page. AJAX and Web cron will not update feeds
* Check if the cronjob exists with crontab -u www-data -e (replace www-data with your httpd user)
* Check the file permissions of the cron.php file and if www-data (or whatever your httpd user is called like) can read and execute that script
* Check if you can execute the cron with sudo -u www-data php -f nextcloud/cron.php (replace www-data with your httpd user)
* Check your data/nextcloud.log for errors
* Check if the cronjob is ever executed by placing an error_log('updating'); in the background job file. If the cronjob runs, there should be an updating log statement in your httpd log.
* If there is no updating statement in your logs check if your cronjob is executed by executing a different script
* Check if the oc_jobs table has a reserved_at entry with a value other than 0. If it does for whatever reason, set it to 0. You can check this by executing:
#### Info
* In newer versions of News (21.x.x) the old job OCA\News\Cron\Updater was removed from the DB.
Reset the reserved_at by executing:
sql UPDATE oc_jobs SET reserved_at = 0 WHERE id = < id from above SELECT statement > ;
If your cron works fine, but Nextcloud's cronjobs are never executed, file a bug in [server](https://github.com/nextcloud/server/).
### Using External Updater
* Check if your configuration is set to not use the system cron.
* Consult the documentation of the updater
* Check your data/nextcloud.log for errors
## 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 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. 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.
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 `autoPurgeCount` is used.
The purge count only applies to the items that are purged. For example, when purging a feed that has 100 unread items, 100 starred read items and 100 unstarred read items, using a purge-count of 50 would keep all unread and starred items and the latest 50 read items. Using a `purge-count` of 50 along with `--purge-unread` would keep the all starred items plus the latest 50 from the set of unread and read items.
## Missing 4-byte support SQLSTATE[22007]: Invalid datetime format: 1366 Incorrect string value: ...
This is likely caused by your feed using emojis in the feed title or text.
The DB is then not able to store the feed and runs into strange decoding errors.
You need to convert your DB to support 4 bytes, check the [Nextcloud documentation](https://docs.nextcloud.com/server/stable/admin_manual/configuration_database/mysql_4byte_support.html).
References [#1165](https://github.com/nextcloud/news/issues/1165) [#526](https://github.com/nextcloud/news/issues/526)

View File

@ -7,7 +7,7 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
app.directive('newsStickyMenu', function () {
app.directive('newsStickyMenu', function (NC_MAJOR_VERSION) {
'use strict';
return function (scope, elem, attr) {
@ -18,7 +18,9 @@ app.directive('newsStickyMenu', function () {
if (scrollHeight > height) {
elem.addClass('fixed');
elem.css('top', scrollHeight);
if (NC_MAJOR_VERSION < 25) {
elem.css('top', scrollHeight);
}
} else {
elem.removeClass('fixed');
}

View File

@ -259,10 +259,10 @@
var openLink = function () {
onActiveItem(function (item) {
item.trigger('click'); // mark read
var url = item.find('.external:visible').attr('href');
var newWindow = window.open(url, '_blank');
newWindow.opener = null;
setTimeout(()=>item.trigger('click'), 0); // mark read
});
};

View File

@ -1,45 +1,138 @@
OC.L10N.register(
"news",
{
"Unread articles" : "مقال غير مقروء",
"Request failed, network connection unavailable!" : "فشل الطلب، لا يوجد اتصال بالشبكة!",
"Request unauthorized. Are you logged in?" : "طلب غير مصرح به. هل قمت بتسجيل الدخول؟",
"Request forbidden. Are you an administrator?" : "طلب مرفوض. هل أنت مُشرف؟",
"Token expired or app not enabled! Reload the page!" : "انتهت صلاحية الأَمَارة token، أو أن التطبيق لم يتم تمكينه! حمّل الصفحة من جديد!",
"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!" : "فشل الطلب. نكست كلاود تحت فى حالة صيانة الآن!",
"News feeds" : "تغذية الأخبار News Feeds",
"Unread articles" : "مقالات غير مقروءة",
"News" : "الأخبار",
"News folders" : "مُجلّدات الأخبار",
"News articles" : "مقالات الأخبار",
"Shared with me" : "تمّت مُشاركته معي",
"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 لـ Nextcloud\n\n- 📲 قم بمزامنة خلاصاتك مع [عملاء] أجهزة محمولة أو سطح مكتب متعددة (https://nextcloud.github.io/news/clients/) \n- تحديثات تلقائية لخلاصات الأخبار الخاصة بك \n\n- 🆓 مصدر مجاني ومفتوح بموجب AGPLv3 ، لا توجد إعلانات \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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "آخر مهمة job جرت في {relativeTime}. يبدو أن هنالك خطأً ما.",
"Last job ran {relativeTime}." : "آخر مهمة JOB جرت في {relativeTime}.",
"Use system cron for updates" : "للتحديثات، استخدم مُجدول مهام الخلفية cron",
"Disable this if you use a custom updater." : "أوقف هذا إذا كنت تستخدم محدّثاً مُخصّصاً custom updater.",
"Maximum read count per feed" : "الحد الأقصى لعدّاد القراءة لكل إلقام 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" : "الحد الأقصى لعمليات إعادة التوجيه",
"How many redirects the feed fetcher should follow." : "كم إعادة توجيه redirect يجب على جالب التغذية feed fetcher أن يتّبعها.",
"Feed fetcher timeout" : "مهلة جالب التغذية feed fetcher",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "العدد الأقصى للثواني لانتظار تحميل موجز RSS أو Atom> إذا استغرق الأمر وقتًا أطول، فسيتم إنهاء عملية التحديث.",
"Explore Service URL" : "استكشاف عنوان 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" : "الفترة الفاصلة بين التحدياث",
"Interval in seconds in which the feeds will be updated." : "الفترة الفاصلة بين تحديثات التغذية بالثواني",
"Successfully updated news configuration" : "تمّ بنجاحٍ تحديث تهيئة الأخبار",
"Unable to update news config" : "تعذّر تحديث تهيئة الأخبار",
"Download" : "تنزيل",
"Close" : "إغلاق",
"Subscribe to" : "إشترك في",
"No articles available" : "لا توجد مقالات متاحة",
"No unread articles available" : "لا توجد مقالات أخرى غير مقروءة ",
"Open website" : "فتح الموقع",
"Star article" : "مقال مميز بنجمة",
"Unstar article" : "تراجع عن تمييز المقال بنجمة",
"Keep article unread" : "إبقاء المقالة غير مقروءة",
"Remove keep article unread" : "إلغاء إبقاء المقالة الحالية غير مقروءة",
"Share" : "مشاركة",
"Share with users" : "مشاركة مع مستخدمين",
"Username" : "إسم المستخدم",
"by" : "من قبل",
"No users found" : "لا يوجد مستخدمون",
"Error while searching for users" : "خطأ وقع أثناء البحث عن مستخدمين",
"Share on social media" : "البحث في وسائط التواصل الاجتماعي",
"I wanted you to see this article" : "أريدك أن تطّلع على هذا المقال",
"Check out this article" : "أنظر هذا المقال",
"by" : "من قِبَل",
"from" : "من",
"shared by" : "مُشاركة من",
"Play audio" : "تشغيل الصوت",
"Download audio" : "تنزيل الصوت",
"Download video" : "تنزيل الفيديو",
"Keyboard shortcut" : "إختصار لوحة المفاتيح",
"Description" : "وصف",
"right" : "يمين",
"Jump to next article" : "الانتقال إلي المقالة التالية",
"left" : "يسار",
"Jump to previous article" : "الانتقال إلي المقالة السابقة",
"Toggle star article" : "تبديل/إلغاء تمييز المقال بنجمة",
"Star article and jump to next one" : "ضع علامة نجمة علي المقال وانتقل إلي المقال التالي",
"Toggle keep current article unread" : "تبديل لإبقاء المقالة الحالية غير مقروءة",
"Open article in new tab" : "افتح المقال في تبويب جديد",
"Toggle expand article in compact view" : "تبديل توسيع المقالة من / إلي العرض المضغوط",
"Refresh" : "تحديث",
"Load next feed" : "تحميل الوجبة الإخبارية feed التالية",
"Load previous feed" : "تحميل الوجبة الإخبارية feed السابقة",
"Load previous folder" : "تحميل المجلد السابق",
"Load next folder" : "تحميل المجلد التالي",
"Scroll to active navigation entry" : "انتقل إلى مدخل التصفح النشط",
"Mark current article's feed/folder read" : "تمييز الوجبة الإخبارية أو مجلد المقالات الحالي كمقروء",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "تمّ اكتشاف وضعية Ajax أو webcron! سوف لن يتم تحديث تغذيتك الإخبارية feed!",
"How to set up the operating system cron" : "كيفية تنصيب النظام cron",
"Install and set up a faster parallel updater that uses the News app's update API" : "تثبيت وإعداد محدث مواز أسرع يستخدم التطبيقات الجديدة لتحديث واجهة برمجة التطبيقات \"API\"",
"Subscribe" : "إشترك subscribe",
"Web address" : "عنوان ويب",
"Feed exists already!" : "الوجبة الإخبارية موجود بالفعل!",
"Folder" : "مجلد",
"No folder" : "لا يوجد مجلد",
"New folder" : "مجلد جديد",
"Folder name" : "اسم المجلد",
"Go back" : "العودة",
"Credentials" : "Credentials",
"Password" : "كلمة السر",
"Go back" : "عودة",
"Folder exists already!" : "المجلد موجود بالفعل",
"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 دون تشفير! بحيث يتمكن كل شخص لديه حق الوصول إلى الخادوم أو قاعدة البيانات من الوصول إليها!",
"Password" : "كلمة المرور",
"Auto discover Feed" : "تغذية الاستكشاف الآلي",
"New Folder" : "مجلد جديد",
"Create" : "انشئ",
"Create" : "أنشيء",
"Explore" : "إستكشف",
"Update failed more than 50 times" : "فشل التحديث لأكثر من 50 مرة",
"Deleted feed" : "حذف الوجبة الإخبارية",
"Undo delete feed" : "التراجع عن حذف الوجبة الإخبارية",
"Rename" : "إعادة التسمية",
"Menu" : "القائمة ",
"Mark read" : "عيّن أنه تمت القراءة",
"Unpin from top" : "إلغ التثبيت في الأعلى",
"Pin to top" : "ثبتّ في الأعلى",
"Newest first" : "الأحدث أولا",
"Oldest first" : "الأقدم أولا",
"Default order" : "الترتيب التلقائي",
"Enable full text" : "تمكين النص الكامل",
"Disable full text" : "إلغاء تمكني النص الكامل",
"Unread updated" : "تحديثات غير مقرؤة",
"Ignore updated" : "تجاهل التحديثات",
"Open feed URL" : "إفتح عنوان URL صفحة التغذية",
"Delete" : "حذف ",
"Dismiss" : "تراجع",
"Collapse" : "طوي",
"Starred" : "معلّم بنجمة.",
"Deleted folder" : "حذف المجلد",
"Undo delete folder" : "التراجع عن حذف المجلد",
"Starred" : "معلّم بنجمة",
"All articles" : "جميع المقالات",
"Settings" : "إعدادات",
"Disable mark read through scrolling" : "تعطيل علامة القراءة من خلال التمرير",
"Compact view" : "العرض المضغوط",
"Expand articles on key navigation" : "توسيع المقالات في مفتاح التصفح",
"Show all articles" : "أظهر جميع المواضيع",
"Reverse ordering (oldest on top)" : "عكس الترتيب (الأقدم بالأعلي)",
"Subscriptions (OPML)" : "اشتراك (OPML)",
"Import" : "إدخال",
"Export" : "تصدير",
"Unread/Starred Articles" : "مقالات غير مقروءه/نجمة ",
"Error when importing: File does not contain valid OPML" : "خطأ أثناء الاستيراد: الملف لا يحوي OPML صحيح",
"Error when importing: OPML is does neither contain feeds nor folders" : "خطأ عند الاستيراد: لا يحتوي ملف OPML على وجبة إخبارية أو مجلدات",
"Unread/Starred Articles" : "مقالات غير مقروءة أو مُميّزة بنجمة ",
"Error when importing: file does not contain valid JSON" : "خطا عند الاستيراد: الملف لايحتوي على OPML صالح",
"Help" : "المساعدة",
"Keyboard shortcuts" : "اختصارات لوحة المفاتيح",
"Documentation" : "التوثيق",
"Report a bug" : "الإبلاغ عن عِلّة"
"Report a bug" : "الإبلاغ عن خطأ"
},
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");

View File

@ -1,43 +1,136 @@
{ "translations": {
"Unread articles" : "مقال غير مقروء",
"Request failed, network connection unavailable!" : "فشل الطلب، لا يوجد اتصال بالشبكة!",
"Request unauthorized. Are you logged in?" : "طلب غير مصرح به. هل قمت بتسجيل الدخول؟",
"Request forbidden. Are you an administrator?" : "طلب مرفوض. هل أنت مُشرف؟",
"Token expired or app not enabled! Reload the page!" : "انتهت صلاحية الأَمَارة token، أو أن التطبيق لم يتم تمكينه! حمّل الصفحة من جديد!",
"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!" : "فشل الطلب. نكست كلاود تحت فى حالة صيانة الآن!",
"News feeds" : "تغذية الأخبار News Feeds",
"Unread articles" : "مقالات غير مقروءة",
"News" : "الأخبار",
"News folders" : "مُجلّدات الأخبار",
"News articles" : "مقالات الأخبار",
"Shared with me" : "تمّت مُشاركته معي",
"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 لـ Nextcloud\n\n- 📲 قم بمزامنة خلاصاتك مع [عملاء] أجهزة محمولة أو سطح مكتب متعددة (https://nextcloud.github.io/news/clients/) \n- تحديثات تلقائية لخلاصات الأخبار الخاصة بك \n\n- 🆓 مصدر مجاني ومفتوح بموجب AGPLv3 ، لا توجد إعلانات \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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "آخر مهمة job جرت في {relativeTime}. يبدو أن هنالك خطأً ما.",
"Last job ran {relativeTime}." : "آخر مهمة JOB جرت في {relativeTime}.",
"Use system cron for updates" : "للتحديثات، استخدم مُجدول مهام الخلفية cron",
"Disable this if you use a custom updater." : "أوقف هذا إذا كنت تستخدم محدّثاً مُخصّصاً custom updater.",
"Maximum read count per feed" : "الحد الأقصى لعدّاد القراءة لكل إلقام 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" : "الحد الأقصى لعمليات إعادة التوجيه",
"How many redirects the feed fetcher should follow." : "كم إعادة توجيه redirect يجب على جالب التغذية feed fetcher أن يتّبعها.",
"Feed fetcher timeout" : "مهلة جالب التغذية feed fetcher",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "العدد الأقصى للثواني لانتظار تحميل موجز RSS أو Atom> إذا استغرق الأمر وقتًا أطول، فسيتم إنهاء عملية التحديث.",
"Explore Service URL" : "استكشاف عنوان 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" : "الفترة الفاصلة بين التحدياث",
"Interval in seconds in which the feeds will be updated." : "الفترة الفاصلة بين تحديثات التغذية بالثواني",
"Successfully updated news configuration" : "تمّ بنجاحٍ تحديث تهيئة الأخبار",
"Unable to update news config" : "تعذّر تحديث تهيئة الأخبار",
"Download" : "تنزيل",
"Close" : "إغلاق",
"Subscribe to" : "إشترك في",
"No articles available" : "لا توجد مقالات متاحة",
"No unread articles available" : "لا توجد مقالات أخرى غير مقروءة ",
"Open website" : "فتح الموقع",
"Star article" : "مقال مميز بنجمة",
"Unstar article" : "تراجع عن تمييز المقال بنجمة",
"Keep article unread" : "إبقاء المقالة غير مقروءة",
"Remove keep article unread" : "إلغاء إبقاء المقالة الحالية غير مقروءة",
"Share" : "مشاركة",
"Share with users" : "مشاركة مع مستخدمين",
"Username" : "إسم المستخدم",
"by" : "من قبل",
"No users found" : "لا يوجد مستخدمون",
"Error while searching for users" : "خطأ وقع أثناء البحث عن مستخدمين",
"Share on social media" : "البحث في وسائط التواصل الاجتماعي",
"I wanted you to see this article" : "أريدك أن تطّلع على هذا المقال",
"Check out this article" : "أنظر هذا المقال",
"by" : "من قِبَل",
"from" : "من",
"shared by" : "مُشاركة من",
"Play audio" : "تشغيل الصوت",
"Download audio" : "تنزيل الصوت",
"Download video" : "تنزيل الفيديو",
"Keyboard shortcut" : "إختصار لوحة المفاتيح",
"Description" : "وصف",
"right" : "يمين",
"Jump to next article" : "الانتقال إلي المقالة التالية",
"left" : "يسار",
"Jump to previous article" : "الانتقال إلي المقالة السابقة",
"Toggle star article" : "تبديل/إلغاء تمييز المقال بنجمة",
"Star article and jump to next one" : "ضع علامة نجمة علي المقال وانتقل إلي المقال التالي",
"Toggle keep current article unread" : "تبديل لإبقاء المقالة الحالية غير مقروءة",
"Open article in new tab" : "افتح المقال في تبويب جديد",
"Toggle expand article in compact view" : "تبديل توسيع المقالة من / إلي العرض المضغوط",
"Refresh" : "تحديث",
"Load next feed" : "تحميل الوجبة الإخبارية feed التالية",
"Load previous feed" : "تحميل الوجبة الإخبارية feed السابقة",
"Load previous folder" : "تحميل المجلد السابق",
"Load next folder" : "تحميل المجلد التالي",
"Scroll to active navigation entry" : "انتقل إلى مدخل التصفح النشط",
"Mark current article's feed/folder read" : "تمييز الوجبة الإخبارية أو مجلد المقالات الحالي كمقروء",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "تمّ اكتشاف وضعية Ajax أو webcron! سوف لن يتم تحديث تغذيتك الإخبارية feed!",
"How to set up the operating system cron" : "كيفية تنصيب النظام cron",
"Install and set up a faster parallel updater that uses the News app's update API" : "تثبيت وإعداد محدث مواز أسرع يستخدم التطبيقات الجديدة لتحديث واجهة برمجة التطبيقات \"API\"",
"Subscribe" : "إشترك subscribe",
"Web address" : "عنوان ويب",
"Feed exists already!" : "الوجبة الإخبارية موجود بالفعل!",
"Folder" : "مجلد",
"No folder" : "لا يوجد مجلد",
"New folder" : "مجلد جديد",
"Folder name" : "اسم المجلد",
"Go back" : "العودة",
"Credentials" : "Credentials",
"Password" : "كلمة السر",
"Go back" : "عودة",
"Folder exists already!" : "المجلد موجود بالفعل",
"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 دون تشفير! بحيث يتمكن كل شخص لديه حق الوصول إلى الخادوم أو قاعدة البيانات من الوصول إليها!",
"Password" : "كلمة المرور",
"Auto discover Feed" : "تغذية الاستكشاف الآلي",
"New Folder" : "مجلد جديد",
"Create" : "انشئ",
"Create" : "أنشيء",
"Explore" : "إستكشف",
"Update failed more than 50 times" : "فشل التحديث لأكثر من 50 مرة",
"Deleted feed" : "حذف الوجبة الإخبارية",
"Undo delete feed" : "التراجع عن حذف الوجبة الإخبارية",
"Rename" : "إعادة التسمية",
"Menu" : "القائمة ",
"Mark read" : "عيّن أنه تمت القراءة",
"Unpin from top" : "إلغ التثبيت في الأعلى",
"Pin to top" : "ثبتّ في الأعلى",
"Newest first" : "الأحدث أولا",
"Oldest first" : "الأقدم أولا",
"Default order" : "الترتيب التلقائي",
"Enable full text" : "تمكين النص الكامل",
"Disable full text" : "إلغاء تمكني النص الكامل",
"Unread updated" : "تحديثات غير مقرؤة",
"Ignore updated" : "تجاهل التحديثات",
"Open feed URL" : "إفتح عنوان URL صفحة التغذية",
"Delete" : "حذف ",
"Dismiss" : "تراجع",
"Collapse" : "طوي",
"Starred" : "معلّم بنجمة.",
"Deleted folder" : "حذف المجلد",
"Undo delete folder" : "التراجع عن حذف المجلد",
"Starred" : "معلّم بنجمة",
"All articles" : "جميع المقالات",
"Settings" : "إعدادات",
"Disable mark read through scrolling" : "تعطيل علامة القراءة من خلال التمرير",
"Compact view" : "العرض المضغوط",
"Expand articles on key navigation" : "توسيع المقالات في مفتاح التصفح",
"Show all articles" : "أظهر جميع المواضيع",
"Reverse ordering (oldest on top)" : "عكس الترتيب (الأقدم بالأعلي)",
"Subscriptions (OPML)" : "اشتراك (OPML)",
"Import" : "إدخال",
"Export" : "تصدير",
"Unread/Starred Articles" : "مقالات غير مقروءه/نجمة ",
"Error when importing: File does not contain valid OPML" : "خطأ أثناء الاستيراد: الملف لا يحوي OPML صحيح",
"Error when importing: OPML is does neither contain feeds nor folders" : "خطأ عند الاستيراد: لا يحتوي ملف OPML على وجبة إخبارية أو مجلدات",
"Unread/Starred Articles" : "مقالات غير مقروءة أو مُميّزة بنجمة ",
"Error when importing: file does not contain valid JSON" : "خطا عند الاستيراد: الملف لايحتوي على OPML صالح",
"Help" : "المساعدة",
"Keyboard shortcuts" : "اختصارات لوحة المفاتيح",
"Documentation" : "التوثيق",
"Report a bug" : "الإبلاغ عن عِلّة"
"Report a bug" : "الإبلاغ عن خطأ"
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
}

View File

@ -1,97 +1,16 @@
OC.L10N.register(
"news",
{
"Request failed, network connection unavailable!" : "Falló la solicitú, ¡conexón de rede non disponible!",
"Request unauthorized. Are you logged in?" : "Solicitú non autorizada. ¿Aniciesti sesión?",
"Token expired or app not enabled! Reload the page!" : "¡Token caducáu o l'aplicación nun ta activada! ¡Recarga la páxina!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Fallu internu del sirvidor! Comprueba'l ficheru de rexistru en data/nextcloud.log pa más información",
"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",
"News" : "Anuncies",
"Maximum read count per feed" : "Númberu máximu de llectura per feed",
"Maximum redirects" : "Redirecciones máximes",
"Feed fetcher timeout" : "Tiempo escosao p'algamar el feed",
"Explore Service URL" : "Esplorar URL del serviciu",
"Download" : "Descargar",
"Close" : "Zarrar",
"No articles available" : "Nun hai artículos disponibles",
"No unread articles available" : "Nun hai artículios ensin lleer disponibles",
"Open website" : "Abrir sitiu web",
"Star article" : "Artículu favoritu",
"Unstar article" : "Artículu non destacáu",
"Keep article unread" : "Caltener artículu ensín lleer",
"Remove keep article unread" : "Desaniciar artículu ensín lleer",
"Share" : "Share",
"Username" : "Nome d'usuariu",
"by" : "por",
"from" : "Dende",
"Play audio" : "Reproducir audiu",
"Download audio" : "Descargar audiu",
"Download video" : "Descargar video",
"Keyboard shortcut" : "Atayu de tecláu",
"Download" : "Baxar",
"Description" : "Descripción",
"right" : "Derecha",
"Jump to next article" : "Salta a l'artículu siguiente",
"left" : "esquierda",
"Jump to previous article" : "Salta a l'artículu previu",
"Toggle star article" : "Marcar como favoritu",
"Toggle keep current article unread" : "Marcar como non lleíu",
"Open article in new tab" : "Abre l'artículu nuna pestaña nueva",
"Toggle expand article in compact view" : "Espandir artículu en vista compacta",
"Refresh" : "Anovar",
"Load next feed" : "Carga'l siguiente feed",
"Load previous feed" : "Carga'l feed anterior",
"Load previous folder" : "Carga'l direutoriu anterior",
"Load next folder" : "Carga'l siguiente direutoriu",
"Scroll to active navigation entry" : "Movese hasta la entrada de navegación activa",
"Mark current article's feed/folder read" : "Marcar tolos articulos actuales como lleíos",
"How to set up the operating system cron" : "Cómo configurar el cron del sistema operativu",
"Install and set up a faster parallel updater that uses the News app's update API" : "Instalar y configurar un actualizador más rápidu paralelu qu'utilice l'API d'actualización de l'aplicación Noticies",
"Subscribe" : "Soscríbete",
"Web address" : "Direición web",
"Feed exists already!" : "¡Esti feed yá esiste!",
"Folder" : "Carpeta",
"No folder" : "Ensín carpeta",
"New folder" : "Carpeta nueva",
"Folder name" : "Nome de la carpeta",
"Go back" : "Atrás",
"Folder exists already!" : "¡La carpeta yá esiste!",
"Credentials" : "Credenciales",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "¡Les credenciales d'autenticación básica d'HTTP tienen de ser almacenaos ensin encriptar! ¡Cualesquier que pueda aportar al sirvidor o base de datos va ser capaz d'aportar a ellos!",
"Password" : "Contraseña",
"New Folder" : "Carpeta nueva",
"Create" : "Crear",
"Explore" : "Esplorar",
"Update failed more than 50 times" : "L'actualización falló más de 50 vegaes",
"Deleted feed" : "Desaniciar feed",
"Undo delete feed" : "Desfacer desaniciu del feed",
"Rename" : "Renomar",
"Menu" : "Menú",
"Unpin from top" : "Defixar de lo cimero",
"Newest first" : "Lo más nuevo",
"Oldest first" : "Lo más vieyo",
"Delete" : "Desaniciar",
"Dismiss" : "Encaboxar",
"Collapse" : "Contrayer",
"Deleted folder" : "Desaniciar carpeta",
"Undo delete folder" : "Desfacer desaniciu de la carpeta",
"Starred" : "Favoritos",
"All articles" : "Tolos artículos",
"Settings" : "Axustes",
"Disable mark read through scrolling" : "Deshabilita marcar como lleíu al desplazar",
"Compact view" : "Vista compauta",
"Expand articles on key navigation" : "Espandir los artículos al navegar con tecles",
"Show all articles" : "Amosar tolos artículos",
"Reverse ordering (oldest on top)" : "Ordenamientu inversu (el más antiguu na parte cimera)",
"Subscriptions (OPML)" : "Soscripciones (OPML)",
"Import" : "Importar",
"Export" : "Esportar",
"Error when importing: OPML is does neither contain feeds nor folders" : "Fallu al importar: OPML nun contién nin feeds nin carpetes",
"Unread/Starred Articles" : "Artículos Non lleíos y Favoritos",
"Error when importing: file does not contain valid JSON" : "Fallu al importar: el ficheru nun contién JSON válidu",
"Settings" : "Configuración",
"Help" : "Ayuda",
"Keyboard shortcuts" : "Atayos de tecláu",
"Documentation" : "Documentación",
"Report a bug" : "Informar un fallu"
"Documentation" : "Documentación"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,95 +1,14 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Falló la solicitú, ¡conexón de rede non disponible!",
"Request unauthorized. Are you logged in?" : "Solicitú non autorizada. ¿Aniciesti sesión?",
"Token expired or app not enabled! Reload the page!" : "¡Token caducáu o l'aplicación nun ta activada! ¡Recarga la páxina!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Fallu internu del sirvidor! Comprueba'l ficheru de rexistru en data/nextcloud.log pa más información",
"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",
"News" : "Anuncies",
"Maximum read count per feed" : "Númberu máximu de llectura per feed",
"Maximum redirects" : "Redirecciones máximes",
"Feed fetcher timeout" : "Tiempo escosao p'algamar el feed",
"Explore Service URL" : "Esplorar URL del serviciu",
"Download" : "Descargar",
"Close" : "Zarrar",
"No articles available" : "Nun hai artículos disponibles",
"No unread articles available" : "Nun hai artículios ensin lleer disponibles",
"Open website" : "Abrir sitiu web",
"Star article" : "Artículu favoritu",
"Unstar article" : "Artículu non destacáu",
"Keep article unread" : "Caltener artículu ensín lleer",
"Remove keep article unread" : "Desaniciar artículu ensín lleer",
"Share" : "Share",
"Username" : "Nome d'usuariu",
"by" : "por",
"from" : "Dende",
"Play audio" : "Reproducir audiu",
"Download audio" : "Descargar audiu",
"Download video" : "Descargar video",
"Keyboard shortcut" : "Atayu de tecláu",
"Download" : "Baxar",
"Description" : "Descripción",
"right" : "Derecha",
"Jump to next article" : "Salta a l'artículu siguiente",
"left" : "esquierda",
"Jump to previous article" : "Salta a l'artículu previu",
"Toggle star article" : "Marcar como favoritu",
"Toggle keep current article unread" : "Marcar como non lleíu",
"Open article in new tab" : "Abre l'artículu nuna pestaña nueva",
"Toggle expand article in compact view" : "Espandir artículu en vista compacta",
"Refresh" : "Anovar",
"Load next feed" : "Carga'l siguiente feed",
"Load previous feed" : "Carga'l feed anterior",
"Load previous folder" : "Carga'l direutoriu anterior",
"Load next folder" : "Carga'l siguiente direutoriu",
"Scroll to active navigation entry" : "Movese hasta la entrada de navegación activa",
"Mark current article's feed/folder read" : "Marcar tolos articulos actuales como lleíos",
"How to set up the operating system cron" : "Cómo configurar el cron del sistema operativu",
"Install and set up a faster parallel updater that uses the News app's update API" : "Instalar y configurar un actualizador más rápidu paralelu qu'utilice l'API d'actualización de l'aplicación Noticies",
"Subscribe" : "Soscríbete",
"Web address" : "Direición web",
"Feed exists already!" : "¡Esti feed yá esiste!",
"Folder" : "Carpeta",
"No folder" : "Ensín carpeta",
"New folder" : "Carpeta nueva",
"Folder name" : "Nome de la carpeta",
"Go back" : "Atrás",
"Folder exists already!" : "¡La carpeta yá esiste!",
"Credentials" : "Credenciales",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "¡Les credenciales d'autenticación básica d'HTTP tienen de ser almacenaos ensin encriptar! ¡Cualesquier que pueda aportar al sirvidor o base de datos va ser capaz d'aportar a ellos!",
"Password" : "Contraseña",
"New Folder" : "Carpeta nueva",
"Create" : "Crear",
"Explore" : "Esplorar",
"Update failed more than 50 times" : "L'actualización falló más de 50 vegaes",
"Deleted feed" : "Desaniciar feed",
"Undo delete feed" : "Desfacer desaniciu del feed",
"Rename" : "Renomar",
"Menu" : "Menú",
"Unpin from top" : "Defixar de lo cimero",
"Newest first" : "Lo más nuevo",
"Oldest first" : "Lo más vieyo",
"Delete" : "Desaniciar",
"Dismiss" : "Encaboxar",
"Collapse" : "Contrayer",
"Deleted folder" : "Desaniciar carpeta",
"Undo delete folder" : "Desfacer desaniciu de la carpeta",
"Starred" : "Favoritos",
"All articles" : "Tolos artículos",
"Settings" : "Axustes",
"Disable mark read through scrolling" : "Deshabilita marcar como lleíu al desplazar",
"Compact view" : "Vista compauta",
"Expand articles on key navigation" : "Espandir los artículos al navegar con tecles",
"Show all articles" : "Amosar tolos artículos",
"Reverse ordering (oldest on top)" : "Ordenamientu inversu (el más antiguu na parte cimera)",
"Subscriptions (OPML)" : "Soscripciones (OPML)",
"Import" : "Importar",
"Export" : "Esportar",
"Error when importing: OPML is does neither contain feeds nor folders" : "Fallu al importar: OPML nun contién nin feeds nin carpetes",
"Unread/Starred Articles" : "Artículos Non lleíos y Favoritos",
"Error when importing: file does not contain valid JSON" : "Fallu al importar: el ficheru nun contién JSON válidu",
"Settings" : "Configuración",
"Help" : "Ayuda",
"Keyboard shortcuts" : "Atayos de tecláu",
"Documentation" : "Documentación",
"Report a bug" : "Informar un fallu"
"Documentation" : "Documentación"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,6 +2,7 @@ OC.L10N.register(
"news",
{
"Unread articles" : "Oxunulmamış məqalə",
"Last job ran {relativeTime}." : "Son işin icra vaxtı {relativeTime}.",
"Download" : "Yüklə",
"Close" : "Bağla",
"Share" : "Paylaş",
@ -30,6 +31,7 @@ OC.L10N.register(
"Unread/Starred Articles" : "Oxunulmamış/Ulduzlanmış məqalələr",
"Error when importing: file does not contain valid JSON" : "Yüklənmədə səhv: faylda düzgün JSON yoxdur",
"Help" : "Kömək",
"Documentation" : "Sənədlər"
"Documentation" : "Sənədlər",
"Report a bug" : "Səhv haqqında bildir"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,5 +1,6 @@
{ "translations": {
"Unread articles" : "Oxunulmamış məqalə",
"Last job ran {relativeTime}." : "Son işin icra vaxtı {relativeTime}.",
"Download" : "Yüklə",
"Close" : "Bağla",
"Share" : "Paylaş",
@ -28,6 +29,7 @@
"Unread/Starred Articles" : "Oxunulmamış/Ulduzlanmış məqalələr",
"Error when importing: file does not contain valid JSON" : "Yüklənmədə səhv: faylda düzgün JSON yoxdur",
"Help" : "Kömək",
"Documentation" : "Sənədlər"
"Documentation" : "Sənədlər",
"Report a bug" : "Səhv haqqında bildir"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Непрочетени статии",
"News" : "Новини",
"News folders" : "Нови папки",
"News articles" : "Новинарски статии",
"Shared with me" : "Споделено с мен",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Изпълнението на последното задание се изпълни за {relativeTime}. Нещо не е наред.",
"Last job ran {relativeTime}." : "Последната задача се изпълни {relativeTime}.",
"Use system cron for updates" : "Използване на системния cron за актуализации",
"Disable this if you use a custom updater." : "Деактивирайте това, ако използвате персонализирана програма за актуализиране.",
"Maximum read count per feed" : "Максимален брой прочитания на емисия",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Непрочетени статии",
"News" : "Новини",
"News folders" : "Нови папки",
"News articles" : "Новинарски статии",
"Shared with me" : "Споделено с мен",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Изпълнението на последното задание се изпълни за {relativeTime}. Нещо не е наред.",
"Last job ran {relativeTime}." : "Последната задача се изпълни {relativeTime}.",
"Use system cron for updates" : "Използване на системния cron за актуализации",
"Disable this if you use a custom updater." : "Деактивирайте това, ако използвате персонализирана програма за актуализиране.",
"Maximum read count per feed" : "Максимален брой прочитания на емисия",

View File

@ -3,15 +3,26 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "La sol·licitud ha fallat, la connexió de xarxa no està disponible!",
"Request unauthorized. Are you logged in?" : "Sol·licitud no autoritzada. Heu iniciat la sessió?",
"Request forbidden. Are you an administrator?" : "Petició prohibida. Ets administrador?",
"Token expired or app not enabled! Reload the page!" : "El Token està caducat o l'aplicació no està activada! Torneu a carregar la pàgina!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Error intern servidor! Consulteu el fitxer data/nextcloud.log per obtenir informació addicional!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "La sol·licitud ha fallat, Nextcloud és actualment en mode de manteniment!",
"News feeds" : "Fonts de notícies",
"Unread articles" : "Articles sense llegir",
"News" : "Notí­cies",
"News folders" : "Carpetes de notícies",
"News articles" : "Articles de notícies",
"Shared with me" : "Compartit amb mi",
"An RSS/Atom feed reader" : "Un lector de notícies 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)" : "📰 Una aplicació de lectura RSS/Atom Feed per a Nextcloud\n\n- 📲 Sincronitzeu els vostres canals amb diversos [clients] mòbils o d'escriptori (https://nextcloud.github.io/news/clients/)\n- 🔄 Actualitzacions automàtiques dels vostres canals de notícies\n- 🆓 Gratuït i de codi obert sota AGPLv3, sense anuncis ni funcions premium\n\n** Actualment es requereix el sistema Cron perquè aquesta aplicació funcioni**\n\nEls requisits es poden trobar [aquí] (https://nextcloud.github.io/news/install/#dependencies)\n\nEl registre de canvis està disponible [aquí] (https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreeu un [informe d'errors](https://github.com/nextcloud/news/issues/new/choose)\n\nCreeu una [sol·licitud de funció](https://github.com/nextcloud/news/discussions/new)\n\nInforma d'un [problema de feed] (https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "L'última execució del treball s'ha executat el dia {relativeTime}. Alguna cosa sembla malament.",
"Last job ran {relativeTime}." : "L'última tasca es va executar {relativeTime}.",
"Use system cron for updates" : "Feu servir el sistema cron per a les actualitzacions",
"Disable this if you use a custom updater." : "Desactiveu-ho si feu servir un actualitzador personalitzat.",
"Maximum read count per feed" : "Màxim nombre de lectures per font",
"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." : "Defineix la quantitat màxima d'articles que es poden llegir per canal que no s'eliminaran pel treball de neteja; si els articles antics reapareixen després de ser llegits, augmenta aquest valor; valors negatius com -1 desactivaran aquesta funció.",
"Delete unread articles automatically" : "Suprimeix automàticament els articles no llegits",
"Enable this if you also want to delete unread articles." : "Activeu-ho si també voleu suprimir articles no llegits.",
"Maximum redirects" : "Màxim de redirigits",
"How many redirects the feed fetcher should follow." : "Quantes redireccions hauria de suportar el descarregador de fonts.",
"Feed fetcher timeout" : "Temps d'espera exhaurit per a la descàrrega de la font",
@ -20,6 +31,8 @@ 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." : "En cas d'haver-se emplenat, la URL d'aquest servei serà consultada per mostrar les fonts de la secció explorar fonts. Per tornar al servei d'exploració integrat, deixi aquest camp buit.",
"Update interval" : "Interval d'actualització",
"Interval in seconds in which the feeds will be updated." : "Interval en segons en què s'actualitzaran les fonts de continguts.",
"Successfully updated news configuration" : "Configuració de notícies actualitzada correctament",
"Unable to update news config" : "No es pot actualitzar la configuració de notícies",
"Download" : "Baixa",
"Close" : "Tanca",
"Subscribe to" : "Subscriu a",
@ -31,9 +44,16 @@ OC.L10N.register(
"Keep article unread" : "Manté l'article com a no llegit",
"Remove keep article unread" : "Elimineu mantenir l'article no llegit",
"Share" : "Compartir",
"Share with users" : "Comparteix amb els usuaris",
"Username" : "Nom d'usuari",
"No users found" : "No s'ha trobat cap usuari",
"Error while searching for users" : "S'ha produït un error en cercar usuaris",
"Share on social media" : "Comparteix a les xarxes socials",
"I wanted you to see this article" : "Volia que vegis aquest article",
"Check out this article" : "Fes una ullada a aquest article",
"by" : "per",
"from" : "des de",
"shared by" : "compartit per",
"Play audio" : "Reprodueix l'àudio",
"Download audio" : "Descarrega l'àudio",
"Download video" : "Descarrega el vídeo",
@ -70,6 +90,7 @@ OC.L10N.register(
"Credentials" : "Credencials",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Les credencials dAutenticació Bàsica d'HTTP shan demmagatzemar sense xifrar. Tothom que tingui accés al servidor o a la base de dades hi podrà accedir!",
"Password" : "Contrasenya",
"Auto discover Feed" : "Font de descoberta automàtica",
"New Folder" : "Nova carpeta",
"Create" : "Crea",
"Explore" : "Explora",

View File

@ -1,15 +1,26 @@
{ "translations": {
"Request failed, network connection unavailable!" : "La sol·licitud ha fallat, la connexió de xarxa no està disponible!",
"Request unauthorized. Are you logged in?" : "Sol·licitud no autoritzada. Heu iniciat la sessió?",
"Request forbidden. Are you an administrator?" : "Petició prohibida. Ets administrador?",
"Token expired or app not enabled! Reload the page!" : "El Token està caducat o l'aplicació no està activada! Torneu a carregar la pàgina!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Error intern servidor! Consulteu el fitxer data/nextcloud.log per obtenir informació addicional!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "La sol·licitud ha fallat, Nextcloud és actualment en mode de manteniment!",
"News feeds" : "Fonts de notícies",
"Unread articles" : "Articles sense llegir",
"News" : "Notí­cies",
"News folders" : "Carpetes de notícies",
"News articles" : "Articles de notícies",
"Shared with me" : "Compartit amb mi",
"An RSS/Atom feed reader" : "Un lector de notícies 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)" : "📰 Una aplicació de lectura RSS/Atom Feed per a Nextcloud\n\n- 📲 Sincronitzeu els vostres canals amb diversos [clients] mòbils o d'escriptori (https://nextcloud.github.io/news/clients/)\n- 🔄 Actualitzacions automàtiques dels vostres canals de notícies\n- 🆓 Gratuït i de codi obert sota AGPLv3, sense anuncis ni funcions premium\n\n** Actualment es requereix el sistema Cron perquè aquesta aplicació funcioni**\n\nEls requisits es poden trobar [aquí] (https://nextcloud.github.io/news/install/#dependencies)\n\nEl registre de canvis està disponible [aquí] (https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreeu un [informe d'errors](https://github.com/nextcloud/news/issues/new/choose)\n\nCreeu una [sol·licitud de funció](https://github.com/nextcloud/news/discussions/new)\n\nInforma d'un [problema de feed] (https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "L'última execució del treball s'ha executat el dia {relativeTime}. Alguna cosa sembla malament.",
"Last job ran {relativeTime}." : "L'última tasca es va executar {relativeTime}.",
"Use system cron for updates" : "Feu servir el sistema cron per a les actualitzacions",
"Disable this if you use a custom updater." : "Desactiveu-ho si feu servir un actualitzador personalitzat.",
"Maximum read count per feed" : "Màxim nombre de lectures per font",
"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." : "Defineix la quantitat màxima d'articles que es poden llegir per canal que no s'eliminaran pel treball de neteja; si els articles antics reapareixen després de ser llegits, augmenta aquest valor; valors negatius com -1 desactivaran aquesta funció.",
"Delete unread articles automatically" : "Suprimeix automàticament els articles no llegits",
"Enable this if you also want to delete unread articles." : "Activeu-ho si també voleu suprimir articles no llegits.",
"Maximum redirects" : "Màxim de redirigits",
"How many redirects the feed fetcher should follow." : "Quantes redireccions hauria de suportar el descarregador de fonts.",
"Feed fetcher timeout" : "Temps d'espera exhaurit per a la descàrrega de la font",
@ -18,6 +29,8 @@
"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." : "En cas d'haver-se emplenat, la URL d'aquest servei serà consultada per mostrar les fonts de la secció explorar fonts. Per tornar al servei d'exploració integrat, deixi aquest camp buit.",
"Update interval" : "Interval d'actualització",
"Interval in seconds in which the feeds will be updated." : "Interval en segons en què s'actualitzaran les fonts de continguts.",
"Successfully updated news configuration" : "Configuració de notícies actualitzada correctament",
"Unable to update news config" : "No es pot actualitzar la configuració de notícies",
"Download" : "Baixa",
"Close" : "Tanca",
"Subscribe to" : "Subscriu a",
@ -29,9 +42,16 @@
"Keep article unread" : "Manté l'article com a no llegit",
"Remove keep article unread" : "Elimineu mantenir l'article no llegit",
"Share" : "Compartir",
"Share with users" : "Comparteix amb els usuaris",
"Username" : "Nom d'usuari",
"No users found" : "No s'ha trobat cap usuari",
"Error while searching for users" : "S'ha produït un error en cercar usuaris",
"Share on social media" : "Comparteix a les xarxes socials",
"I wanted you to see this article" : "Volia que vegis aquest article",
"Check out this article" : "Fes una ullada a aquest article",
"by" : "per",
"from" : "des de",
"shared by" : "compartit per",
"Play audio" : "Reprodueix l'àudio",
"Download audio" : "Descarrega l'àudio",
"Download video" : "Descarrega el vídeo",
@ -68,6 +88,7 @@
"Credentials" : "Credencials",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Les credencials dAutenticació Bàsica d'HTTP shan demmagatzemar sense xifrar. Tothom que tingui accés al servidor o a la base de dades hi podrà accedir!",
"Password" : "Contrasenya",
"Auto discover Feed" : "Font de descoberta automàtica",
"New Folder" : "Nova carpeta",
"Create" : "Crea",
"Explore" : "Explora",

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Nepřečtené články",
"News" : "Novinky",
"News folders" : "Složky novinek",
"News articles" : "Nové články",
"Shared with me" : "Sdíleno se mnou",
"An RSS/Atom feed reader" : "Čtečka RSS/Atom kanálů",
"📰 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Minulé vykonání úlohy bylo {relativeTime}. Zdá se, že něco není v pořádku.",
"Last job ran {relativeTime}." : "Úloha minule běžela {relativeTime}.",
"Use system cron for updates" : "Pro aktualizace používat 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.",
"Maximum read count per feed" : "Maximální počet načítaných novinek na kanál",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Nepřečtené články",
"News" : "Novinky",
"News folders" : "Složky novinek",
"News articles" : "Nové články",
"Shared with me" : "Sdíleno se mnou",
"An RSS/Atom feed reader" : "Čtečka RSS/Atom kanálů",
"📰 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Minulé vykonání úlohy bylo {relativeTime}. Zdá se, že něco není v pořádku.",
"Last job ran {relativeTime}." : "Úloha minule běžela {relativeTime}.",
"Use system cron for updates" : "Pro aktualizace používat 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.",
"Maximum read count per feed" : "Maximální počet načítaných novinek na kanál",

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Ungelesene Artikel",
"News" : "News",
"News folders" : "Neuigkeitenordner",
"News articles" : "Neue Artikel",
"Shared with me" : "Mit mir geteilt",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Der letzte Job lief {relativeTime}. Etwas scheint falsch zu sein.",
"Last job ran {relativeTime}." : "Der letzte Job lief {relativeTime}.",
"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.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Ungelesene Artikel",
"News" : "News",
"News folders" : "Neuigkeitenordner",
"News articles" : "Neue Artikel",
"Shared with me" : "Mit mir geteilt",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Der letzte Job lief {relativeTime}. Etwas scheint falsch zu sein.",
"Last job ran {relativeTime}." : "Der letzte Job lief {relativeTime}.",
"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.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",

View File

@ -3,7 +3,7 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Anfrage fehlgeschlagen, Netzwerkverbindung nicht verfügbar!",
"Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Sind Sie angemeldet?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie ein Admin?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie von der Administration?",
"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!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Anfrage fehlgeschlagen, diese Nextcloud-Instanz befindet sich derzeit im Wartungsmodus.",
@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Ungelesene Artikel",
"News" : "News",
"News folders" : "Nachrichtenordner",
"News articles" : "Nachrichtenartikel",
"Shared with me" : "Mit mir geteilt",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Die letzte Aufgaben-Ausführung lief {relativeTime}. Etwas scheint falsch zu sein.",
"Last job ran {relativeTime}." : "Die letzte Aufgabe lief {relativeTime}.",
"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.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
@ -28,7 +31,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.",
"Update interval" : "Aktualisierungsintervall",
"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 erfolgreich aktualisiert",
"Successfully updated news configuration" : "Die News-Einstellungen wurde aktualisiert",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden",
"Download" : "Herunterladen",
"Close" : "Schließen",
@ -99,7 +102,7 @@ OC.L10N.register(
"Mark read" : "Als gelesen markieren",
"Unpin from top" : "Fixierung aufheben",
"Pin to top" : "Oben fixieren",
"Newest first" : "Neueste zuerst",
"Newest first" : "Neue zuerst",
"Oldest first" : "Älteste zuerst",
"Default order" : "Standard-Sortierung",
"Enable full text" : "Volltext aktivieren",

View File

@ -1,7 +1,7 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Anfrage fehlgeschlagen, Netzwerkverbindung nicht verfügbar!",
"Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Sind Sie angemeldet?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie ein Admin?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Sind Sie von der Administration?",
"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!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Anfrage fehlgeschlagen, diese Nextcloud-Instanz befindet sich derzeit im Wartungsmodus.",
@ -9,9 +9,12 @@
"Unread articles" : "Ungelesene Artikel",
"News" : "News",
"News folders" : "Nachrichtenordner",
"News articles" : "Nachrichtenartikel",
"Shared with me" : "Mit mir geteilt",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Die letzte Aufgaben-Ausführung lief {relativeTime}. Etwas scheint falsch zu sein.",
"Last job ran {relativeTime}." : "Die letzte Aufgabe lief {relativeTime}.",
"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.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
@ -26,7 +29,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.",
"Update interval" : "Aktualisierungsintervall",
"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 erfolgreich aktualisiert",
"Successfully updated news configuration" : "Die News-Einstellungen wurde aktualisiert",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden",
"Download" : "Herunterladen",
"Close" : "Schließen",
@ -97,7 +100,7 @@
"Mark read" : "Als gelesen markieren",
"Unpin from top" : "Fixierung aufheben",
"Pin to top" : "Oben fixieren",
"Newest first" : "Neueste zuerst",
"Newest first" : "Neue zuerst",
"Oldest first" : "Älteste zuerst",
"Default order" : "Standard-Sortierung",
"Enable full text" : "Volltext aktivieren",

View File

@ -35,6 +35,7 @@ OC.L10N.register(
"No users found" : "Δεν βρέθηκαν χρήστες",
"by" : "από",
"from" : "από",
"shared by" : "σε κοινή χρήση από",
"Play audio" : "Αναπαραγωγή ήχου",
"Download audio" : "Λήψη ήχου",
"Download video" : "Κατεβάστε το βίντεο",

View File

@ -33,6 +33,7 @@
"No users found" : "Δεν βρέθηκαν χρήστες",
"by" : "από",
"from" : "από",
"shared by" : "σε κοινή χρήση από",
"Play audio" : "Αναπαραγωγή ήχου",
"Download audio" : "Λήψη ήχου",
"Download video" : "Κατεβάστε το βίντεο",

View File

@ -3,20 +3,39 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Request failed, network connection unavailable!",
"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!",
"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!",
"News feeds" : "News feeds",
"Unread articles" : "Unread articles",
"News" : "News",
"News folders" : "News folders",
"News articles" : "News articles",
"Shared with me" : "Shared with me",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Last job execution ran {relativeTime}. Something seems wrong.",
"Last job ran {relativeTime}." : "Last job ran {relativeTime}.",
"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.",
"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",
"How many redirects the feed fetcher should follow." : "How many redirects the feed fetcher should follow.",
"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",
"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",
"Close" : "Close",
"Subscribe to" : "Subscribe to",
"No articles available" : "No articles available",
"No unread articles available" : "No unread articles available",
"Open website" : "Open website",
@ -25,9 +44,16 @@ OC.L10N.register(
"Keep article unread" : "Keep article unread",
"Remove keep article unread" : "Remove keep article unread",
"Share" : "Share",
"Share with users" : "Share with users",
"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",
"from" : "from",
"shared by" : "shared by",
"Play audio" : "Play audio",
"Download audio" : "Download audio",
"Download video" : "Download video",
@ -64,6 +90,7 @@ OC.L10N.register(
"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!",
"Password" : "Password",
"Auto discover Feed" : "Auto discover Feed",
"New Folder" : "New Folder",
"Create" : "Create",
"Explore" : "Explore",

View File

@ -1,20 +1,39 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Request failed, network connection unavailable!",
"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!",
"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!",
"News feeds" : "News feeds",
"Unread articles" : "Unread articles",
"News" : "News",
"News folders" : "News folders",
"News articles" : "News articles",
"Shared with me" : "Shared with me",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Last job execution ran {relativeTime}. Something seems wrong.",
"Last job ran {relativeTime}." : "Last job ran {relativeTime}.",
"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.",
"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",
"How many redirects the feed fetcher should follow." : "How many redirects the feed fetcher should follow.",
"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",
"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",
"Close" : "Close",
"Subscribe to" : "Subscribe to",
"No articles available" : "No articles available",
"No unread articles available" : "No unread articles available",
"Open website" : "Open website",
@ -23,9 +42,16 @@
"Keep article unread" : "Keep article unread",
"Remove keep article unread" : "Remove keep article unread",
"Share" : "Share",
"Share with users" : "Share with users",
"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",
"from" : "from",
"shared by" : "shared by",
"Play audio" : "Play audio",
"Download audio" : "Download audio",
"Download video" : "Download video",
@ -62,6 +88,7 @@
"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!",
"Password" : "Password",
"Auto discover Feed" : "Auto discover Feed",
"New Folder" : "New Folder",
"Create" : "Create",
"Explore" : "Explore",

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Artículos sin leer",
"News" : "Noticias",
"News folders" : "Carpetas nuevas",
"News articles" : "Artículos de noticias",
"Shared with me" : "Compartido conmigo",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "La última ejecución fue en {relativeTime}. Algo está mal.",
"Last job ran {relativeTime}." : "Último trabajo realizado {relativeTime}.",
"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.",
"Maximum read count per feed" : "Máximo número de lecturas por fuente",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Artículos sin leer",
"News" : "Noticias",
"News folders" : "Carpetas nuevas",
"News articles" : "Artículos de noticias",
"Shared with me" : "Compartido conmigo",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "La última ejecución fue en {relativeTime}. Algo está mal.",
"Last job ran {relativeTime}." : "Último trabajo realizado {relativeTime}.",
"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.",
"Maximum read count per feed" : "Máximo número de lecturas por fuente",

View File

@ -3,19 +3,39 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "¡Se presentó una falla en la solicitud, la conexión a la red no está disponible!",
"Request unauthorized. Are you logged in?" : "Solicitud no autorizada. ¿Has iniciado sesisón?",
"Request forbidden. Are you an administrator?" : "Solicitud prohibida. ¿Eres un administrador?",
"Token expired or app not enabled! Reload the page!" : "¡La ficha expiró o la aplicación no está habilitada! ¡Por favor recarga la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Se presentó un error interno del servidor! ¡Por favor verifica el archivo data/nextcloud.log para más informacón!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Se presentó una falla en la solicitud, por el momento Nextcloud se encuentra en modo mantenimiento!",
"News feeds" : "Fuentes de noticias",
"Unread articles" : "Artículos sin leer",
"News" : "Noticias",
"News folders" : "Carpetas de noticias",
"News articles" : "Artículos de noticias",
"Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de fuentes 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)" : "📰 Una aplicación de lectura de fuentes RSS/Atom para Nextcloud\n \n - 📲 Sincroniza tus fuentes con múltiples clientes móviles o de escritorio [clients](https://nextcloud.github.io/news/clients/)\n - 🔄 Actualización automática de tus fuentes de noticias\n - 🆓 Gratis y de código abierto bajo la licencia AGPLv3, sin publicidad o funciones premium\n \n **Actualmente se requiere Cron del sistema para que esta aplicación funcione**\n \n Los requisitos se pueden encontrar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n \n El registro de cambios está disponible [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n \n Crear un [informe de error](https://github.com/nextcloud/news/issues/new/choose)\n \n Crear una [solicitud de función](https://github.com/nextcloud/news/discussions/new)\n \n Informar de un [problema de fuente](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "La última ejecución de la tarea se realizó hace {relativeTime}. Algo parece estar mal.",
"Last job ran {relativeTime}." : "La última tarea se ejecutó {relativeTime}.",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Disable this if you use a custom updater." : "Desactiva esto si utilizas un actualizador personalizado.",
"Maximum read count per feed" : "Conteo máximo 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 máxima de artículos que se pueden leer por fuente y que no serán eliminados por la tarea de limpieza; si los artículos antiguos vuelven a aparecer después de ser leídos, aumenta este valor; los valores negativos como -1 desactivarán esta función.",
"Delete unread articles automatically" : "Eliminar automáticamente los artículos no leídos",
"Enable this if you also want to delete unread articles." : "Activa esto si también deseas eliminar los artículos no leídos.",
"Maximum redirects" : "Redirecciones máximas",
"How many redirects the feed fetcher should follow." : "Cantidad máxima de redireccionamientos que el recuperador de fuentes debe seguir.",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Tiempo máximo en segundos para esperar a que se cargue una fuente RSS o Atom; si tarda más, la actualización se abortará.",
"Explore Service URL" : "Explorar la URL del Servicio",
"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 proporciona, se consultará la URL de este servicio para mostrar las fuentes en la sección de exploración de fuentes. Para utilizar el servicio de exploración incorporado, deja este campo vacío.",
"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.",
"Successfully updated news configuration" : "Configuración de noticias actualizada correctamente",
"Unable to update news config" : "No se pudo actualizar la configuración de noticias",
"Download" : "Descargar",
"Close" : "Cerrar",
"Subscribe to" : "Suscribirse a",
"No articles available" : "No hay artículos disponibles",
"No unread articles available" : "No hay artículos sin leer disponibles",
"Open website" : "Abrir sitio web",
@ -24,9 +44,16 @@ OC.L10N.register(
"Keep article unread" : "Mantener el artículo como no-leído",
"Remove keep article unread" : "Eliminar mantener artículo como no leído",
"Share" : "Compartir",
"Share with users" : "Compartir con usuarios",
"Username" : "Usuario",
"No users found" : "No se encontraron usuarios",
"Error while searching for users" : "Error al buscar usuarios",
"Share on social media" : "Compartir en redes sociales",
"I wanted you to see this article" : "Quería que vieras este artículo",
"Check out this article" : "Echa un vistazo a este artículo",
"by" : "por",
"from" : "de",
"shared by" : "compartido por",
"Play audio" : "Reproducir audio",
"Download audio" : "Descargar audio",
"Download video" : "Descargar video",
@ -63,6 +90,7 @@ OC.L10N.register(
"Credentials" : "Credenciales",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "¡Las credenciales HTTP Basic Auth deben ser almacenadas decriptadas! ¡Todos aquellos que tengan acceso al servidor o a la base de datos tendrán acceso a ellas!",
"Password" : "Contraseña",
"Auto discover Feed" : "Descubrir automáticamente la fuente",
"New Folder" : "Carpeta Nueva",
"Create" : "Crear",
"Explore" : "Explorar",

View File

@ -1,19 +1,39 @@
{ "translations": {
"Request failed, network connection unavailable!" : "¡Se presentó una falla en la solicitud, la conexión a la red no está disponible!",
"Request unauthorized. Are you logged in?" : "Solicitud no autorizada. ¿Has iniciado sesisón?",
"Request forbidden. Are you an administrator?" : "Solicitud prohibida. ¿Eres un administrador?",
"Token expired or app not enabled! Reload the page!" : "¡La ficha expiró o la aplicación no está habilitada! ¡Por favor recarga la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Se presentó un error interno del servidor! ¡Por favor verifica el archivo data/nextcloud.log para más informacón!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Se presentó una falla en la solicitud, por el momento Nextcloud se encuentra en modo mantenimiento!",
"News feeds" : "Fuentes de noticias",
"Unread articles" : "Artículos sin leer",
"News" : "Noticias",
"News folders" : "Carpetas de noticias",
"News articles" : "Artículos de noticias",
"Shared with me" : "Compartido conmigo",
"An RSS/Atom feed reader" : "Un lector de fuentes 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)" : "📰 Una aplicación de lectura de fuentes RSS/Atom para Nextcloud\n \n - 📲 Sincroniza tus fuentes con múltiples clientes móviles o de escritorio [clients](https://nextcloud.github.io/news/clients/)\n - 🔄 Actualización automática de tus fuentes de noticias\n - 🆓 Gratis y de código abierto bajo la licencia AGPLv3, sin publicidad o funciones premium\n \n **Actualmente se requiere Cron del sistema para que esta aplicación funcione**\n \n Los requisitos se pueden encontrar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n \n El registro de cambios está disponible [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n \n Crear un [informe de error](https://github.com/nextcloud/news/issues/new/choose)\n \n Crear una [solicitud de función](https://github.com/nextcloud/news/discussions/new)\n \n Informar de un [problema de fuente](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "La última ejecución de la tarea se realizó hace {relativeTime}. Algo parece estar mal.",
"Last job ran {relativeTime}." : "La última tarea se ejecutó {relativeTime}.",
"Use system cron for updates" : "Usa el cron del sistema para las actualizaciones",
"Disable this if you use a custom updater." : "Desactiva esto si utilizas un actualizador personalizado.",
"Maximum read count per feed" : "Conteo máximo 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 máxima de artículos que se pueden leer por fuente y que no serán eliminados por la tarea de limpieza; si los artículos antiguos vuelven a aparecer después de ser leídos, aumenta este valor; los valores negativos como -1 desactivarán esta función.",
"Delete unread articles automatically" : "Eliminar automáticamente los artículos no leídos",
"Enable this if you also want to delete unread articles." : "Activa esto si también deseas eliminar los artículos no leídos.",
"Maximum redirects" : "Redirecciones máximas",
"How many redirects the feed fetcher should follow." : "Cantidad máxima de redireccionamientos que el recuperador de fuentes debe seguir.",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Tiempo máximo en segundos para esperar a que se cargue una fuente RSS o Atom; si tarda más, la actualización se abortará.",
"Explore Service URL" : "Explorar la URL del Servicio",
"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 proporciona, se consultará la URL de este servicio para mostrar las fuentes en la sección de exploración de fuentes. Para utilizar el servicio de exploración incorporado, deja este campo vacío.",
"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.",
"Successfully updated news configuration" : "Configuración de noticias actualizada correctamente",
"Unable to update news config" : "No se pudo actualizar la configuración de noticias",
"Download" : "Descargar",
"Close" : "Cerrar",
"Subscribe to" : "Suscribirse a",
"No articles available" : "No hay artículos disponibles",
"No unread articles available" : "No hay artículos sin leer disponibles",
"Open website" : "Abrir sitio web",
@ -22,9 +42,16 @@
"Keep article unread" : "Mantener el artículo como no-leído",
"Remove keep article unread" : "Eliminar mantener artículo como no leído",
"Share" : "Compartir",
"Share with users" : "Compartir con usuarios",
"Username" : "Usuario",
"No users found" : "No se encontraron usuarios",
"Error while searching for users" : "Error al buscar usuarios",
"Share on social media" : "Compartir en redes sociales",
"I wanted you to see this article" : "Quería que vieras este artículo",
"Check out this article" : "Echa un vistazo a este artículo",
"by" : "por",
"from" : "de",
"shared by" : "compartido por",
"Play audio" : "Reproducir audio",
"Download audio" : "Descargar audio",
"Download video" : "Descargar video",
@ -61,6 +88,7 @@
"Credentials" : "Credenciales",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "¡Las credenciales HTTP Basic Auth deben ser almacenadas decriptadas! ¡Todos aquellos que tengan acceso al servidor o a la base de datos tendrán acceso a ellas!",
"Password" : "Contraseña",
"Auto discover Feed" : "Descubrir automáticamente la fuente",
"New Folder" : "Carpeta Nueva",
"Create" : "Crear",
"Explore" : "Explorar",

View File

@ -3,11 +3,17 @@ OC.L10N.register(
{
"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 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.",
"News feeds" : "Uudisvood",
"Unread articles" : "Lugemata artiklid",
"News" : "News",
"News" : "Uudised",
"News folders" : "Uudiste kataloogid",
"News articles" : "Uudiste artiklid",
"Shared with me" : "Jagatud minuga",
"Use system cron for updates" : "Kasuta süsteemi croni uuendusteks",
"Maximum read count per feed" : "Maksimaalne lugemiste arv voo kohta",
"Delete unread articles automatically" : "Kustuta automaatselt lugemata artiklid",
"Maximum redirects" : "Maksimaalsed ümbersuunamised",
"Feed fetcher timeout" : "Voo ühenduse aegumine",
"Explore Service URL" : "Sirvi teenuse URL-i",
@ -21,7 +27,10 @@ OC.L10N.register(
"Keep article unread" : "Hoia kui lugemata",
"Remove keep article unread" : "Eemalda märgistus 'Hoia kui lugemata'",
"Share" : "Jaga",
"Share with users" : "Jaga kasutajatega",
"Username" : "Kasutajanimi",
"No users found" : "Kasutajaid ei leitud",
"Share on social media" : "Jaga sotsiaalmeedias",
"by" : "lisas",
"from" : "kohast",
"Play audio" : "Esita heli",
@ -30,7 +39,7 @@ OC.L10N.register(
"Keyboard shortcut" : "Klaviatuuri otsetee",
"Description" : "Kirjeldus",
"right" : "paremal",
"Jump to next article" : "Hüppar järgmisele artiklile",
"Jump to next article" : "Hüppa järgmisele artiklile",
"left" : "vasakul",
"Jump to previous article" : "Hüppa eelmisele artiklile",
"Toggle star article" : "Lülita artikli tähtekest",

View File

@ -1,11 +1,17 @@
{ "translations": {
"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 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.",
"News feeds" : "Uudisvood",
"Unread articles" : "Lugemata artiklid",
"News" : "News",
"News" : "Uudised",
"News folders" : "Uudiste kataloogid",
"News articles" : "Uudiste artiklid",
"Shared with me" : "Jagatud minuga",
"Use system cron for updates" : "Kasuta süsteemi croni uuendusteks",
"Maximum read count per feed" : "Maksimaalne lugemiste arv voo kohta",
"Delete unread articles automatically" : "Kustuta automaatselt lugemata artiklid",
"Maximum redirects" : "Maksimaalsed ümbersuunamised",
"Feed fetcher timeout" : "Voo ühenduse aegumine",
"Explore Service URL" : "Sirvi teenuse URL-i",
@ -19,7 +25,10 @@
"Keep article unread" : "Hoia kui lugemata",
"Remove keep article unread" : "Eemalda märgistus 'Hoia kui lugemata'",
"Share" : "Jaga",
"Share with users" : "Jaga kasutajatega",
"Username" : "Kasutajanimi",
"No users found" : "Kasutajaid ei leitud",
"Share on social media" : "Jaga sotsiaalmeedias",
"by" : "lisas",
"from" : "kohast",
"Play audio" : "Esita heli",
@ -28,7 +37,7 @@
"Keyboard shortcut" : "Klaviatuuri otsetee",
"Description" : "Kirjeldus",
"right" : "paremal",
"Jump to next article" : "Hüppar järgmisele artiklile",
"Jump to next article" : "Hüppa järgmisele artiklile",
"left" : "vasakul",
"Jump to previous article" : "Hüppa eelmisele artiklile",
"Toggle star article" : "Lülita artikli tähtekest",

View File

@ -11,13 +11,18 @@ OC.L10N.register(
"Unread articles" : "Irakurri gabeko artikuluak",
"News" : "Berriak",
"News folders" : "Albiste karpetak",
"News articles" : "Artikulu berriak",
"Shared with me" : "Nirekin partekatuta",
"An RSS/Atom feed reader" : "RSS/Atom jarioen irakurle bat",
"📰 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",
"Last job execution ran {relativeTime}. Something seems wrong." : "Azken lana exekutatu zen: {time}. Zerbait gaizki dagoela dirudi.",
"Last job ran {relativeTime}." : "Azken lana {relativeTime}-n egin zen.",
"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.",
"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",
"How many redirects the feed fetcher should follow." : "Jarioak eskuratzean zenbat birbideratze jarraituko diren.",
"Feed fetcher timeout" : "Jarioak hartzeko denbora-muga",

View File

@ -9,13 +9,18 @@
"Unread articles" : "Irakurri gabeko artikuluak",
"News" : "Berriak",
"News folders" : "Albiste karpetak",
"News articles" : "Artikulu berriak",
"Shared with me" : "Nirekin partekatuta",
"An RSS/Atom feed reader" : "RSS/Atom jarioen irakurle bat",
"📰 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",
"Last job execution ran {relativeTime}. Something seems wrong." : "Azken lana exekutatu zen: {time}. Zerbait gaizki dagoela dirudi.",
"Last job ran {relativeTime}." : "Azken lana {relativeTime}-n egin zen.",
"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.",
"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",
"How many redirects the feed fetcher should follow." : "Jarioak eskuratzean zenbat birbideratze jarraituko diren.",
"Feed fetcher timeout" : "Jarioak hartzeko denbora-muga",

View File

@ -5,10 +5,11 @@ OC.L10N.register(
"Request unauthorized. Are you logged in?" : "درخواست غیر مجاز. آیا وارد سیستم شده اید؟",
"Token expired or app not enabled! Reload the page!" : "گفتگوی منقضی شده یا برنامه فعال نشده است! بارگیری مجدد صفحه!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "خطای سرور داخلی! لطفاً برای اطلاعات بیشتر ، پرونده / nextcloud.log خود را بررسی کنید!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "درخواست انجام نشد ، Nextcloud در حال حاضر در حالت تعمیر و نگهداری است!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "درخواست انجام نشد، نکست‌کلود در حال حاضر در حالت تعمیر و نگهداری است!",
"Unread articles" : "مطالب خوانده نشده",
"News" : "اخبار",
"An RSS/Atom feed reader" : "An RSS/Atom feed reader",
"Last job ran {relativeTime}." : "آخرین کار در {time} اجرا شد.",
"Use system cron for updates" : "برای بروزرسانی ها از سیستم cron استفاده کنید",
"Maximum read count per feed" : "حداکثر تعداد خواندن در هر خوراک",
"Maximum redirects" : "حداکثر تغییر مسیرها",

View File

@ -3,10 +3,11 @@
"Request unauthorized. Are you logged in?" : "درخواست غیر مجاز. آیا وارد سیستم شده اید؟",
"Token expired or app not enabled! Reload the page!" : "گفتگوی منقضی شده یا برنامه فعال نشده است! بارگیری مجدد صفحه!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "خطای سرور داخلی! لطفاً برای اطلاعات بیشتر ، پرونده / nextcloud.log خود را بررسی کنید!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "درخواست انجام نشد ، Nextcloud در حال حاضر در حالت تعمیر و نگهداری است!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "درخواست انجام نشد، نکست‌کلود در حال حاضر در حالت تعمیر و نگهداری است!",
"Unread articles" : "مطالب خوانده نشده",
"News" : "اخبار",
"An RSS/Atom feed reader" : "An RSS/Atom feed reader",
"Last job ran {relativeTime}." : "آخرین کار در {time} اجرا شد.",
"Use system cron for updates" : "برای بروزرسانی ها از سیستم cron استفاده کنید",
"Maximum read count per feed" : "حداکثر تعداد خواندن در هر خوراک",
"Maximum redirects" : "حداکثر تغییر مسیرها",

View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"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 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!",
"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!",
@ -10,11 +11,14 @@ OC.L10N.register(
"Unread articles" : "Lukemattomat artikkelit",
"News" : "Uutiset",
"News folders" : "Syötekansiot",
"News articles" : "Uutisartikkelit",
"Shared with me" : "Jaettu kanssasi",
"An RSS/Atom feed reader" : "RSS-/Atom-syötteiden lukija",
"Last job ran {relativeTime}." : "Viimeisin työ ajettiin {relativeTime}.",
"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ä.",
"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ä",
"How many redirects the feed fetcher should follow." : "Kuinka montaa uudelleenohjausta syötteen noutajan tulisi seurata.",
"Feed fetcher timeout" : "Syötteen hakemisen aikakatkaisu",

View File

@ -1,6 +1,7 @@
{ "translations": {
"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 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!",
"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!",
@ -8,11 +9,14 @@
"Unread articles" : "Lukemattomat artikkelit",
"News" : "Uutiset",
"News folders" : "Syötekansiot",
"News articles" : "Uutisartikkelit",
"Shared with me" : "Jaettu kanssasi",
"An RSS/Atom feed reader" : "RSS-/Atom-syötteiden lukija",
"Last job ran {relativeTime}." : "Viimeisin työ ajettiin {relativeTime}.",
"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ä.",
"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ä",
"How many redirects the feed fetcher should follow." : "Kuinka montaa uudelleenohjausta syötteen noutajan tulisi seurata.",
"Feed fetcher timeout" : "Syötteen hakemisen aikakatkaisu",

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Articles non lus",
"News" : "News",
"News folders" : "Dossiers d'actualités",
"News articles" : "Articles d'actualité",
"Shared with me" : "Partagé avec moi",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Dernière tâche exécutée {relativeTime}. Quelque chose semble ne pas aller.",
"Last job ran {relativeTime}." : "Dernière tâche exécutée {relativeTime}.",
"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é.",
"Maximum read count per feed" : "Nombre maximum de lecture par flux",
@ -87,7 +90,7 @@ OC.L10N.register(
"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 !",
"Password" : "Mot de passe",
"Auto discover Feed" : "Flux de découverte automatique",
"Auto discover Feed" : "Découverte automatique du flux",
"New Folder" : "Nouveau dossier",
"Create" : "Créer",
"Explore" : "Explorer",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Articles non lus",
"News" : "News",
"News folders" : "Dossiers d'actualités",
"News articles" : "Articles d'actualité",
"Shared with me" : "Partagé avec moi",
"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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Dernière tâche exécutée {relativeTime}. Quelque chose semble ne pas aller.",
"Last job ran {relativeTime}." : "Dernière tâche exécutée {relativeTime}.",
"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é.",
"Maximum read count per feed" : "Nombre maximum de lecture par flux",
@ -85,7 +88,7 @@
"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 !",
"Password" : "Mot de passe",
"Auto discover Feed" : "Flux de découverte automatique",
"Auto discover Feed" : "Découverte automatique du flux",
"New Folder" : "Nouveau dossier",
"Create" : "Créer",
"Explore" : "Explorer",

View File

@ -2,24 +2,37 @@ OC.L10N.register(
"news",
{
"Request failed, network connection unavailable!" : "Non se realizou a solicitude, a conexión de rede non está dispoñíbel!",
"Request unauthorized. Are you logged in?" : "Solicitude non autorizada. Está vostede autenticado?",
"Request unauthorized. Are you logged in?" : "A solicitude non está autorizada. Está Vde. autenticado?",
"Request forbidden. Are you an administrator?" : "Solicitude prohibida. Es administrador?",
"Token expired or app not enabled! Reload the page!" : "Ou ben caducou o testemuño ou a aplicación non está activada. Volva cargar a páxina!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Produciuse un erro interno do servidor! Verifique o ficheiro data/nextcloud.log para obter máis información!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Produciuse un fallo na solicitude, Nexcloud esta actualmente en modo mantemento!",
"News feeds" : "Fontes de novas",
"Unread articles" : "Artigos sen ler",
"News" : "Novas",
"News folders" : "Cartafoles de novas",
"News articles" : "Artigos de novas",
"Shared with me" : "Compartido comigo",
"An RSS/Atom feed reader" : "Un lector de fontes 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)" : "📰 Unha aplicación de lector de RSS/Atom Feed para Nextcloud\n\n- 📲 Sincroniza as súas fontes con varios [clientes](https://nextcloud.github.io/news/clients/) de móbil ou de escritorio \n- 🔄 Actualizacións automáticas das súas fontes de novas\n- 🆓 De Código aberto, libre e de balde, baixo AGPLv3, sen anuncios nin funcións de pago ou subscrición\n\n**Actualmente precisase o sistema «cron» para que esta aplicación funcione**\n\nOs requisitos pódense atopar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n\nO rexistro de cambios está dispoñíbel [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrear un [informe de fallos](https://github.com/nextcloud/news/issues/new/choose)\n\nCrear unha [solicitude de función](https://github.com/nextcloud/news/discussions/new)\n\nInformar dun [problema de fontes](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "A última execución do traballo executouse o {relativeTime}. Algo parece funcionar mal.",
"Last job ran {relativeTime}." : "O último traballo executouse {relativeTime}.",
"Use system cron for updates" : "Use o cron do sistema para as actualizacións",
"Disable this if you use a custom updater." : "Desactive isto se usa un actualizador personalizado.",
"Maximum read count per feed" : "Conta máxima de lidos por fonte",
"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 a cantidade máxima de artigos que se poden ler por fonte que non se eliminarán polo traballo de limpeza; se reaparecen artigos antigos após de ser lidos, aumenta este valor; valores negativos como -1 desactivarán esta función.",
"Delete unread articles automatically" : "Eliminar automaticamente os artigos non lidos",
"Enable this if you also want to delete unread articles." : "Active isto se tamén quere eliminar os artigos non lidos.",
"Maximum redirects" : "Redireccionamentos máximos",
"How many redirects the feed fetcher should follow." : "Cantos redirecionamentos debe seguir o recuperador de fontes.",
"Feed fetcher timeout" : "Caducidade do recuperador",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Número máximo de segundos agardando por unha fonte RSS ou Atom para cargar; se lle leva máis tempo a actualización será cancelada.",
"Feed fetcher timeout" : "Caducidade do recuperador de fontes",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Número máximo de segundos agardando por unha fonte RSS ou Atom para cargar; se lle leva máis tempo a actualización será interrompida.",
"Explore Service URL" : "Examinar o URL de servizo",
"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." : "Se é fornecido, este URL de servizo requirirase para amosar as fontes na sección de exame da fonte. Para amparar co servizo de exame propio, deixe baldeira esta entrada.",
"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." : "Se é fornecido, este URL de servizo precisarase para amosar as fontes na sección de exame da fonte. Para amparar co servizo de exame propio, deixe baldeira esta entrada.",
"Update interval" : "Intervalo de actualización",
"Interval in seconds in which the feeds will be updated." : "Intervalo, en segundos, no que se actualizarán as fontes.",
"Successfully updated news configuration" : "Actualizouse correctamente a configuración de novas",
"Unable to update news config" : "Non é posíbel actualizar a configuración de noticias",
"Download" : "Descargar",
"Close" : "Pechar",
"Subscribe to" : "Subscribirse a",
@ -31,13 +44,19 @@ OC.L10N.register(
"Keep article unread" : "Conservar o artigo como non lido",
"Remove keep article unread" : "Retirar a marca de artigo sen ler",
"Share" : "Compartir",
"Share with users" : "Compartir cos usuarios",
"Username" : "Nome de usuario",
"No users found" : "Non se atoparon usuarios",
"Error while searching for users" : "Produciuse un erro ao buscar usuarios",
"Share on social media" : "Compartir nos medios sociais",
"I wanted you to see this article" : "Gustaríame que vira este artigo",
"Check out this article" : "Consulte este artigo",
"by" : "por",
"from" : "dende",
"shared by" : "compartido por",
"Play audio" : "Reproducir son",
"Download audio" : "Descargar son",
"Download video" : "Descargar video",
"Download video" : "Descargar vídeo",
"Keyboard shortcut" : "Atallo de teclado",
"Description" : "Descrición",
"right" : "dereita",
@ -58,7 +77,7 @@ OC.L10N.register(
"Mark current article's feed/folder read" : "Marcar o actual artigo de fonte/cartafol como lido",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Detectouse o modo Ajax ou webcron! As súas fontes non van ser actualizadas!",
"How to set up the operating system cron" : "Cómo configurar o cron do sistema operativo",
"Install and set up a faster parallel updater that uses the News app's update API" : "Instala e configura un actualizador paralelo máis rápido que utiliza a API de actualización da aplicación Novas",
"Install and set up a faster parallel updater that uses the News app's update API" : "Instalar e configurar un actualizador paralelo máis rápido que utilice a API de actualización da aplicación Novas",
"Subscribe" : "Subscribirse",
"Web address" : "Enderezo web",
"Feed exists already!" : "Esta fonte de novas xa existe!",
@ -71,6 +90,7 @@ OC.L10N.register(
"Credentials" : "Credenciais",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "As credenciais para HTTP Basic Auth deben estar gardadas sen cifrar! Calquera persoa con acceso ao servidor poderá acceder a elas!",
"Password" : "Contrasinal",
"Auto discover Feed" : "Feed de detección automática",
"New Folder" : "Novo cartafol",
"Create" : "Crear",
"Explore" : "Examinar",

View File

@ -1,23 +1,36 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Non se realizou a solicitude, a conexión de rede non está dispoñíbel!",
"Request unauthorized. Are you logged in?" : "Solicitude non autorizada. Está vostede autenticado?",
"Request unauthorized. Are you logged in?" : "A solicitude non está autorizada. Está Vde. autenticado?",
"Request forbidden. Are you an administrator?" : "Solicitude prohibida. Es administrador?",
"Token expired or app not enabled! Reload the page!" : "Ou ben caducou o testemuño ou a aplicación non está activada. Volva cargar a páxina!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Produciuse un erro interno do servidor! Verifique o ficheiro data/nextcloud.log para obter máis información!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Produciuse un fallo na solicitude, Nexcloud esta actualmente en modo mantemento!",
"News feeds" : "Fontes de novas",
"Unread articles" : "Artigos sen ler",
"News" : "Novas",
"News folders" : "Cartafoles de novas",
"News articles" : "Artigos de novas",
"Shared with me" : "Compartido comigo",
"An RSS/Atom feed reader" : "Un lector de fontes 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)" : "📰 Unha aplicación de lector de RSS/Atom Feed para Nextcloud\n\n- 📲 Sincroniza as súas fontes con varios [clientes](https://nextcloud.github.io/news/clients/) de móbil ou de escritorio \n- 🔄 Actualizacións automáticas das súas fontes de novas\n- 🆓 De Código aberto, libre e de balde, baixo AGPLv3, sen anuncios nin funcións de pago ou subscrición\n\n**Actualmente precisase o sistema «cron» para que esta aplicación funcione**\n\nOs requisitos pódense atopar [aquí](https://nextcloud.github.io/news/install/#dependencies)\n\nO rexistro de cambios está dispoñíbel [aquí](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrear un [informe de fallos](https://github.com/nextcloud/news/issues/new/choose)\n\nCrear unha [solicitude de función](https://github.com/nextcloud/news/discussions/new)\n\nInformar dun [problema de fontes](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "A última execución do traballo executouse o {relativeTime}. Algo parece funcionar mal.",
"Last job ran {relativeTime}." : "O último traballo executouse {relativeTime}.",
"Use system cron for updates" : "Use o cron do sistema para as actualizacións",
"Disable this if you use a custom updater." : "Desactive isto se usa un actualizador personalizado.",
"Maximum read count per feed" : "Conta máxima de lidos por fonte",
"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 a cantidade máxima de artigos que se poden ler por fonte que non se eliminarán polo traballo de limpeza; se reaparecen artigos antigos após de ser lidos, aumenta este valor; valores negativos como -1 desactivarán esta función.",
"Delete unread articles automatically" : "Eliminar automaticamente os artigos non lidos",
"Enable this if you also want to delete unread articles." : "Active isto se tamén quere eliminar os artigos non lidos.",
"Maximum redirects" : "Redireccionamentos máximos",
"How many redirects the feed fetcher should follow." : "Cantos redirecionamentos debe seguir o recuperador de fontes.",
"Feed fetcher timeout" : "Caducidade do recuperador",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Número máximo de segundos agardando por unha fonte RSS ou Atom para cargar; se lle leva máis tempo a actualización será cancelada.",
"Feed fetcher timeout" : "Caducidade do recuperador de fontes",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Número máximo de segundos agardando por unha fonte RSS ou Atom para cargar; se lle leva máis tempo a actualización será interrompida.",
"Explore Service URL" : "Examinar o URL de servizo",
"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." : "Se é fornecido, este URL de servizo requirirase para amosar as fontes na sección de exame da fonte. Para amparar co servizo de exame propio, deixe baldeira esta entrada.",
"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." : "Se é fornecido, este URL de servizo precisarase para amosar as fontes na sección de exame da fonte. Para amparar co servizo de exame propio, deixe baldeira esta entrada.",
"Update interval" : "Intervalo de actualización",
"Interval in seconds in which the feeds will be updated." : "Intervalo, en segundos, no que se actualizarán as fontes.",
"Successfully updated news configuration" : "Actualizouse correctamente a configuración de novas",
"Unable to update news config" : "Non é posíbel actualizar a configuración de noticias",
"Download" : "Descargar",
"Close" : "Pechar",
"Subscribe to" : "Subscribirse a",
@ -29,13 +42,19 @@
"Keep article unread" : "Conservar o artigo como non lido",
"Remove keep article unread" : "Retirar a marca de artigo sen ler",
"Share" : "Compartir",
"Share with users" : "Compartir cos usuarios",
"Username" : "Nome de usuario",
"No users found" : "Non se atoparon usuarios",
"Error while searching for users" : "Produciuse un erro ao buscar usuarios",
"Share on social media" : "Compartir nos medios sociais",
"I wanted you to see this article" : "Gustaríame que vira este artigo",
"Check out this article" : "Consulte este artigo",
"by" : "por",
"from" : "dende",
"shared by" : "compartido por",
"Play audio" : "Reproducir son",
"Download audio" : "Descargar son",
"Download video" : "Descargar video",
"Download video" : "Descargar vídeo",
"Keyboard shortcut" : "Atallo de teclado",
"Description" : "Descrición",
"right" : "dereita",
@ -56,7 +75,7 @@
"Mark current article's feed/folder read" : "Marcar o actual artigo de fonte/cartafol como lido",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Detectouse o modo Ajax ou webcron! As súas fontes non van ser actualizadas!",
"How to set up the operating system cron" : "Cómo configurar o cron do sistema operativo",
"Install and set up a faster parallel updater that uses the News app's update API" : "Instala e configura un actualizador paralelo máis rápido que utiliza a API de actualización da aplicación Novas",
"Install and set up a faster parallel updater that uses the News app's update API" : "Instalar e configurar un actualizador paralelo máis rápido que utilice a API de actualización da aplicación Novas",
"Subscribe" : "Subscribirse",
"Web address" : "Enderezo web",
"Feed exists already!" : "Esta fonte de novas xa existe!",
@ -69,6 +88,7 @@
"Credentials" : "Credenciais",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "As credenciais para HTTP Basic Auth deben estar gardadas sen cifrar! Calquera persoa con acceso ao servidor poderá acceder a elas!",
"Password" : "Contrasinal",
"Auto discover Feed" : "Feed de detección automática",
"New Folder" : "Novo cartafol",
"Create" : "Crear",
"Explore" : "Examinar",

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Olvasatlan cikkek",
"News" : "Hírek",
"News folders" : "Hírek mappái",
"News articles" : "Hírcikkek",
"Shared with me" : "Megosztva velem",
"An RSS/Atom feed reader" : "Egy RSS/Atom-hírcsatorna olvasó",
"📰 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "A legutóbbi feladat futási ideje: {relativeTime}. Valami nincs rendben.",
"Last job ran {relativeTime}." : "Utolsó feladatfuttatás: {relativeTime}.",
"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.",
"Maximum read count per feed" : "Maximális olvasási szám hírfolyamonként",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Olvasatlan cikkek",
"News" : "Hírek",
"News folders" : "Hírek mappái",
"News articles" : "Hírcikkek",
"Shared with me" : "Megosztva velem",
"An RSS/Atom feed reader" : "Egy RSS/Atom-hírcsatorna olvasó",
"📰 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "A legutóbbi feladat futási ideje: {relativeTime}. Valami nincs rendben.",
"Last job ran {relativeTime}." : "Utolsó feladatfuttatás: {relativeTime}.",
"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.",
"Maximum read count per feed" : "Maximális olvasási szám hírfolyamonként",

View File

@ -3,17 +3,39 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Permintaan gagal, koneksi jaringan tidak tersedia!",
"Request unauthorized. Are you logged in?" : "Permintaan tidak sah. Apakah Anda sudah masuk?",
"Request forbidden. Are you an administrator?" : "Permintaan ditolak. Apakah Anda seorang administrator?",
"Token expired or app not enabled! Reload the page!" : "Token telah kadaluarsa atau aplikasi tidak diaktifkan! Muat ulang halaman!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Kesalahan internal server! Mohon cek berkas data/nextcloud.log Anda untuk informasi lebih lanjut!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Permintaan gagal, Nextcloud sedang dalam mode pemeliharaan!",
"News feeds" : "Umpan berita",
"Unread articles" : "Artikel belum dibaca",
"News" : "Berita",
"News folders" : "Folder berita",
"News articles" : "Artikel berita",
"Shared with me" : "Dibagikan dengan saya",
"An RSS/Atom feed reader" : "Sebuah pembaca umpan 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)" : "📰 Aplikasi pembaca umpan RSS/Atom untuk Nextcloud\n\n- 📲 Sinkronkan umpan Anda dengan beberapa [klien](https://nextcloud.github.io/news/clients/) seluler atau desktop\n- 🔄 Pembaruan otomatis umpan berita Anda\n- 🆓 Bebas dan sumber terbuka di bawah AGPLv3, tanpa iklan atau fungsi premium\n\n**System Cron saat ini diperlukan agar aplikasi ini berfungsi**\n\nPersyaratan dapat ditemukan [di sini](https://nextcloud.github.io/news/install/#dependencies)\n\nPerubahan tersedia [di sini](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nBuat [laporan kutu](https://github.com/nextcloud/news/issues/new/choose)\n\nBuat [permintaan fitur](https://github.com/nextcloud/news/discussions/new)\n\nLaporkan [masalah umpan](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Eksekusi tugas terakhir dijalankan {relativeTime}.\nAda sesuatu yang salah.",
"Last job ran {relativeTime}." : "Tugas terakhir dijalankan {relativeTime}.",
"Use system cron for updates" : "Gunakan cron sistem untuk pembaruan",
"Disable this if you use a custom updater." : "Nonaktifkan ini juga Anda menggunakan pembaru kustom.",
"Maximum read count per feed" : "Jumlah baca maksimum 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." : "Mendefinisikan jumlah maksimum artikel yang dapat dibaca per umpan yang tidak akan dihapus oleh tugas pembersihan; jika artikel lama muncul kembali setelah dibaca, naikkan nilai ini; nilai negatif seperti -1 akan menonaktifkan fitur ini.",
"Delete unread articles automatically" : "Hapus artikel yang tidak dibaca secara otomatis",
"Enable this if you also want to delete unread articles." : "Aktifkan ini jika Anda juga ingin menghapus artikel yang tidak dibaca.",
"Maximum redirects" : "Pengalihan maksimum",
"How many redirects the feed fetcher should follow." : "Berapa arahan pembaca umpan harus mengikuti.",
"Feed fetcher timeout" : "Pengambil feed kehabisan waktu",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Jumlah maksimum untuk menunggu umpan RSS atau Atom untuk dimuat; jika membutuhkan waktu yang lama, pembaruan akan dibatalkan.",
"Explore Service URL" : "URL Layanan Jelajah",
"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." : "Jika diberikan, URL layanan ini akan dikueri untuk menampilkan umpan dalam bagian umpan jelajah. Untuk membuat layanan jelajah bawaan sebagai cadangan, tinggalkan masukan ini kosong.",
"Update interval" : "Interval pembaruan",
"Interval in seconds in which the feeds will be updated." : "Interval dalam detik di mana umpan akan diperbarui.",
"Successfully updated news configuration" : "Berhasil memperbarui konfigurasi berita",
"Unable to update news config" : "Tidak dapat memperbarui konfigurasi berita",
"Download" : "Unduh",
"Close" : "Tutup",
"Subscribe to" : "Berlangganan ke",
"No articles available" : "Tidak ada artikel yang tersedia",
"No unread articles available" : "Tidak ada artikel yang belum dibaca",
"Open website" : "Buka situs web",
@ -22,9 +44,16 @@ OC.L10N.register(
"Keep article unread" : "Tandai artikel belum dibaca",
"Remove keep article unread" : "Hapus tanda artikel belum dibaca",
"Share" : "Bagikan",
"Share with users" : "Bagikan dengan pengguna",
"Username" : "Nama pengguna",
"No users found" : "Tidak ada pengguna yang ditemukan",
"Error while searching for users" : "Terjadi kesalahan mencari pengguna",
"Share on social media" : "Bagikan di media sosial",
"I wanted you to see this article" : "Saya ingin Anda untuk melihat artikel ini",
"Check out this article" : "Lihat artikel ini",
"by" : "oleh",
"from" : "dari",
"shared by" : "dibagikan oleh",
"Play audio" : "Putar audio",
"Download audio" : "Unduh audio",
"Download video" : "Unduh video",
@ -46,6 +75,7 @@ OC.L10N.register(
"Load next folder" : "Muat folder berikutnya",
"Scroll to active navigation entry" : "Gulir ke entri navigasi aktif",
"Mark current article's feed/folder read" : "Tandai feed/folder artikel saat ini telah dibaca",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Mode AJAX atau Webcron dideteksi! Umpan Anda tidak akan diperbarui! ",
"How to set up the operating system cron" : "Bagaimana cara menyetel cron sistem operasi",
"Install and set up a faster parallel updater that uses the News app's update API" : "Pasang dan atur pembaruan paralel yang lebih cepat yang menggunakan API pembaruan aplikasi Berita",
"Subscribe" : "Berlangganan",
@ -60,6 +90,7 @@ OC.L10N.register(
"Credentials" : "Kredensial",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Kredensial HTTP Basic Auth harus disimpan tidak terenkripsi! Semua dengan akses ke server atau database akan bisa mengaksesnya!",
"Password" : "Kata Sandi",
"Auto discover Feed" : "Jelajahi umpan otomatis",
"New Folder" : "Folder Baru",
"Create" : "Buat",
"Explore" : "Jelajah",
@ -68,8 +99,17 @@ OC.L10N.register(
"Undo delete feed" : "Batalkan hapus feed",
"Rename" : "Ubah nama",
"Menu" : "Menu",
"Mark read" : "Tandai sebagai dibaca",
"Unpin from top" : "Lepaskan pin dari atas",
"Pin to top" : "Sematkan ke atas",
"Newest first" : "Terbaru",
"Oldest first" : "Paling lama",
"Default order" : "Urutan bawaan",
"Enable full text" : "Aktifkan teks lengkap",
"Disable full text" : "Nonaktifkan teks lengkap",
"Unread updated" : "Tidak dibaca diperbarui",
"Ignore updated" : "Abaikan diperbarui",
"Open feed URL" : "Buka URL umpan",
"Delete" : "Hapus",
"Dismiss" : "Buang",
"Collapse" : "Tutup",
@ -86,6 +126,7 @@ OC.L10N.register(
"Subscriptions (OPML)" : "Berlangganan (OPML)",
"Import" : "Impor",
"Export" : "Ekspor",
"Error when importing: File does not contain valid OPML" : "Terjadi kesalahan saat mengimpor: Berkas tidak berisi OPML yang valid",
"Error when importing: OPML is does neither contain feeds nor folders" : "Terjadi kesalahan saat mengimpor: OPML tidak berisi feed ataupun folder",
"Unread/Starred Articles" : "Artikel dibintangi/belum dibaca",
"Error when importing: file does not contain valid JSON" : "Terjadi kesalahan saat mengimor: berkas tidak berisi JSON yang sah",

View File

@ -1,17 +1,39 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Permintaan gagal, koneksi jaringan tidak tersedia!",
"Request unauthorized. Are you logged in?" : "Permintaan tidak sah. Apakah Anda sudah masuk?",
"Request forbidden. Are you an administrator?" : "Permintaan ditolak. Apakah Anda seorang administrator?",
"Token expired or app not enabled! Reload the page!" : "Token telah kadaluarsa atau aplikasi tidak diaktifkan! Muat ulang halaman!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Kesalahan internal server! Mohon cek berkas data/nextcloud.log Anda untuk informasi lebih lanjut!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Permintaan gagal, Nextcloud sedang dalam mode pemeliharaan!",
"News feeds" : "Umpan berita",
"Unread articles" : "Artikel belum dibaca",
"News" : "Berita",
"News folders" : "Folder berita",
"News articles" : "Artikel berita",
"Shared with me" : "Dibagikan dengan saya",
"An RSS/Atom feed reader" : "Sebuah pembaca umpan 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)" : "📰 Aplikasi pembaca umpan RSS/Atom untuk Nextcloud\n\n- 📲 Sinkronkan umpan Anda dengan beberapa [klien](https://nextcloud.github.io/news/clients/) seluler atau desktop\n- 🔄 Pembaruan otomatis umpan berita Anda\n- 🆓 Bebas dan sumber terbuka di bawah AGPLv3, tanpa iklan atau fungsi premium\n\n**System Cron saat ini diperlukan agar aplikasi ini berfungsi**\n\nPersyaratan dapat ditemukan [di sini](https://nextcloud.github.io/news/install/#dependencies)\n\nPerubahan tersedia [di sini](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nBuat [laporan kutu](https://github.com/nextcloud/news/issues/new/choose)\n\nBuat [permintaan fitur](https://github.com/nextcloud/news/discussions/new)\n\nLaporkan [masalah umpan](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Eksekusi tugas terakhir dijalankan {relativeTime}.\nAda sesuatu yang salah.",
"Last job ran {relativeTime}." : "Tugas terakhir dijalankan {relativeTime}.",
"Use system cron for updates" : "Gunakan cron sistem untuk pembaruan",
"Disable this if you use a custom updater." : "Nonaktifkan ini juga Anda menggunakan pembaru kustom.",
"Maximum read count per feed" : "Jumlah baca maksimum 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." : "Mendefinisikan jumlah maksimum artikel yang dapat dibaca per umpan yang tidak akan dihapus oleh tugas pembersihan; jika artikel lama muncul kembali setelah dibaca, naikkan nilai ini; nilai negatif seperti -1 akan menonaktifkan fitur ini.",
"Delete unread articles automatically" : "Hapus artikel yang tidak dibaca secara otomatis",
"Enable this if you also want to delete unread articles." : "Aktifkan ini jika Anda juga ingin menghapus artikel yang tidak dibaca.",
"Maximum redirects" : "Pengalihan maksimum",
"How many redirects the feed fetcher should follow." : "Berapa arahan pembaca umpan harus mengikuti.",
"Feed fetcher timeout" : "Pengambil feed kehabisan waktu",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Jumlah maksimum untuk menunggu umpan RSS atau Atom untuk dimuat; jika membutuhkan waktu yang lama, pembaruan akan dibatalkan.",
"Explore Service URL" : "URL Layanan Jelajah",
"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." : "Jika diberikan, URL layanan ini akan dikueri untuk menampilkan umpan dalam bagian umpan jelajah. Untuk membuat layanan jelajah bawaan sebagai cadangan, tinggalkan masukan ini kosong.",
"Update interval" : "Interval pembaruan",
"Interval in seconds in which the feeds will be updated." : "Interval dalam detik di mana umpan akan diperbarui.",
"Successfully updated news configuration" : "Berhasil memperbarui konfigurasi berita",
"Unable to update news config" : "Tidak dapat memperbarui konfigurasi berita",
"Download" : "Unduh",
"Close" : "Tutup",
"Subscribe to" : "Berlangganan ke",
"No articles available" : "Tidak ada artikel yang tersedia",
"No unread articles available" : "Tidak ada artikel yang belum dibaca",
"Open website" : "Buka situs web",
@ -20,9 +42,16 @@
"Keep article unread" : "Tandai artikel belum dibaca",
"Remove keep article unread" : "Hapus tanda artikel belum dibaca",
"Share" : "Bagikan",
"Share with users" : "Bagikan dengan pengguna",
"Username" : "Nama pengguna",
"No users found" : "Tidak ada pengguna yang ditemukan",
"Error while searching for users" : "Terjadi kesalahan mencari pengguna",
"Share on social media" : "Bagikan di media sosial",
"I wanted you to see this article" : "Saya ingin Anda untuk melihat artikel ini",
"Check out this article" : "Lihat artikel ini",
"by" : "oleh",
"from" : "dari",
"shared by" : "dibagikan oleh",
"Play audio" : "Putar audio",
"Download audio" : "Unduh audio",
"Download video" : "Unduh video",
@ -44,6 +73,7 @@
"Load next folder" : "Muat folder berikutnya",
"Scroll to active navigation entry" : "Gulir ke entri navigasi aktif",
"Mark current article's feed/folder read" : "Tandai feed/folder artikel saat ini telah dibaca",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Mode AJAX atau Webcron dideteksi! Umpan Anda tidak akan diperbarui! ",
"How to set up the operating system cron" : "Bagaimana cara menyetel cron sistem operasi",
"Install and set up a faster parallel updater that uses the News app's update API" : "Pasang dan atur pembaruan paralel yang lebih cepat yang menggunakan API pembaruan aplikasi Berita",
"Subscribe" : "Berlangganan",
@ -58,6 +88,7 @@
"Credentials" : "Kredensial",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Kredensial HTTP Basic Auth harus disimpan tidak terenkripsi! Semua dengan akses ke server atau database akan bisa mengaksesnya!",
"Password" : "Kata Sandi",
"Auto discover Feed" : "Jelajahi umpan otomatis",
"New Folder" : "Folder Baru",
"Create" : "Buat",
"Explore" : "Jelajah",
@ -66,8 +97,17 @@
"Undo delete feed" : "Batalkan hapus feed",
"Rename" : "Ubah nama",
"Menu" : "Menu",
"Mark read" : "Tandai sebagai dibaca",
"Unpin from top" : "Lepaskan pin dari atas",
"Pin to top" : "Sematkan ke atas",
"Newest first" : "Terbaru",
"Oldest first" : "Paling lama",
"Default order" : "Urutan bawaan",
"Enable full text" : "Aktifkan teks lengkap",
"Disable full text" : "Nonaktifkan teks lengkap",
"Unread updated" : "Tidak dibaca diperbarui",
"Ignore updated" : "Abaikan diperbarui",
"Open feed URL" : "Buka URL umpan",
"Delete" : "Hapus",
"Dismiss" : "Buang",
"Collapse" : "Tutup",
@ -84,6 +124,7 @@
"Subscriptions (OPML)" : "Berlangganan (OPML)",
"Import" : "Impor",
"Export" : "Ekspor",
"Error when importing: File does not contain valid OPML" : "Terjadi kesalahan saat mengimpor: Berkas tidak berisi OPML yang valid",
"Error when importing: OPML is does neither contain feeds nor folders" : "Terjadi kesalahan saat mengimpor: OPML tidak berisi feed ataupun folder",
"Unread/Starred Articles" : "Artikel dibintangi/belum dibaca",
"Error when importing: file does not contain valid JSON" : "Terjadi kesalahan saat mengimor: berkas tidak berisi JSON yang sah",

View File

@ -13,6 +13,7 @@ OC.L10N.register(
"Shared with me" : "Condivisi con me",
"An RSS/Atom feed reader" : "Un lettore di fonti 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'app per la lettura di feed RSS/Atom per Nextcloud\n\n- 📲 Sincronizza i tuoi feed con più [clienti] mobili o desktop (https://nextcloud.github.io/news/clients/)\n- 🔄 Aggiornamenti automatici dei tuoi feed di notizie\n- 🆓 Gratuito e open source sotto AGPLv3, senza pubblicità o funzioni premium\n\n**System Cron è attualmente richiesto per il funzionamento di questa app**\n\nI requisiti possono essere trovati [qui](https://nextcloud.github.io/news/install/#dependencies)\n\nIl Changelog è disponibile [qui](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrea una [segnalazione di bug](https://github.com/nextcloud/news/issues/new/choose)\n\nCrea una [richiesta di funzionalità](https://github.com/nextcloud/news/discussions/new)\n\nSegnala un [problema di feed](https://github.com/nextcloud/news/discussions/new) ",
"Last job ran {relativeTime}." : "Ultima esecuzione: {relativeTime}.",
"Use system cron for updates" : "Usa cron di sistema per gli aggiornamenti",
"Disable this if you use a custom updater." : "Disabilita questa opzione se esegui uno strumento di aggiornamento personalizzato.",
"Maximum read count per feed" : "Numero massimo di letture per fonte",

View File

@ -11,6 +11,7 @@
"Shared with me" : "Condivisi con me",
"An RSS/Atom feed reader" : "Un lettore di fonti 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'app per la lettura di feed RSS/Atom per Nextcloud\n\n- 📲 Sincronizza i tuoi feed con più [clienti] mobili o desktop (https://nextcloud.github.io/news/clients/)\n- 🔄 Aggiornamenti automatici dei tuoi feed di notizie\n- 🆓 Gratuito e open source sotto AGPLv3, senza pubblicità o funzioni premium\n\n**System Cron è attualmente richiesto per il funzionamento di questa app**\n\nI requisiti possono essere trovati [qui](https://nextcloud.github.io/news/install/#dependencies)\n\nIl Changelog è disponibile [qui](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCrea una [segnalazione di bug](https://github.com/nextcloud/news/issues/new/choose)\n\nCrea una [richiesta di funzionalità](https://github.com/nextcloud/news/discussions/new)\n\nSegnala un [problema di feed](https://github.com/nextcloud/news/discussions/new) ",
"Last job ran {relativeTime}." : "Ultima esecuzione: {relativeTime}.",
"Use system cron for updates" : "Usa cron di sistema per gli aggiornamenti",
"Disable this if you use a custom updater." : "Disabilita questa opzione se esegui uno strumento di aggiornamento personalizzato.",
"Maximum read count per feed" : "Numero massimo di letture per fonte",

View File

@ -13,6 +13,7 @@ OC.L10N.register(
"Shared with me" : "私と共有",
"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)" : "📰 NextcloudのためのRSS/Atomフィードリーダーアプリ\n\n- 📲 お持ちのモバイル端末またはデスクトップ間でフィードを同期 [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 ニュースフィードの自動更新\n- 🆓AGPLv3下の無料・オープンソースにより、広告や有料のプレミアム機能はありません\n\n**このアプリの動作にはシステムのCron機能が必要です**\n\nシステム要件は [here](https://nextcloud.github.io/news/install/#dependencies)\n\n変更履歴は [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n[bug report]から不具合報告(https://github.com/nextcloud/news/issues/new/choose)\n\n[feature request]から機能をリクエスト(https://github.com/nextcloud/news/discussions/new)\n\n[feed issue]からフィードの問題を報告(https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "最終ジョブ実行は {relativeTime} です。",
"Use system cron for updates" : "更新のためにOSのcronを使用",
"Disable this if you use a custom updater." : "カスタムアップデーターをご利用中の場合はこちらを無効にしてください。",
"Maximum read count per feed" : "フィード当たりの最大閲覧数",

View File

@ -11,6 +11,7 @@
"Shared with me" : "私と共有",
"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)" : "📰 NextcloudのためのRSS/Atomフィードリーダーアプリ\n\n- 📲 お持ちのモバイル端末またはデスクトップ間でフィードを同期 [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 ニュースフィードの自動更新\n- 🆓AGPLv3下の無料・オープンソースにより、広告や有料のプレミアム機能はありません\n\n**このアプリの動作にはシステムのCron機能が必要です**\n\nシステム要件は [here](https://nextcloud.github.io/news/install/#dependencies)\n\n変更履歴は [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n[bug report]から不具合報告(https://github.com/nextcloud/news/issues/new/choose)\n\n[feature request]から機能をリクエスト(https://github.com/nextcloud/news/discussions/new)\n\n[feed issue]からフィードの問題を報告(https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "最終ジョブ実行は {relativeTime} です。",
"Use system cron for updates" : "更新のためにOSのcronを使用",
"Disable this if you use a custom updater." : "カスタムアップデーターをご利用中の場合はこちらを無効にしてください。",
"Maximum read count per feed" : "フィード当たりの最大閲覧数",

View File

@ -10,6 +10,7 @@ OC.L10N.register(
"News" : "뉴스",
"Shared with me" : "나와 공유됨",
"An RSS/Atom feed reader" : "RSS/Atom 피드 리더",
"Last job ran {relativeTime}." : "마지막 작업이 {relativeTime}에 실행되었음",
"Use system cron for updates" : "시스템 cron으로 업데이트",
"Maximum read count per feed" : "피드당 최대 읽은 글 개수",
"Maximum redirects" : "최대 넘겨주기 수",

View File

@ -8,6 +8,7 @@
"News" : "뉴스",
"Shared with me" : "나와 공유됨",
"An RSS/Atom feed reader" : "RSS/Atom 피드 리더",
"Last job ran {relativeTime}." : "마지막 작업이 {relativeTime}에 실행되었음",
"Use system cron for updates" : "시스템 cron으로 업데이트",
"Maximum read count per feed" : "피드당 최대 읽은 글 개수",
"Maximum redirects" : "최대 넘겨주기 수",

View File

@ -7,16 +7,23 @@ OC.L10N.register(
"Token expired or app not enabled! Reload the page!" : "Pasibaigė prieigos raktų galiojimas arba programėlė nėra įjungta! Įkelkite puslapį iš naujo!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vidinė serverio klaida! Išsamesnei informacijai, žiūrėkite „data/nextcloud.log“ failą!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Užklausa nepavyko, Nextcloud šiuo metu yra techninės priežiūros veiksenoje!",
"News feeds" : "Naujienų kanalai",
"Unread articles" : "Neskaityti straipsniai",
"News" : "Naujienos",
"News folders" : "Naujienų aplankai",
"News articles" : "Naujienų straipsniai",
"An RSS/Atom feed reader" : "RSS/Atom kanalų skaitytuvė",
"Last job ran {relativeTime}." : "Paskutinis užduoties vykdymas buvo atliktas {relativeTime}.",
"Use system cron for updates" : "Atnaujinimams naudoti sistemos planuoklę (cron)",
"Maximum read count per feed" : "Didžiausias kanalo straipsnių kiekis",
"Delete unread articles automatically" : "Automatiškai ištrinti neskaitytus straipsnius",
"Enable this if you also want to delete unread articles." : "Įjunkite, jei tuo pačiu norite ištrinti neskaitytus straipsnius.",
"Maximum redirects" : "Daugiausiai peradresavimų",
"How many redirects the feed fetcher should follow." : "Kiek kartų kanalų gaviklis turėtų sekti paskui peradresavimus.",
"Feed fetcher timeout" : "Kanalų gavimui skirtas laikas",
"Explore Service URL" : "Išžvalgymo paslaugos URL",
"Successfully updated news configuration" : "Naujienų konfigūracija sėkmingai atnaujinta",
"Unable to update news config" : "Nepavyko atnaujinti naujienų konfigūracijos",
"Download" : "Atsisiųsti",
"Close" : "Užverti",
"Subscribe to" : "Prenumeruoti",

View File

@ -5,16 +5,23 @@
"Token expired or app not enabled! Reload the page!" : "Pasibaigė prieigos raktų galiojimas arba programėlė nėra įjungta! Įkelkite puslapį iš naujo!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vidinė serverio klaida! Išsamesnei informacijai, žiūrėkite „data/nextcloud.log“ failą!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Užklausa nepavyko, Nextcloud šiuo metu yra techninės priežiūros veiksenoje!",
"News feeds" : "Naujienų kanalai",
"Unread articles" : "Neskaityti straipsniai",
"News" : "Naujienos",
"News folders" : "Naujienų aplankai",
"News articles" : "Naujienų straipsniai",
"An RSS/Atom feed reader" : "RSS/Atom kanalų skaitytuvė",
"Last job ran {relativeTime}." : "Paskutinis užduoties vykdymas buvo atliktas {relativeTime}.",
"Use system cron for updates" : "Atnaujinimams naudoti sistemos planuoklę (cron)",
"Maximum read count per feed" : "Didžiausias kanalo straipsnių kiekis",
"Delete unread articles automatically" : "Automatiškai ištrinti neskaitytus straipsnius",
"Enable this if you also want to delete unread articles." : "Įjunkite, jei tuo pačiu norite ištrinti neskaitytus straipsnius.",
"Maximum redirects" : "Daugiausiai peradresavimų",
"How many redirects the feed fetcher should follow." : "Kiek kartų kanalų gaviklis turėtų sekti paskui peradresavimus.",
"Feed fetcher timeout" : "Kanalų gavimui skirtas laikas",
"Explore Service URL" : "Išžvalgymo paslaugos URL",
"Successfully updated news configuration" : "Naujienų konfigūracija sėkmingai atnaujinta",
"Unable to update news config" : "Nepavyko atnaujinti naujienų konfigūracijos",
"Download" : "Atsisiųsti",
"Close" : "Užverti",
"Subscribe to" : "Prenumeruoti",

View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Unread articles" : "Непрочитани статии",
"News" : "Новости",
"Last job ran {relativeTime}." : "Последната процедура се изврши пред {relativeTime}.",
"Download" : "Преземи",
"Close" : "Затвори",
"Open website" : "Отвори вебсајт",

View File

@ -1,6 +1,7 @@
{ "translations": {
"Unread articles" : "Непрочитани статии",
"News" : "Новости",
"Last job ran {relativeTime}." : "Последната процедура се изврши пред {relativeTime}.",
"Download" : "Преземи",
"Close" : "Затвори",
"Open website" : "Отвори вебсајт",

View File

@ -3,20 +3,37 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Forespørsel mislyktes, nettverksforbindelse utilgjengelig!",
"Request unauthorized. Are you logged in?" : "Forespørsel uautorisert. Er du logget inn?",
"Request forbidden. Are you an administrator?" : "Forespørsel forbudt. Er du administrator?",
"Token expired or app not enabled! Reload the page!" : "Nøkkel utløpt eller app ikke aktivert! Last siden på nytt!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern feil! Sjekk dine data/nextcloud.log fil for mer informasjon.",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørsel mislyktes, Nextcloud er i vedlikeholdsmodus!",
"News feeds" : "Nyhetsstrømmer",
"Unread articles" : "Uleste artikler",
"News" : "Nyheter",
"News folders" : "Nyhetsmapper",
"News articles" : "Nyhetsartikler",
"Shared with me" : "Delt med meg",
"An RSS/Atom feed reader" : "En RSS/Atom-leser",
"Last job ran {relativeTime}." : "Siste jobb kjørte {relativeTime}.",
"Use system cron for updates" : "Bruk system-cron for oppdateringer",
"Disable this if you use a custom updater." : "Deaktiver dette hvis du bruker en egen oppdaterer.",
"Maximum read count per feed" : "Maksimalt antall lest pr. strøm",
"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 maksimalt antall artikler som kan leses per strøm som ikke vil bli slettet av oppryddingsjobben; hvis gamle artikler dukker opp igjen etter å ha blitt lest, øk denne verdien; negative verdier som -1 vil slå av denne funksjonen.",
"Delete unread articles automatically" : "Slett uleste artikler automatisk",
"Enable this if you also want to delete unread articles." : "Aktiver dette hvis du også ønsker å slette uleste artikler.",
"Maximum redirects" : "Maksimalt antall videresendinger",
"How many redirects the feed fetcher should follow." : "Hvor mange omdirigeringer strøm-henteren skal følge.",
"Feed fetcher timeout" : "Tidsavbrudd for henting av strøm",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maksimalt antall sekunder å vente på at en RSS- eller Atom-strøm skal lastes; hvis det tar lengre tid vil oppdateringen bli avbrutt.",
"Explore Service URL" : "URL for utforskertjeneste",
"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 gitt, vil denne tjenestens URL bli forespurt for å vise innmatingene i utforsk-strøm-seksjonen. For å falle tilbake til den innebygde utforsketjenesten, la dette stå tomt.",
"Update interval" : "Oppdateringsintervall",
"Interval in seconds in which the feeds will be updated." : "Intervall i sekunder som strømmene vil bli oppdatert.",
"Successfully updated news configuration" : "Nyhetskonfigurasjonen er oppdatert",
"Unable to update news config" : "Kan ikke oppdatere nyhetskonfigurasjonen",
"Download" : "Last ned",
"Close" : "Lukk",
"Subscribe to" : "Abonner på",
"No articles available" : "Ingen artikler tilgjengelig",
"No unread articles available" : "Ingen uleste artikler tilgjengelig",
"Open website" : "Åpne nettside",
@ -25,9 +42,16 @@ OC.L10N.register(
"Keep article unread" : "Behold artikkelen ulest",
"Remove keep article unread" : "Fjern behold artikkelen ulest",
"Share" : "Del",
"Share with users" : "Del med brukere",
"Username" : "Brukernavn",
"No users found" : "Ingen brukere funnet",
"Error while searching for users" : "Feil under søk etter brukere",
"Share on social media" : "Del på sosiale medier",
"I wanted you to see this article" : "Jeg ville at du skulle se denne artikkelen",
"Check out this article" : "Sjekk ut denne artikkelen",
"by" : "av",
"from" : "fra",
"shared by" : "delt av",
"Play audio" : "Spill lyd",
"Download audio" : "Last ned lyd",
"Download video" : "Last ned video",
@ -64,6 +88,7 @@ OC.L10N.register(
"Credentials" : "Påloggingsdetaljer",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Detaljer for HTTP Basic Auth må lagres ukryptert! Alle med tilgang til serveren eller databasen vil være i stand til å nå dem!",
"Password" : "Passord",
"Auto discover Feed" : "Automatisk oppdag strøm",
"New Folder" : "Ny mappe",
"Create" : "Opprett",
"Explore" : "Utforsk",

View File

@ -1,20 +1,37 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Forespørsel mislyktes, nettverksforbindelse utilgjengelig!",
"Request unauthorized. Are you logged in?" : "Forespørsel uautorisert. Er du logget inn?",
"Request forbidden. Are you an administrator?" : "Forespørsel forbudt. Er du administrator?",
"Token expired or app not enabled! Reload the page!" : "Nøkkel utløpt eller app ikke aktivert! Last siden på nytt!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern feil! Sjekk dine data/nextcloud.log fil for mer informasjon.",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørsel mislyktes, Nextcloud er i vedlikeholdsmodus!",
"News feeds" : "Nyhetsstrømmer",
"Unread articles" : "Uleste artikler",
"News" : "Nyheter",
"News folders" : "Nyhetsmapper",
"News articles" : "Nyhetsartikler",
"Shared with me" : "Delt med meg",
"An RSS/Atom feed reader" : "En RSS/Atom-leser",
"Last job ran {relativeTime}." : "Siste jobb kjørte {relativeTime}.",
"Use system cron for updates" : "Bruk system-cron for oppdateringer",
"Disable this if you use a custom updater." : "Deaktiver dette hvis du bruker en egen oppdaterer.",
"Maximum read count per feed" : "Maksimalt antall lest pr. strøm",
"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 maksimalt antall artikler som kan leses per strøm som ikke vil bli slettet av oppryddingsjobben; hvis gamle artikler dukker opp igjen etter å ha blitt lest, øk denne verdien; negative verdier som -1 vil slå av denne funksjonen.",
"Delete unread articles automatically" : "Slett uleste artikler automatisk",
"Enable this if you also want to delete unread articles." : "Aktiver dette hvis du også ønsker å slette uleste artikler.",
"Maximum redirects" : "Maksimalt antall videresendinger",
"How many redirects the feed fetcher should follow." : "Hvor mange omdirigeringer strøm-henteren skal følge.",
"Feed fetcher timeout" : "Tidsavbrudd for henting av strøm",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maksimalt antall sekunder å vente på at en RSS- eller Atom-strøm skal lastes; hvis det tar lengre tid vil oppdateringen bli avbrutt.",
"Explore Service URL" : "URL for utforskertjeneste",
"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 gitt, vil denne tjenestens URL bli forespurt for å vise innmatingene i utforsk-strøm-seksjonen. For å falle tilbake til den innebygde utforsketjenesten, la dette stå tomt.",
"Update interval" : "Oppdateringsintervall",
"Interval in seconds in which the feeds will be updated." : "Intervall i sekunder som strømmene vil bli oppdatert.",
"Successfully updated news configuration" : "Nyhetskonfigurasjonen er oppdatert",
"Unable to update news config" : "Kan ikke oppdatere nyhetskonfigurasjonen",
"Download" : "Last ned",
"Close" : "Lukk",
"Subscribe to" : "Abonner på",
"No articles available" : "Ingen artikler tilgjengelig",
"No unread articles available" : "Ingen uleste artikler tilgjengelig",
"Open website" : "Åpne nettside",
@ -23,9 +40,16 @@
"Keep article unread" : "Behold artikkelen ulest",
"Remove keep article unread" : "Fjern behold artikkelen ulest",
"Share" : "Del",
"Share with users" : "Del med brukere",
"Username" : "Brukernavn",
"No users found" : "Ingen brukere funnet",
"Error while searching for users" : "Feil under søk etter brukere",
"Share on social media" : "Del på sosiale medier",
"I wanted you to see this article" : "Jeg ville at du skulle se denne artikkelen",
"Check out this article" : "Sjekk ut denne artikkelen",
"by" : "av",
"from" : "fra",
"shared by" : "delt av",
"Play audio" : "Spill lyd",
"Download audio" : "Last ned lyd",
"Download video" : "Last ned video",
@ -62,6 +86,7 @@
"Credentials" : "Påloggingsdetaljer",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "Detaljer for HTTP Basic Auth må lagres ukryptert! Alle med tilgang til serveren eller databasen vil være i stand til å nå dem!",
"Password" : "Passord",
"Auto discover Feed" : "Automatisk oppdag strøm",
"New Folder" : "Ny mappe",
"Create" : "Opprett",
"Explore" : "Utforsk",

View File

@ -13,6 +13,7 @@ OC.L10N.register(
"Shared with me" : "Gedeeld met mij",
"An RSS/Atom feed reader" : "Een RSS/Atom kanaal lezer",
"📰 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)" : "📰 Een RSS/Atom Feed lezer App voor Nextcloud\n\n- 📲 Synchronizeer je feeds met meerdere mobiele of desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische updates van je nieuwsfeeds\n- 🆓 Gratis en open source onder AGPLv3, geen advertenties of premium functies\n\n**Systeem Cron is momenteel vereist om deze app te laten werken**\n\nBenodigdheden kunnen [hier](https://nextcloud.github.io/news/install/#dependencies) gevonden worden\n\nHet Veranderingslogboek is [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md) beschikbaar\n\nCreëer een [bug rapport](https://github.com/nextcloud/news/issues/new/choose)\n\nCreëer een [functie aanvraag](https://github.com/nextcloud/news/discussions/new)\n\nRapporteer een [feed probleem](https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "Laatste taak liep {relativeTime}.",
"Use system cron for updates" : "Gebruik system cron voor updates",
"Disable this if you use a custom updater." : "Schakel dit uit als je een aangepaste updater gebruikt.",
"Maximum read count per feed" : "Maximaal aantal gelezen per feed",

View File

@ -11,6 +11,7 @@
"Shared with me" : "Gedeeld met mij",
"An RSS/Atom feed reader" : "Een RSS/Atom kanaal lezer",
"📰 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)" : "📰 Een RSS/Atom Feed lezer App voor Nextcloud\n\n- 📲 Synchronizeer je feeds met meerdere mobiele of desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische updates van je nieuwsfeeds\n- 🆓 Gratis en open source onder AGPLv3, geen advertenties of premium functies\n\n**Systeem Cron is momenteel vereist om deze app te laten werken**\n\nBenodigdheden kunnen [hier](https://nextcloud.github.io/news/install/#dependencies) gevonden worden\n\nHet Veranderingslogboek is [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md) beschikbaar\n\nCreëer een [bug rapport](https://github.com/nextcloud/news/issues/new/choose)\n\nCreëer een [functie aanvraag](https://github.com/nextcloud/news/discussions/new)\n\nRapporteer een [feed probleem](https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "Laatste taak liep {relativeTime}.",
"Use system cron for updates" : "Gebruik system cron voor updates",
"Disable this if you use a custom updater." : "Schakel dit uit als je een aangepaste updater gebruikt.",
"Maximum read count per feed" : "Maximaal aantal gelezen per feed",

View File

@ -14,6 +14,7 @@ OC.L10N.register(
"Shared with me" : "Udostępnione dla mnie",
"An RSS/Atom feed reader" : "Czytnik kanałów 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)" : "📰 Aplikacja do czytania kanałów RSS/Atom dla Nextcloud\n\n- 📲 Synchronizuj swoje kanały z wieloma [klientami](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatyczne aktualizacje kanałów informacyjnych\n- 🆓 Darmowe i otwarte źródło w ramach AGPLv3, bez reklam i funkcji premium\n\n**System Cron jest obecnie wymagany do działania tej aplikacji**\n\nWymagania można znaleźć [tutaj](https://nextcloud.github.io/news/install/#dependencies)\n\nDziennik zmian jest dostępna [tutaj](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nUtwórz [raport o błędzie](https://github.com/nextcloud/news/issues/new/choose)\n\nUtwórz [żądanie funkcji](https://github.com/nextcloud/news/discussions/new)\n\nZgłoś [problem z kanałem](https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "Ostatnie zadanie zostało uruchomione {relativeTime}.",
"Use system cron for updates" : "Użyj systemowego crona do aktualizacji",
"Disable this if you use a custom updater." : "Wyłącz tę opcję, jeśli używasz niestandardowego aktualizatora.",
"Maximum read count per feed" : "Maksymalna ilość odczytów na kanał",

View File

@ -12,6 +12,7 @@
"Shared with me" : "Udostępnione dla mnie",
"An RSS/Atom feed reader" : "Czytnik kanałów 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)" : "📰 Aplikacja do czytania kanałów RSS/Atom dla Nextcloud\n\n- 📲 Synchronizuj swoje kanały z wieloma [klientami](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatyczne aktualizacje kanałów informacyjnych\n- 🆓 Darmowe i otwarte źródło w ramach AGPLv3, bez reklam i funkcji premium\n\n**System Cron jest obecnie wymagany do działania tej aplikacji**\n\nWymagania można znaleźć [tutaj](https://nextcloud.github.io/news/install/#dependencies)\n\nDziennik zmian jest dostępna [tutaj](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nUtwórz [raport o błędzie](https://github.com/nextcloud/news/issues/new/choose)\n\nUtwórz [żądanie funkcji](https://github.com/nextcloud/news/discussions/new)\n\nZgłoś [problem z kanałem](https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "Ostatnie zadanie zostało uruchomione {relativeTime}.",
"Use system cron for updates" : "Użyj systemowego crona do aktualizacji",
"Disable this if you use a custom updater." : "Wyłącz tę opcję, jeśli używasz niestandardowego aktualizatora.",
"Maximum read count per feed" : "Maksymalna ilość odczytów na kanał",

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Artigos não lidos",
"News" : "Notícias",
"News folders" : "Pastas de notícias",
"News articles" : "Novos artigos",
"Shared with me" : "Compartilhado comigo",
"An RSS/Atom feed reader" : "Um leitor de 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)" : "📰 Um aplicativo leitor de feed RSS/Atom para Nextcloud\n\n- 📲 Sincronize seus feeds com vários dispositivos móveis ou desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Atualizações automáticas de seus feeds de notícias\n- 🆓 Gratuito e de código aberto sob AGPLv3, sem anúncios ou funções premium\n\n**Atualmente, o Cron do sistema é necessário para que este aplicativo funcione**\n\nAtualmente, o Cron do sistema é necessário para que este aplicativo funcione [here](https://nextcloud.github.io/news/install/#dependencies)\n\nO Changelog está disponível [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreiar um [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCriar uma [feature request](https://github.com/nextcloud/news/discussions/new)\n\nRelatório [feed issue](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Last job execution ran {relativeTime}. Something seems wrong.",
"Last job ran {relativeTime}." : "A última tarefa foi executada {relativeTime}.",
"Use system cron for updates" : "Usar o sistema Cron para atualizações",
"Disable this if you use a custom updater." : "Desative isso se você usar um atualizador personalizado. ",
"Maximum read count per feed" : "O número máximo de leituras por feed",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Artigos não lidos",
"News" : "Notícias",
"News folders" : "Pastas de notícias",
"News articles" : "Novos artigos",
"Shared with me" : "Compartilhado comigo",
"An RSS/Atom feed reader" : "Um leitor de 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)" : "📰 Um aplicativo leitor de feed RSS/Atom para Nextcloud\n\n- 📲 Sincronize seus feeds com vários dispositivos móveis ou desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Atualizações automáticas de seus feeds de notícias\n- 🆓 Gratuito e de código aberto sob AGPLv3, sem anúncios ou funções premium\n\n**Atualmente, o Cron do sistema é necessário para que este aplicativo funcione**\n\nAtualmente, o Cron do sistema é necessário para que este aplicativo funcione [here](https://nextcloud.github.io/news/install/#dependencies)\n\nO Changelog está disponível [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreiar um [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCriar uma [feature request](https://github.com/nextcloud/news/discussions/new)\n\nRelatório [feed issue](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Last job execution ran {relativeTime}. Something seems wrong.",
"Last job ran {relativeTime}." : "A última tarefa foi executada {relativeTime}.",
"Use system cron for updates" : "Usar o sistema Cron para atualizações",
"Disable this if you use a custom updater." : "Desative isso se você usar um atualizador personalizado. ",
"Maximum read count per feed" : "O número máximo de leituras por feed",

View File

@ -106,7 +106,7 @@ OC.L10N.register(
"Collapse" : "Restrânge",
"Deleted folder" : "Director șters",
"Undo delete folder" : "Anulează ștergerea directorului",
"Starred" : "Marcat",
"Starred" : "Articole selectate",
"All articles" : "Toate articolele",
"Settings" : "Setări",
"Disable mark read through scrolling" : "Dezactivează funcția de \"citit\" prin derulare",

View File

@ -104,7 +104,7 @@
"Collapse" : "Restrânge",
"Deleted folder" : "Director șters",
"Undo delete folder" : "Anulează ștergerea directorului",
"Starred" : "Marcat",
"Starred" : "Articole selectate",
"All articles" : "Toate articolele",
"Settings" : "Setări",
"Disable mark read through scrolling" : "Dezactivează funcția de \"citit\" prin derulare",

View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Запрос не удался, нет сетевого соединения!",
"Request unauthorized. Are you logged in?" : "Запрос не авторизован. Вы вошли в систему?",
"Request forbidden. Are you an administrator?" : "Запрос запрещён. Вы действительно администратор?",
"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!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Запрос не удался, в настоящий момент Nextcloud включен в режиме обслуживания!",
@ -10,12 +11,18 @@ OC.L10N.register(
"Unread articles" : "Непрочтённые статьи",
"News" : "Новости",
"News folders" : "Каталог новостей",
"News articles" : "Каталог статей",
"Shared with me" : "Поделились с вами",
"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 для Nextcloud\n\n- 📲 Синхронизация ваших лент с несколькими мобильными или настольными [клиентами] (https://nextcloud.github.io/news/clients/)\n- 🔄 Автоматическое обновление ваших новостных лент\n- 🆓 Бесплатно и с открытым исходным кодом по AGPLv3, без рекламы и премиум-функций\n\n**Для работы этого приложения требуется системный 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Последнее задание было выполнено {relativeTime}. Похоже, что-то не в порядке.",
"Last job ran {relativeTime}." : "Последнее задание было запущено {relativeTime}.",
"Use system cron for updates" : "Для получения обновлений используйте системный cron",
"Disable this if you use a custom updater." : "Отключите эту функцию, если вы используете пользовательскую программу обновления.",
"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" : "Максимум перенаправлений",
"How many redirects the feed fetcher should follow." : "Сколько перенаправлений должен обрабатывать загрузчик лент.",
"Feed fetcher timeout" : "Время ожидания для загрузчика ленты",
@ -24,6 +31,8 @@ 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 будет опрашиваться для отображения лент в секции Обзор. Для использования встроенного сервиса, оставьте поле ввода пустым.",
"Update interval" : "Интервал обновления",
"Interval in seconds in which the feeds will be updated." : "Интервал обновления лент в секундах",
"Successfully updated news configuration" : "Конфигурация новостей успешно обновлена",
"Unable to update news config" : "Не удалось обновить конфигурацию новостей",
"Download" : "Скачать",
"Close" : "Закрыть",
"Subscribe to" : "Подписаться",

View File

@ -1,6 +1,7 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Запрос не удался, нет сетевого соединения!",
"Request unauthorized. Are you logged in?" : "Запрос не авторизован. Вы вошли в систему?",
"Request forbidden. Are you an administrator?" : "Запрос запрещён. Вы действительно администратор?",
"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!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Запрос не удался, в настоящий момент Nextcloud включен в режиме обслуживания!",
@ -8,12 +9,18 @@
"Unread articles" : "Непрочтённые статьи",
"News" : "Новости",
"News folders" : "Каталог новостей",
"News articles" : "Каталог статей",
"Shared with me" : "Поделились с вами",
"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 для Nextcloud\n\n- 📲 Синхронизация ваших лент с несколькими мобильными или настольными [клиентами] (https://nextcloud.github.io/news/clients/)\n- 🔄 Автоматическое обновление ваших новостных лент\n- 🆓 Бесплатно и с открытым исходным кодом по AGPLv3, без рекламы и премиум-функций\n\n**Для работы этого приложения требуется системный 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Последнее задание было выполнено {relativeTime}. Похоже, что-то не в порядке.",
"Last job ran {relativeTime}." : "Последнее задание было запущено {relativeTime}.",
"Use system cron for updates" : "Для получения обновлений используйте системный cron",
"Disable this if you use a custom updater." : "Отключите эту функцию, если вы используете пользовательскую программу обновления.",
"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" : "Максимум перенаправлений",
"How many redirects the feed fetcher should follow." : "Сколько перенаправлений должен обрабатывать загрузчик лент.",
"Feed fetcher timeout" : "Время ожидания для загрузчика ленты",
@ -22,6 +29,8 @@
"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" : "Интервал обновления",
"Interval in seconds in which the feeds will be updated." : "Интервал обновления лент в секундах",
"Successfully updated news configuration" : "Конфигурация новостей успешно обновлена",
"Unable to update news config" : "Не удалось обновить конфигурацию новостей",
"Download" : "Скачать",
"Close" : "Закрыть",
"Subscribe to" : "Подписаться",

View File

@ -14,6 +14,7 @@ OC.L10N.register(
"Shared with me" : "Zdieľané so mnou",
"An RSS/Atom feed reader" : "RSS/Atom čítačka",
"📰 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)" : "Reader Aplikácia na čítanie kanálov RSS/Atom pre Nextcloud\n\n- 📲 Synchronizujte svoje kanály s viacerými [klientmi] pre mobily alebo počítače (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatické aktualizácie vašich spravodajských kanálov\n- 🆓 Voľný a otvorený zdroj pod AGPLv3, žiadne reklamy ani prémiové funkcie\n\n** Na to, aby táto aplikácia fungovala, je momentálne potrebný Systemový Cron **\n\nPožiadavky nájdete [tu] (https://nextcloud.github.io/news/install/#dependencies)\n\nZoznam zmien je k dispozícii [tu] (https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nVytvorte [hlásenie chyby] (https://github.com/nextcloud/news/issues/new/choose)\n\nVytvorte [žiadosť o funkciu] (https://github.com/nextcloud/news/discussions/new)\n\nNahlásiť [problém s kanálom] (https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "Posledná úloha bežala {relativeTime}.",
"Use system cron for updates" : "Použiť systémový plánovač cron pre aktualizácie",
"Disable this if you use a custom updater." : "Toto vypnite ak používate vlastný updater.",
"Maximum read count per feed" : "Maximálny počet noviniek pre kanál",

View File

@ -12,6 +12,7 @@
"Shared with me" : "Zdieľané so mnou",
"An RSS/Atom feed reader" : "RSS/Atom čítačka",
"📰 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)" : "Reader Aplikácia na čítanie kanálov RSS/Atom pre Nextcloud\n\n- 📲 Synchronizujte svoje kanály s viacerými [klientmi] pre mobily alebo počítače (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatické aktualizácie vašich spravodajských kanálov\n- 🆓 Voľný a otvorený zdroj pod AGPLv3, žiadne reklamy ani prémiové funkcie\n\n** Na to, aby táto aplikácia fungovala, je momentálne potrebný Systemový Cron **\n\nPožiadavky nájdete [tu] (https://nextcloud.github.io/news/install/#dependencies)\n\nZoznam zmien je k dispozícii [tu] (https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nVytvorte [hlásenie chyby] (https://github.com/nextcloud/news/issues/new/choose)\n\nVytvorte [žiadosť o funkciu] (https://github.com/nextcloud/news/discussions/new)\n\nNahlásiť [problém s kanálom] (https://github.com/nextcloud/news/discussions/new)",
"Last job ran {relativeTime}." : "Posledná úloha bežala {relativeTime}.",
"Use system cron for updates" : "Použiť systémový plánovač cron pre aktualizácie",
"Disable this if you use a custom updater." : "Toto vypnite ak používate vlastný updater.",
"Maximum read count per feed" : "Maximálny počet noviniek pre kanál",

View File

@ -12,6 +12,7 @@ OC.L10N.register(
"News folders" : "Mape novic",
"Shared with me" : "V souporabi z mano",
"An RSS/Atom feed reader" : "Bralnik virov RSS/Atom",
"Last job ran {relativeTime}." : "osvežitev je bila nazadnje izvedena {relativeTime}.",
"Use system cron for updates" : "Za posodobitve uporabi sistemski program »cron«",
"Disable this if you use a custom updater." : "Možnost onemogočite, če uporabljate posodabljalnik po meri.",
"Maximum read count per feed" : "Največje število prikazanih virov",

View File

@ -10,6 +10,7 @@
"News folders" : "Mape novic",
"Shared with me" : "V souporabi z mano",
"An RSS/Atom feed reader" : "Bralnik virov RSS/Atom",
"Last job ran {relativeTime}." : "osvežitev je bila nazadnje izvedena {relativeTime}.",
"Use system cron for updates" : "Za posodobitve uporabi sistemski program »cron«",
"Disable this if you use a custom updater." : "Možnost onemogočite, če uporabljate posodabljalnik po meri.",
"Maximum read count per feed" : "Največje število prikazanih virov",

View File

@ -3,15 +3,26 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Неуспео захтев. Мрежа није доступна!",
"Request unauthorized. Are you logged in?" : "Неовлашћен захтев. Јесте ли пријављени?",
"Request forbidden. Are you an administrator?" : "Захтев је забрањен. Да ли сте администратор?",
"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 фајл за додатне информације!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Неуспео захтев. Некстклауд сервер је тренутно у режиму приступа само једног корисника!",
"News feeds" : "Наслови вести",
"Unread articles" : "Непрочитани чланци",
"News" : "Вести",
"News folders" : "Фолдери вести",
"News articles" : "Чланци вести",
"Shared with me" : "Дељено са мном",
"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 читача за Некстклауд\n\n- 📲 Синхронизујте своје наслове са више мобилних или десктоп [клијената](https://nextcloud.github.io/news/clients/)\n- 🔄 Аутоматско ажурирње ваших налсова вести\n- 🆓 Слободно и отвореног кода под AGPLv3, без реклама или премијум функција\n\n**Тренутно је неопходан системски 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Последњи посао се извршавао {relativeTime}. Изгледа да нешто није у реду.",
"Last job ran {relativeTime}." : "Последњи посао се извршавао {relativeTime}.",
"Use system cron for updates" : "Користи системски крон за ажурирања",
"Disable this if you use a custom updater." : "Искључите ово ако користите прилагођени програм за ажурирање.",
"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" : "Највише преусмеравања",
"How many redirects the feed fetcher should follow." : "Колико ће се преусмеравања следити.",
"Feed fetcher timeout" : "Рок добављања довода",
@ -20,6 +31,8 @@ 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." : "Ако је дато, ова сервисна адреса ће бити упитана за приказивање у секцији за истраживање довода. За повратак на коришћење уграђеног сервиса за истраживање, оставите ово празно.",
"Update interval" : "Време ажурирања",
"Interval in seconds in which the feeds will be updated." : "Интервал у секундама у којем се ће доводи да се ажурирају.",
"Successfully updated news configuration" : "Конфигурација вести је успешно ажурирана",
"Unable to update news config" : "Кофигурација вести не може да се ажурира",
"Download" : "Преузми",
"Close" : "Затвори",
"Subscribe to" : "Претплати се на",
@ -31,9 +44,16 @@ OC.L10N.register(
"Keep article unread" : "Остави чланак непрочитаним",
"Remove keep article unread" : "Уклони да остане непрочитан",
"Share" : "Подели",
"Share with users" : "Подели са корисницима",
"Username" : "Корисничко име",
"No users found" : "Није пронађен ниједан корисник",
"Error while searching for users" : "Грешка приликом тражења корисника",
"Share on social media" : "Поделите на друштвеним медијима",
"I wanted you to see this article" : "Хтео сам да погледаш овај чланак",
"Check out this article" : "Погледај овај чланак",
"by" : "од",
"from" : "од",
"shared by" : "поделио",
"Play audio" : "Пусти аудио",
"Download audio" : "Преузми аудио",
"Download video" : "Преузми видео",
@ -70,6 +90,7 @@ OC.L10N.register(
"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 акредитиви морају бити сачувани нешифровани! Свак са приступом серверу или бази ће моћи да им приступи!",
"Password" : "Лозинка",
"Auto discover Feed" : "Аутоматско откривање Наслова",
"New Folder" : "Нова фасцикла",
"Create" : "Направи",
"Explore" : "Истражи",

View File

@ -1,15 +1,26 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Неуспео захтев. Мрежа није доступна!",
"Request unauthorized. Are you logged in?" : "Неовлашћен захтев. Јесте ли пријављени?",
"Request forbidden. Are you an administrator?" : "Захтев је забрањен. Да ли сте администратор?",
"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 фајл за додатне информације!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Неуспео захтев. Некстклауд сервер је тренутно у режиму приступа само једног корисника!",
"News feeds" : "Наслови вести",
"Unread articles" : "Непрочитани чланци",
"News" : "Вести",
"News folders" : "Фолдери вести",
"News articles" : "Чланци вести",
"Shared with me" : "Дељено са мном",
"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 читача за Некстклауд\n\n- 📲 Синхронизујте своје наслове са више мобилних или десктоп [клијената](https://nextcloud.github.io/news/clients/)\n- 🔄 Аутоматско ажурирње ваших налсова вести\n- 🆓 Слободно и отвореног кода под AGPLv3, без реклама или премијум функција\n\n**Тренутно је неопходан системски 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)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Последњи посао се извршавао {relativeTime}. Изгледа да нешто није у реду.",
"Last job ran {relativeTime}." : "Последњи посао се извршавао {relativeTime}.",
"Use system cron for updates" : "Користи системски крон за ажурирања",
"Disable this if you use a custom updater." : "Искључите ово ако користите прилагођени програм за ажурирање.",
"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" : "Највише преусмеравања",
"How many redirects the feed fetcher should follow." : "Колико ће се преусмеравања следити.",
"Feed fetcher timeout" : "Рок добављања довода",
@ -18,6 +29,8 @@
"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" : "Време ажурирања",
"Interval in seconds in which the feeds will be updated." : "Интервал у секундама у којем се ће доводи да се ажурирају.",
"Successfully updated news configuration" : "Конфигурација вести је успешно ажурирана",
"Unable to update news config" : "Кофигурација вести не може да се ажурира",
"Download" : "Преузми",
"Close" : "Затвори",
"Subscribe to" : "Претплати се на",
@ -29,9 +42,16 @@
"Keep article unread" : "Остави чланак непрочитаним",
"Remove keep article unread" : "Уклони да остане непрочитан",
"Share" : "Подели",
"Share with users" : "Подели са корисницима",
"Username" : "Корисничко име",
"No users found" : "Није пронађен ниједан корисник",
"Error while searching for users" : "Грешка приликом тражења корисника",
"Share on social media" : "Поделите на друштвеним медијима",
"I wanted you to see this article" : "Хтео сам да погледаш овај чланак",
"Check out this article" : "Погледај овај чланак",
"by" : "од",
"from" : "од",
"shared by" : "поделио",
"Play audio" : "Пусти аудио",
"Download audio" : "Преузми аудио",
"Download video" : "Преузми видео",
@ -68,6 +88,7 @@
"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 акредитиви морају бити сачувани нешифровани! Свак са приступом серверу или бази ће моћи да им приступи!",
"Password" : "Лозинка",
"Auto discover Feed" : "Аутоматско откривање Наслова",
"New Folder" : "Нова фасцикла",
"Create" : "Направи",
"Explore" : "Истражи",

View File

@ -12,6 +12,7 @@ OC.L10N.register(
"News folders" : "Nyhetsmappar",
"Shared with me" : "Delad med mig",
"An RSS/Atom feed reader" : "En RSS/Atom feed-läsare",
"Last job ran {relativeTime}." : "Senaste jobbet kördes {relativeTime}.",
"Use system cron for updates" : "Använda \"system cron\" för uppdateringar",
"Disable this if you use a custom updater." : "Slå av detta om du anväder en egen uppdateringsprocess.",
"Maximum read count per feed" : "Maximalt läsantal per flöde",

View File

@ -10,6 +10,7 @@
"News folders" : "Nyhetsmappar",
"Shared with me" : "Delad med mig",
"An RSS/Atom feed reader" : "En RSS/Atom feed-läsare",
"Last job ran {relativeTime}." : "Senaste jobbet kördes {relativeTime}.",
"Use system cron for updates" : "Använda \"system cron\" för uppdateringar",
"Disable this if you use a custom updater." : "Slå av detta om du anväder en egen uppdateringsprocess.",
"Maximum read count per feed" : "Maximalt läsantal per flöde",

View File

@ -1,92 +1,94 @@
OC.L10N.register(
"news",
{
"Request failed, network connection unavailable!" : "คำขอล้มเหลวเชื่อมต่อเครือข่ายไม่ได้!",
"Request unauthorized. Are you logged in?" : "คำขอไม่ได้รับอนุญาต คุณเข้าสู่ระบบ?",
"Token expired or app not enabled! Reload the page!" : "โทเค็นหมดอายุหรือไม่เปิดใช้งานแอพพลิเคชัน! โหลดหน้าใหม่อีกครั้ง!",
"Request failed, network connection unavailable!" : "คำขอล้มเหลว ไม่มีการเชื่อมต่อเครือข่าย!",
"Request unauthorized. Are you logged in?" : "คำขอไม่ได้รับอนุญาต คุณเข้าสู่ระบบอยู่หรือเปล่า?",
"Token expired or app not enabled! Reload the page!" : "โทเค็นหมดอายุหรือไม่ได้เปิดใช้งานแอป! กรุณาโหลดหน้าใหม่!",
"Unread articles" : "บทความที่ยังไม่ได้อ่าน",
"Maximum read count per feed" : "นับจำนวนอ่านสูงสุดต่อฟีด",
"Maximum read count per feed" : "จำนวนอ่านสูงสุดต่อฟีด",
"Maximum redirects" : "เปลี่ยนเส้นทางสูงสุด",
"Feed fetcher timeout" : "ตัวเรียกฟีดหมดเวลา",
"Explore Service URL" : "สำรวจบริการ URL",
"Explore Service URL" : "URL บริการสำรวจ",
"Download" : "ดาวน์โหลด",
"Close" : "ปิด",
"No articles available" : "ไม่มีบทความที่",
"No articles available" : "ไม่มีบทความที่อ่านได้",
"No unread articles available" : "ไม่มีบทความที่ยังไม่ได้อ่าน",
"Open website" : "เปิดเว็บไซต์",
"Star article" : "บทความติดดาว",
"Unstar article" : "ยกเลิกติดดาวบทความ",
"Keep article unread" : "ตั้งเป็นยังไม่ได้อ่านบทความ",
"Remove keep article unread" : "ลบการตั้งเป็นยังไม่ได้อ่านบทความ",
"Star article" : "ติดดาวบทความ",
"Unstar article" : "เลิกติดดาวบทความ",
"Keep article unread" : "ตั้งเป็นบทความยังไม่ได้อ่าน",
"Remove keep article unread" : "การลบคงสถานะบทความยังไม่ได้อ่าน",
"Share" : "แชร์",
"Username" : "ชื่อผู้ใช้",
"by" : "โดย",
"from" : "จาก",
"Play audio" : "เล่นเพลง",
"Download audio" : "ดาวน์โหลดเพลง",
"Play audio" : "เล่นเสียง",
"Download audio" : "ดาวน์โหลดเสียง",
"Download video" : "ดาวน์โหลดวิดีโอ",
"Keyboard shortcut" : "แป้นพิมพ์ลัด",
"Description" : "คำอธิบาย",
"right" : "ขวา",
"Jump to next article" : "ข้ามไปยังบทความถัดไป",
"left" : "ซ้าย",
"Jump to previous article" : "ข้ามไปยังบทความก่อนหน้านี้",
"Toggle star article" : "สลับบทความติดดาว",
"Star article and jump to next one" : "บทความติดดาวและกระข้ามไปอีกหน้าหนึ่ง",
"Jump to previous article" : "ข้ามไปยังบทความก่อนหน้า",
"Toggle star article" : "สลับการติดดาวบทความ",
"Star article and jump to next one" : "ติดดาวบทความและข้ามไปบทความถัดไป",
"Toggle keep current article unread" : "สลับให้บทความในปัจจุบันยังไม่ได้อ่าน",
"Open article in new tab" : "เปิดบทความในแท็บใหม่",
"Toggle expand article in compact view" : "สลับการขยายบทความในมุมมองที่เล็กลง",
"Toggle expand article in compact view" : "สลับการขยายบทความในมุมมองแบบย่อ",
"Refresh" : "รีเฟรช",
"Load next feed" : "โหลดฟีดถัดไป",
"Load previous feed" : "โหลดฟีดก่อนหน้านี้",
"Load previous feed" : "โหลดฟีดก่อนหน้า",
"Load previous folder" : "โหลดโฟลเดอร์ก่อนหน้า",
"Load next folder" : "โหลดโฟลเดอร์ถัดไป",
"Scroll to active navigation entry" : "เลื่อนเพื่อใช้งานรายการนำทาง",
"Mark current article's feed/folder read" : "ทำเครื่องหมายอ่านบทความปัจจุบัน ฟีด/โฟลเดอร์",
"How to set up the operating system cron" : "วิธีการตั้งค่าระบบปฏิบัติการ cron",
"Install and set up a faster parallel updater that uses the News app's update API" : "ติดตั้งและตั้งค่าการอัพเดทขนานที่เร็วขึ้นน้้นใช้ แอพฯข่าวการอัพเดท API",
"Scroll to active navigation entry" : "เลื่อนไปยังรายการนำทางที่ใช้อยู่",
"Mark current article's feed/folder read" : "ทำฟีด/โฟลเดอร์ของบทความปัจจุบันเป็นอ่านแล้ว",
"How to set up the operating system cron" : "วิธีการตั้งค่า cron ของระบบปฏิบัติการ",
"Install and set up a faster parallel updater that uses the News app's update API" : "ติดตั้งและตั้งค่าตัวอัปเดตขนานที่เร็วขึ้น ซึ่งใช้ API การอัปเดตของแอปข่าว",
"Subscribe" : "สมัครรับข้อมูล",
"Web address" : "ที่อยู่เว็บ",
"Feed exists already!" : "ฟีดมีอยู่แล้วในระบบ!",
"Folder" : "แฟ้มเอกสาร",
"Feed exists already!" : "ฟีดมีอยู่แล้ว!",
"Folder" : "โฟลเดอร์",
"No folder" : "ไม่มีโฟลเดอร์",
"New folder" : "โฟลเดอร์ใหม่",
"Folder name" : "ชื่อโฟลเดอร์",
"Go back" : "กลับไป",
"Folder exists already!" : "โฟลเดอร์มีอยู่แล้วในระบบ",
"Credentials" : "ข้อมูลส่วนตัวสำหรับเข้าระบบ",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "ข้อมูลประจำตัวการตรวจสอบสิทธิ์พื้นฐานของ HTTP จะต้องเก็บไว้แบบไม่ได้เข้ารหัสลับ! ทุกคนที่มีการเข้าถึงเซิร์ฟเวอร์หรือฐานข้อมูลจะสามารถเข้าถึงมันได้!",
"Folder exists already!" : "โฟลเดอร์มีอยู่แล้ว!",
"Credentials" : "ข้อมูลประจำตัว",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "ข้อมูลประจำตัวการตรวจสอบสิทธิ์พื้นฐานของ HTTP จะต้องเก็บไว้แบบไม่เข้ารหัส! ทุกคนที่มีการเข้าถึงเซิร์ฟเวอร์หรือฐานข้อมูลจะสามารถเข้าถึงมันได้!",
"Password" : "รหัสผ่าน",
"New Folder" : "โฟลเดอร์ใหม่",
"Create" : "สร้าง",
"Explore" : "สำรวจ",
"Update failed more than 50 times" : "อัพเดทล้มเหลวมากกว่า 50 ครั้ง",
"Update failed more than 50 times" : "อัปเดตล้มเหลวมากกว่า 50 ครั้ง",
"Deleted feed" : "ฟีดที่ถูกลบ",
"Undo delete feed" : "ยกเลิกการลบฟีด",
"Undo delete feed" : "เลิกทำการลบฟีด",
"Rename" : "เปลี่ยนชื่อ",
"Menu" : "เมนู",
"Newest first" : "ใหม่ที่สุดก่อน",
"Oldest first" : "เก่าที่สุดก่อน",
"Delete" : "ลบ",
"Dismiss" : "ยกเลิก",
"Dismiss" : "ปิดทิ้ง",
"Collapse" : "ย่อ",
"Deleted folder" : "โฟลเดอร์ที่ถูกลบ",
"Undo delete folder" : "ยกเลิกการลบโฟลเดอร์",
"Undo delete folder" : "เลิกทำการลบโฟลเดอร์",
"Starred" : "ติดดาวแล้ว",
"All articles" : "บทความทั้งหมด",
"Settings" : "ตั้งค่า",
"Disable mark read through scrolling" : "ปิดการใช้งานเครื่องหมายอ่านอ่านแล้วผ่านการเลื่อน",
"Compact view" : "มุมมองขนาดเล็ก",
"Expand articles on key navigation" : "ขยายบทความเกี่ยวกับการนำทางที่สำคัญ",
"Settings" : "การตั้งค่า",
"Disable mark read through scrolling" : "ปิดการทำเป็นอ่านแล้วขณะเลื่อนผ่าน",
"Compact view" : "มุมมองแบบย่อ",
"Expand articles on key navigation" : "ขยายบทความขณะนำทางด้วยแป้น",
"Show all articles" : "แสดงบทความทั้งหมด",
"Reverse ordering (oldest on top)" : "ย้อนกลับรายการ (เก่าที่สุดอยู่ด้านบน)",
"Subscriptions (OPML)" : "สมัครเป็นสมาชิก (OPML)",
"Reverse ordering (oldest on top)" : "เรียงในลำดับย้อนกลับ (เก่าสุดอยู่ด้านบน)",
"Subscriptions (OPML)" : "การสมัครใช้งาน (OPML)",
"Import" : "นำเข้า",
"Export" : "ส่งออก",
"Error when importing: OPML is does neither contain feeds nor folders" : "ข้อผิดพลาดเมื่อนำเข้า: OPML ไม่มีค่าฟีดหรือโฟลเดอร์",
"Unread/Starred Articles" : "บทความที่ ยังไม่ได้อ่าน/ติดดาว",
"Error when importing: file does not contain valid JSON" : "ข้อผิดพลาดเมื่อนำเข้า: ไฟล์มี JSON ที่ไม่ถูกต้อง",
"Error when importing: OPML is does neither contain feeds nor folders" : "ข้อผิดพลาดขณะนำเข้า: OPML ไม่มีฟีดหรือโฟลเดอร์",
"Unread/Starred Articles" : "บทความที่ยังไม่ได้อ่าน/ติดดาว",
"Error when importing: file does not contain valid JSON" : "ข้อผิดพลาดขณะนำเข้า: ไฟล์ไม่มี JSON ที่ถูกต้อง",
"Help" : "ช่วยเหลือ",
"Keyboard shortcuts" : "ปุ่มลัด",
"Documentation" : "เอกสารคู่มือประกอบการใช้งาน",
"Keyboard shortcuts" : "แป้นพิมพ์ลัด",
"Documentation" : "เอกสารประกอบ",
"Report a bug" : "รายงานข้อผิดพลาด"
},
"nplurals=1; plural=0;");

View File

@ -1,90 +1,92 @@
{ "translations": {
"Request failed, network connection unavailable!" : "คำขอล้มเหลวเชื่อมต่อเครือข่ายไม่ได้!",
"Request unauthorized. Are you logged in?" : "คำขอไม่ได้รับอนุญาต คุณเข้าสู่ระบบ?",
"Token expired or app not enabled! Reload the page!" : "โทเค็นหมดอายุหรือไม่เปิดใช้งานแอพพลิเคชัน! โหลดหน้าใหม่อีกครั้ง!",
"Request failed, network connection unavailable!" : "คำขอล้มเหลว ไม่มีการเชื่อมต่อเครือข่าย!",
"Request unauthorized. Are you logged in?" : "คำขอไม่ได้รับอนุญาต คุณเข้าสู่ระบบอยู่หรือเปล่า?",
"Token expired or app not enabled! Reload the page!" : "โทเค็นหมดอายุหรือไม่ได้เปิดใช้งานแอป! กรุณาโหลดหน้าใหม่!",
"Unread articles" : "บทความที่ยังไม่ได้อ่าน",
"Maximum read count per feed" : "นับจำนวนอ่านสูงสุดต่อฟีด",
"Maximum read count per feed" : "จำนวนอ่านสูงสุดต่อฟีด",
"Maximum redirects" : "เปลี่ยนเส้นทางสูงสุด",
"Feed fetcher timeout" : "ตัวเรียกฟีดหมดเวลา",
"Explore Service URL" : "สำรวจบริการ URL",
"Explore Service URL" : "URL บริการสำรวจ",
"Download" : "ดาวน์โหลด",
"Close" : "ปิด",
"No articles available" : "ไม่มีบทความที่",
"No articles available" : "ไม่มีบทความที่อ่านได้",
"No unread articles available" : "ไม่มีบทความที่ยังไม่ได้อ่าน",
"Open website" : "เปิดเว็บไซต์",
"Star article" : "บทความติดดาว",
"Unstar article" : "ยกเลิกติดดาวบทความ",
"Keep article unread" : "ตั้งเป็นยังไม่ได้อ่านบทความ",
"Remove keep article unread" : "ลบการตั้งเป็นยังไม่ได้อ่านบทความ",
"Star article" : "ติดดาวบทความ",
"Unstar article" : "เลิกติดดาวบทความ",
"Keep article unread" : "ตั้งเป็นบทความยังไม่ได้อ่าน",
"Remove keep article unread" : "การลบคงสถานะบทความยังไม่ได้อ่าน",
"Share" : "แชร์",
"Username" : "ชื่อผู้ใช้",
"by" : "โดย",
"from" : "จาก",
"Play audio" : "เล่นเพลง",
"Download audio" : "ดาวน์โหลดเพลง",
"Play audio" : "เล่นเสียง",
"Download audio" : "ดาวน์โหลดเสียง",
"Download video" : "ดาวน์โหลดวิดีโอ",
"Keyboard shortcut" : "แป้นพิมพ์ลัด",
"Description" : "คำอธิบาย",
"right" : "ขวา",
"Jump to next article" : "ข้ามไปยังบทความถัดไป",
"left" : "ซ้าย",
"Jump to previous article" : "ข้ามไปยังบทความก่อนหน้านี้",
"Toggle star article" : "สลับบทความติดดาว",
"Star article and jump to next one" : "บทความติดดาวและกระข้ามไปอีกหน้าหนึ่ง",
"Jump to previous article" : "ข้ามไปยังบทความก่อนหน้า",
"Toggle star article" : "สลับการติดดาวบทความ",
"Star article and jump to next one" : "ติดดาวบทความและข้ามไปบทความถัดไป",
"Toggle keep current article unread" : "สลับให้บทความในปัจจุบันยังไม่ได้อ่าน",
"Open article in new tab" : "เปิดบทความในแท็บใหม่",
"Toggle expand article in compact view" : "สลับการขยายบทความในมุมมองที่เล็กลง",
"Toggle expand article in compact view" : "สลับการขยายบทความในมุมมองแบบย่อ",
"Refresh" : "รีเฟรช",
"Load next feed" : "โหลดฟีดถัดไป",
"Load previous feed" : "โหลดฟีดก่อนหน้านี้",
"Load previous feed" : "โหลดฟีดก่อนหน้า",
"Load previous folder" : "โหลดโฟลเดอร์ก่อนหน้า",
"Load next folder" : "โหลดโฟลเดอร์ถัดไป",
"Scroll to active navigation entry" : "เลื่อนเพื่อใช้งานรายการนำทาง",
"Mark current article's feed/folder read" : "ทำเครื่องหมายอ่านบทความปัจจุบัน ฟีด/โฟลเดอร์",
"How to set up the operating system cron" : "วิธีการตั้งค่าระบบปฏิบัติการ cron",
"Install and set up a faster parallel updater that uses the News app's update API" : "ติดตั้งและตั้งค่าการอัพเดทขนานที่เร็วขึ้นน้้นใช้ แอพฯข่าวการอัพเดท API",
"Scroll to active navigation entry" : "เลื่อนไปยังรายการนำทางที่ใช้อยู่",
"Mark current article's feed/folder read" : "ทำฟีด/โฟลเดอร์ของบทความปัจจุบันเป็นอ่านแล้ว",
"How to set up the operating system cron" : "วิธีการตั้งค่า cron ของระบบปฏิบัติการ",
"Install and set up a faster parallel updater that uses the News app's update API" : "ติดตั้งและตั้งค่าตัวอัปเดตขนานที่เร็วขึ้น ซึ่งใช้ API การอัปเดตของแอปข่าว",
"Subscribe" : "สมัครรับข้อมูล",
"Web address" : "ที่อยู่เว็บ",
"Feed exists already!" : "ฟีดมีอยู่แล้วในระบบ!",
"Folder" : "แฟ้มเอกสาร",
"Feed exists already!" : "ฟีดมีอยู่แล้ว!",
"Folder" : "โฟลเดอร์",
"No folder" : "ไม่มีโฟลเดอร์",
"New folder" : "โฟลเดอร์ใหม่",
"Folder name" : "ชื่อโฟลเดอร์",
"Go back" : "กลับไป",
"Folder exists already!" : "โฟลเดอร์มีอยู่แล้วในระบบ",
"Credentials" : "ข้อมูลส่วนตัวสำหรับเข้าระบบ",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "ข้อมูลประจำตัวการตรวจสอบสิทธิ์พื้นฐานของ HTTP จะต้องเก็บไว้แบบไม่ได้เข้ารหัสลับ! ทุกคนที่มีการเข้าถึงเซิร์ฟเวอร์หรือฐานข้อมูลจะสามารถเข้าถึงมันได้!",
"Folder exists already!" : "โฟลเดอร์มีอยู่แล้ว!",
"Credentials" : "ข้อมูลประจำตัว",
"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!" : "ข้อมูลประจำตัวการตรวจสอบสิทธิ์พื้นฐานของ HTTP จะต้องเก็บไว้แบบไม่เข้ารหัส! ทุกคนที่มีการเข้าถึงเซิร์ฟเวอร์หรือฐานข้อมูลจะสามารถเข้าถึงมันได้!",
"Password" : "รหัสผ่าน",
"New Folder" : "โฟลเดอร์ใหม่",
"Create" : "สร้าง",
"Explore" : "สำรวจ",
"Update failed more than 50 times" : "อัพเดทล้มเหลวมากกว่า 50 ครั้ง",
"Update failed more than 50 times" : "อัปเดตล้มเหลวมากกว่า 50 ครั้ง",
"Deleted feed" : "ฟีดที่ถูกลบ",
"Undo delete feed" : "ยกเลิกการลบฟีด",
"Undo delete feed" : "เลิกทำการลบฟีด",
"Rename" : "เปลี่ยนชื่อ",
"Menu" : "เมนู",
"Newest first" : "ใหม่ที่สุดก่อน",
"Oldest first" : "เก่าที่สุดก่อน",
"Delete" : "ลบ",
"Dismiss" : "ยกเลิก",
"Dismiss" : "ปิดทิ้ง",
"Collapse" : "ย่อ",
"Deleted folder" : "โฟลเดอร์ที่ถูกลบ",
"Undo delete folder" : "ยกเลิกการลบโฟลเดอร์",
"Undo delete folder" : "เลิกทำการลบโฟลเดอร์",
"Starred" : "ติดดาวแล้ว",
"All articles" : "บทความทั้งหมด",
"Settings" : "ตั้งค่า",
"Disable mark read through scrolling" : "ปิดการใช้งานเครื่องหมายอ่านอ่านแล้วผ่านการเลื่อน",
"Compact view" : "มุมมองขนาดเล็ก",
"Expand articles on key navigation" : "ขยายบทความเกี่ยวกับการนำทางที่สำคัญ",
"Settings" : "การตั้งค่า",
"Disable mark read through scrolling" : "ปิดการทำเป็นอ่านแล้วขณะเลื่อนผ่าน",
"Compact view" : "มุมมองแบบย่อ",
"Expand articles on key navigation" : "ขยายบทความขณะนำทางด้วยแป้น",
"Show all articles" : "แสดงบทความทั้งหมด",
"Reverse ordering (oldest on top)" : "ย้อนกลับรายการ (เก่าที่สุดอยู่ด้านบน)",
"Subscriptions (OPML)" : "สมัครเป็นสมาชิก (OPML)",
"Reverse ordering (oldest on top)" : "เรียงในลำดับย้อนกลับ (เก่าสุดอยู่ด้านบน)",
"Subscriptions (OPML)" : "การสมัครใช้งาน (OPML)",
"Import" : "นำเข้า",
"Export" : "ส่งออก",
"Error when importing: OPML is does neither contain feeds nor folders" : "ข้อผิดพลาดเมื่อนำเข้า: OPML ไม่มีค่าฟีดหรือโฟลเดอร์",
"Unread/Starred Articles" : "บทความที่ ยังไม่ได้อ่าน/ติดดาว",
"Error when importing: file does not contain valid JSON" : "ข้อผิดพลาดเมื่อนำเข้า: ไฟล์มี JSON ที่ไม่ถูกต้อง",
"Error when importing: OPML is does neither contain feeds nor folders" : "ข้อผิดพลาดขณะนำเข้า: OPML ไม่มีฟีดหรือโฟลเดอร์",
"Unread/Starred Articles" : "บทความที่ยังไม่ได้อ่าน/ติดดาว",
"Error when importing: file does not contain valid JSON" : "ข้อผิดพลาดขณะนำเข้า: ไฟล์ไม่มี JSON ที่ถูกต้อง",
"Help" : "ช่วยเหลือ",
"Keyboard shortcuts" : "ปุ่มลัด",
"Documentation" : "เอกสารคู่มือประกอบการใช้งาน",
"Keyboard shortcuts" : "แป้นพิมพ์ลัด",
"Documentation" : "เอกสารประกอบ",
"Report a bug" : "รายงานข้อผิดพลาด"
},"pluralForm" :"nplurals=1; plural=0;"
}

View File

@ -11,9 +11,12 @@ OC.L10N.register(
"Unread articles" : "Okunmamış makaleler",
"News" : "Haberler",
"News folders" : "Haberler klasörleri",
"News articles" : "Haber makaleleri",
"Shared with me" : "Benimle paylaşılanlar",
"An RSS/Atom feed reader" : "Bu uygulama RSS/Atom akışlarının okunmasını sağlar",
"📰 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)" : "📰 Nextcloud için RSS/Atom akışı okuyucusu\n\n- 📲 Akışlarınızı birkaç mobil ya da masaüstü [istemci](https://nextcloud.github.io/news/clients/) ile eşitler\n- 🔄 Haber akışlarını otomatik olarak günceller\n- 🆓 Özgür ve açık kaynaklıdır, AGPLv3 lisansı koşulları altında dağıtılır, reklam ya da ücretli özellikler bulundurmaz\n\n**Bu uygulamanın çalışması için sistem zamanlanmış görevi gereklidir**\n\nGereksinimler için [buraya bakabilirsiniz](https://nextcloud.github.io/news/install/#dependencies)\n\nDeğişiklik günlüğü için [buraya bakabilirsiniz](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n[Hata bildiriminde bulunun](https://github.com/nextcloud/news/issues/new/choose)\n\n[Özellik isteğinde bulunun](https://github.com/nextcloud/news/discussions/new)\n\n[Bir akış sorununu bildirin](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Son görev yürütülmesi: {relativeTime}. Yanlış bir şeyler var.",
"Last job ran {relativeTime}." : "Son görev yürütülmesi: {relativeTime}.",
"Use system cron for updates" : "Güncellemeler için sistem zamanlanmış görevi kullanılsın",
"Disable this if you use a custom updater." : "Özel bir güncelleyici çalıştırıyorsanız bu seçeneği devre dışı bırakın.",
"Maximum read count per feed" : "Bir akış için en fazla okuma sayısı",
@ -35,7 +38,7 @@ OC.L10N.register(
"Subscribe to" : "Şuna abone ol",
"No articles available" : "Henüz bir makale yok",
"No unread articles available" : "Okunmamış bir makale yok",
"Open website" : "Web sitesini aç",
"Open website" : "Siteyi aç",
"Star article" : "Makaleye yıldız koy",
"Unstar article" : "Makalenin yıldızını kaldır",
"Keep article unread" : "Makaleyi okunmamış olarak tut",
@ -62,7 +65,7 @@ OC.L10N.register(
"Jump to previous article" : "Önceki makaleye geç",
"Toggle star article" : "Makale yıldızını değiştir",
"Star article and jump to next one" : "Makaleyi yıldızla ve sonrakine geç",
"Toggle keep current article unread" : "Geçerli makalenin okunmamış olarak işaretle/kaldır",
"Toggle keep current article unread" : "Geçerli makaleyi okunmamış olarak işaretle/kaldır",
"Open article in new tab" : "Makaleyi yeni sekmede aç",
"Toggle expand article in compact view" : "Sıkışık görünümde makaleyi genişlet/daralt",
"Refresh" : "Yenile",
@ -72,11 +75,11 @@ OC.L10N.register(
"Load next folder" : "Sonraki klasörü yükle",
"Scroll to active navigation entry" : "Gezinti girişini etkinleştirmek için kaydırın",
"Mark current article's feed/folder read" : "Geçerli makale akışını/klasörünü okunmuş olarak işaretle",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Ajax ya da Web zamanlanmış görev kipi algılandı! Akışlarınız güncellenmeyecek!",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Ajax ya da internet zamanlanmış görev kipi algılandı! Akışlarınız güncellenmeyecek!",
"How to set up the operating system cron" : "İşletim sistemi zamanlanmış görevi nasıl ayarlanır",
"Install and set up a faster parallel updater that uses the News app's update API" : "Haberler uygulamasının güncelleme API yazılımını kullanan daha hızlı bir paralel güncelleyici kurun ve ayarlayın",
"Subscribe" : "Abone ol",
"Web address" : "Web adresi",
"Web address" : "Site adresi",
"Feed exists already!" : "Akış zaten var!",
"Folder" : "Klasör",
"No folder" : "Klasör yok",
@ -85,7 +88,7 @@ OC.L10N.register(
"Go back" : "Geri dön",
"Folder exists already!" : "Klasör zaten var!",
"Credentials" : "Kimlik doğrulama bilgileri",
"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 kimlik doğrulama bilgilerinin şifrelenmemiş olarak depolanması gerektiğinden, sunucu ya da veritabanına erişimi olan herkes bu bilgilere erişebilir!",
"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 kimlik doğrulama bilgilerinin şifrelenmemiş olarak depolanması gerektiğinden, sunucu ya da veri tabanına erişimi olan herkes bu bilgilere erişebilir!",
"Password" : "Parola",
"Auto discover Feed" : "Akışı otomatik bul",
"New Folder" : "Yeni klasör",

View File

@ -9,9 +9,12 @@
"Unread articles" : "Okunmamış makaleler",
"News" : "Haberler",
"News folders" : "Haberler klasörleri",
"News articles" : "Haber makaleleri",
"Shared with me" : "Benimle paylaşılanlar",
"An RSS/Atom feed reader" : "Bu uygulama RSS/Atom akışlarının okunmasını sağlar",
"📰 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)" : "📰 Nextcloud için RSS/Atom akışı okuyucusu\n\n- 📲 Akışlarınızı birkaç mobil ya da masaüstü [istemci](https://nextcloud.github.io/news/clients/) ile eşitler\n- 🔄 Haber akışlarını otomatik olarak günceller\n- 🆓 Özgür ve açık kaynaklıdır, AGPLv3 lisansı koşulları altında dağıtılır, reklam ya da ücretli özellikler bulundurmaz\n\n**Bu uygulamanın çalışması için sistem zamanlanmış görevi gereklidir**\n\nGereksinimler için [buraya bakabilirsiniz](https://nextcloud.github.io/news/install/#dependencies)\n\nDeğişiklik günlüğü için [buraya bakabilirsiniz](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n[Hata bildiriminde bulunun](https://github.com/nextcloud/news/issues/new/choose)\n\n[Özellik isteğinde bulunun](https://github.com/nextcloud/news/discussions/new)\n\n[Bir akış sorununu bildirin](https://github.com/nextcloud/news/discussions/new)",
"Last job execution ran {relativeTime}. Something seems wrong." : "Son görev yürütülmesi: {relativeTime}. Yanlış bir şeyler var.",
"Last job ran {relativeTime}." : "Son görev yürütülmesi: {relativeTime}.",
"Use system cron for updates" : "Güncellemeler için sistem zamanlanmış görevi kullanılsın",
"Disable this if you use a custom updater." : "Özel bir güncelleyici çalıştırıyorsanız bu seçeneği devre dışı bırakın.",
"Maximum read count per feed" : "Bir akış için en fazla okuma sayısı",
@ -33,7 +36,7 @@
"Subscribe to" : "Şuna abone ol",
"No articles available" : "Henüz bir makale yok",
"No unread articles available" : "Okunmamış bir makale yok",
"Open website" : "Web sitesini aç",
"Open website" : "Siteyi aç",
"Star article" : "Makaleye yıldız koy",
"Unstar article" : "Makalenin yıldızını kaldır",
"Keep article unread" : "Makaleyi okunmamış olarak tut",
@ -60,7 +63,7 @@
"Jump to previous article" : "Önceki makaleye geç",
"Toggle star article" : "Makale yıldızını değiştir",
"Star article and jump to next one" : "Makaleyi yıldızla ve sonrakine geç",
"Toggle keep current article unread" : "Geçerli makalenin okunmamış olarak işaretle/kaldır",
"Toggle keep current article unread" : "Geçerli makaleyi okunmamış olarak işaretle/kaldır",
"Open article in new tab" : "Makaleyi yeni sekmede aç",
"Toggle expand article in compact view" : "Sıkışık görünümde makaleyi genişlet/daralt",
"Refresh" : "Yenile",
@ -70,11 +73,11 @@
"Load next folder" : "Sonraki klasörü yükle",
"Scroll to active navigation entry" : "Gezinti girişini etkinleştirmek için kaydırın",
"Mark current article's feed/folder read" : "Geçerli makale akışını/klasörünü okunmuş olarak işaretle",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Ajax ya da Web zamanlanmış görev kipi algılandı! Akışlarınız güncellenmeyecek!",
"Ajax or webcron mode detected! Your feeds will not be updated!" : "Ajax ya da internet zamanlanmış görev kipi algılandı! Akışlarınız güncellenmeyecek!",
"How to set up the operating system cron" : "İşletim sistemi zamanlanmış görevi nasıl ayarlanır",
"Install and set up a faster parallel updater that uses the News app's update API" : "Haberler uygulamasının güncelleme API yazılımını kullanan daha hızlı bir paralel güncelleyici kurun ve ayarlayın",
"Subscribe" : "Abone ol",
"Web address" : "Web adresi",
"Web address" : "Site adresi",
"Feed exists already!" : "Akış zaten var!",
"Folder" : "Klasör",
"No folder" : "Klasör yok",
@ -83,7 +86,7 @@
"Go back" : "Geri dön",
"Folder exists already!" : "Klasör zaten var!",
"Credentials" : "Kimlik doğrulama bilgileri",
"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 kimlik doğrulama bilgilerinin şifrelenmemiş olarak depolanması gerektiğinden, sunucu ya da veritabanına erişimi olan herkes bu bilgilere erişebilir!",
"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 kimlik doğrulama bilgilerinin şifrelenmemiş olarak depolanması gerektiğinden, sunucu ya da veri tabanına erişimi olan herkes bu bilgilere erişebilir!",
"Password" : "Parola",
"Auto discover Feed" : "Akışı otomatik bul",
"New Folder" : "Yeni klasör",

View File

@ -8,6 +8,8 @@ OC.L10N.register(
"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 зараз у режимі обслуговування!",
"Unread articles" : "Непрочитані статті",
"News" : "Новини",
"Last job ran {relativeTime}." : "Останнє завдання виконано {relativeTime}.",
"Use system cron for updates" : "Використовуйте системний cron для оновлень",
"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, вимкнуть цю функцію.",
@ -21,7 +23,7 @@ OC.L10N.register(
"No unread articles available" : "Немає непрочитаних записів",
"Open website" : "Відкрити веб-сайт",
"Star article" : "Позначити статтю",
"Unstar article" : "Зняти позначку статті",
"Unstar article" : "Зняти зірочку зі статті",
"Keep article unread" : "Залишити статтю непрочитаною",
"Remove keep article unread" : "Позначити статтю як прочитану",
"Share" : "Спільний доступ",
@ -72,16 +74,18 @@ OC.L10N.register(
"Rename" : "Перейменувати",
"Menu" : "Меню",
"Mark read" : "Позначити як прочитане",
"Unpin from top" : "Зняти закріплення",
"Pin to top" : "Закріпити нагорі",
"Newest first" : "Новіші спочатку",
"Oldest first" : "Старіші спочатку",
"Enable full text" : "Увімкнути повнотекстовий",
"Disable full text" : "Вимкнути повнотекстовий",
"Enable full text" : "Увімкнути контекстний",
"Disable full text" : "Вимкнути контекстний",
"Delete" : "Вилучити",
"Dismiss" : "Припинити",
"Collapse" : "Згорнути",
"Deleted folder" : "Вилучений каталог",
"Undo delete folder" : "Скасувати вилучення каталогу",
"Starred" : "Помічені зірочкою",
"Starred" : "Із зірочкою",
"All articles" : "Всі статті",
"Settings" : "Налаштування",
"Disable mark read through scrolling" : "Вимкнути читання поміток при прокрутці",

View File

@ -6,6 +6,8 @@
"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 зараз у режимі обслуговування!",
"Unread articles" : "Непрочитані статті",
"News" : "Новини",
"Last job ran {relativeTime}." : "Останнє завдання виконано {relativeTime}.",
"Use system cron for updates" : "Використовуйте системний cron для оновлень",
"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, вимкнуть цю функцію.",
@ -19,7 +21,7 @@
"No unread articles available" : "Немає непрочитаних записів",
"Open website" : "Відкрити веб-сайт",
"Star article" : "Позначити статтю",
"Unstar article" : "Зняти позначку статті",
"Unstar article" : "Зняти зірочку зі статті",
"Keep article unread" : "Залишити статтю непрочитаною",
"Remove keep article unread" : "Позначити статтю як прочитану",
"Share" : "Спільний доступ",
@ -70,16 +72,18 @@
"Rename" : "Перейменувати",
"Menu" : "Меню",
"Mark read" : "Позначити як прочитане",
"Unpin from top" : "Зняти закріплення",
"Pin to top" : "Закріпити нагорі",
"Newest first" : "Новіші спочатку",
"Oldest first" : "Старіші спочатку",
"Enable full text" : "Увімкнути повнотекстовий",
"Disable full text" : "Вимкнути повнотекстовий",
"Enable full text" : "Увімкнути контекстний",
"Disable full text" : "Вимкнути контекстний",
"Delete" : "Вилучити",
"Dismiss" : "Припинити",
"Collapse" : "Згорнути",
"Deleted folder" : "Вилучений каталог",
"Undo delete folder" : "Скасувати вилучення каталогу",
"Starred" : "Помічені зірочкою",
"Starred" : "Із зірочкою",
"All articles" : "Всі статті",
"Settings" : "Налаштування",
"Disable mark read through scrolling" : "Вимкнути читання поміток при прокрутці",

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