1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-09-15 04:32:11 +02:00

Compare commits

1 Commits

Author SHA1 Message Date
b9c807ff63 Add article word count to JSON
Signed-off-by: chylex <contact@chylex.com>
2022-05-28 08:53:40 +02:00
238 changed files with 4147 additions and 33613 deletions

View File

@@ -1,7 +0,0 @@
// SPDX-FileCopyrightText: Carl Schwan <carl@carlschwan.eu>
// SPDX-License-Identifier: AGPL-3.0-or-later
module.exports = {
extends: [
'@nextcloud',
]
}

View File

@@ -13,7 +13,6 @@ updates:
labels:
- "dependencies"
- "Skip-Changelog"
versioning-strategy: increase
# Maintain dependencies for Composer
- package-ecosystem: "composer"
@@ -23,7 +22,6 @@ updates:
labels:
- "dependencies"
- "Skip-Changelog"
versioning-strategy: increase
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"

View File

@@ -33,11 +33,11 @@ jobs:
database: ['sqlite', 'pgsql', 'mysql']
experimental: [false]
include:
- php-versions: '8.0'
- php-versions: 8.0
nextcloud: pre-release
database: sqlite
experimental: true
- php-versions: '8.1'
- php-versions: 8.1
nextcloud: pre-release
database: sqlite
experimental: true
@@ -48,8 +48,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup PHP
uses: shivammathur/setup-php@v2
@@ -58,8 +56,8 @@ jobs:
extensions: pdo_sqlite,pdo_mysql,pdo_pgsql,gd,zip
coverage: none
- name: Setup BATS & httpie
run: sudo apt-get install -y bats httpie
- name: Setup BATS
uses: mig4/setup-bats@v1.2.0
### MySQL specific setup
- name: Setup mysql
@@ -110,22 +108,6 @@ jobs:
check-code: false
force: ${{ matrix.experimental }}
- name: Run API 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/api
# Kill php server
kill %1
kill %2
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
@@ -136,14 +118,7 @@ jobs:
- name: Functional tests
working-directory: ../server
run: |
cd apps/news/tests/test_helper/feeds && php -S localhost:8090 &> /tmp/feedserver.log &
sleep 2
cd ${{ github.workspace }}/../server
bats apps/news/tests/command
run: bats apps/news/tests/integration
- name: Prep PHP tests
working-directory: ../server/apps/news
@@ -152,4 +127,3 @@ jobs:
- name: Feed tests
working-directory: ../server/apps/news
run: make feed-test

View File

@@ -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@483c1e56f95e88835747b1c7c60581215016cbf2
id: attach_to_release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,47 +0,0 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
# SPDX-FileCopyrightText: Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
name: Lint
on:
pull_request:
push:
branches:
- main
- master
- stable*
jobs:
lint:
runs-on: ubuntu-latest
name: eslint
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@v1.2
id: versions
with:
fallbackNode: '^12'
fallbackNpm: '^6'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint

3
.gitignore vendored
View File

@@ -12,9 +12,6 @@ js/*.xml
.phpunit.result.cache
site/
#bats
tests/api/helpers/settings-override.bash
# python
PKG-INFO
*pyc

6
.gitmodules vendored
View File

@@ -1,6 +0,0 @@
[submodule "tests/test_helper/bats-support"]
path = tests/test_helper/bats-support
url = https://github.com/bats-core/bats-support.git
[submodule "tests/test_helper/bats-assert"]
path = tests/test_helper/bats-assert
url = https://github.com/bats-core/bats-assert.git

View File

@@ -1,7 +1,7 @@
# Authors
* [Bernhard Posselt](mailto:dev@bernhard-posselt.com)
* [Benjamin Brahmer](mailto:info@b-brahmer.de)
* [Alessandro Cosentino](mailto:cosenal@gmail.com)
* [Benjamin Brahmer](mailto:info@b-brahmer.de)
* [Marco Nassabain](mailto:marco.nassabain@hotmail.com)
* [Robin Appelman](mailto:icewind@owncloud.com)
* [Sean Molenaar](mailto:sean@seanmolenaar.eu)
@@ -9,10 +9,10 @@
* [Sean Molenaar](mailto:SMillerDev@users.noreply.github.com)
* [anoy](mailto:anoymouserver+github@mailbox.org)
* [Morris Jobke](mailto:hey@morrisjobke.de)
* [Paul Tirk](mailto:paultirk@paultirk.com)
* [Jimmy Huynh](mailto:jimmy.huynh@etu.unistra.fr)
* [Aurélien](mailto:dav.aurelien@gmail.com)
* [Jan-Christoph Borchardt](mailto:hey@jancborchardt.net)
* [Paul Tirk](mailto:paultirk@paultirk.com)
* [Daniel Schaal](mailto:daniel@schaal.email)
* [Davide Saurino](mailto:davide.saurino@alcacoop.it)
* [raghunayyar](mailto:me@iraghu.com)
@@ -71,14 +71,11 @@
* [Valdnet](mailto:47037905+Valdnet@users.noreply.github.com)
* [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)
* [lsmooth](mailto:ls@lsmooth.de)
* [s17t.net](mailto:mail+github@s17t.net)
* [Accalia](mailto:Accalia@Elementia.me)
* [Accalia Elementia](mailto:accalia@elementia.me)
* [Alec Kojaev](mailto:alec@kojaev.name)
* [Alessandro](mailto:cosenal@gmail.com)
* [Alexander Grüßung](mailto:alexander@gruessung-online.de)
@@ -92,7 +89,6 @@
* [Aurelien DAVID](mailto:dav.aurelien@gmail.com)
* [Benedikt Geißler](mailto:benedikt@g5r.eu)
* [Bernhard Posselt](mailto:bernhard@desktop.localdomain)
* [Björn Bidar](mailto:bjorn.bidar@thaodan.de)
* [Candid Dauth](mailto:cdauth@cdauth.eu)
* [Carlos Silva](mailto:r3pek@r3pek.org)
* [Cesar Enrique Garcia Dabo](mailto:enrique@engarda.org)
@@ -179,7 +175,6 @@
* [markusj](mailto:markusj@users.noreply.github.com)
* [mnassabain](mailto:34754819+mnassabain@users.noreply.github.com)
* [mormegil](mailto:mormegil@centrum.cz)
* [nextcloud486153](mailto:78801830+nextcloud486153@users.noreply.github.com)
* [nexus-uw](mailto:you@example.com)
* [repat](mailto:repat@repat.de)
* [ritchiewilson](mailto:rawilson52@gmail.com)

View File

@@ -5,49 +5,13 @@ The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1
# Unreleased
## [18.x.x]
### Changed
### Fixed
# Releases
## [18.2.0-beta1] - 2022-08-30
### Changed
- Ported the admin settings to vue (#2353)
### Fixed
- Fix PHP 8.1 deprecations (#1861)
- Document api item types (#1861)
- Fix deprecation warnings from Nextcloud server (#1869)
- Fix when marking all items as read, all items of the user are used in the sql query (#1873)
- Fix adding feed via the web-ui that was just deleted causing an error (#1872)
## [18.1.1] - 2022-08-12
### Changed
- Change autodiscover to only run after fetching the given url has failed (#1860)
## [18.1.1-beta1] - 2022-07-04
### Fixed
- Fix export of unread and starred articles failing due to postgres error (#1839, #1249)
- Fix broken API v1.3 (#1841)
## [18.1.0] - 2022-06-10
Due to #1766 some Feeds might now have items that have `null` set as author instead of `""` clients need to handle this.
## [18.1.0-beta2] - 2022-05-31
### Changed
- If items of feed do not provide an author fallback to feed author (#1803)
## [18.1.0-beta1] - 2022-05-29
### Changed
- Add API v1.3 adding routes for starring/unstarring items by id and general fixes (#1727)
https://nextcloud.github.io/news/api/api-v1-3/
- Improve styling of tables in articles (#1779)
- Allow fetching feeds that omit guid by using link as stand-in (#1785)
- Add routes for starring/unstarring items by id
### Fixed
- Fix updated api not returning any item after marking item as read (#1713)
- Fix deprecation warning for strip_tags() on a null value (#1766)
- Fix selected item being set incorrectly when using default ordering or newest first ordering (#1324)
- Fix doubling the height of the content area (#1796)
# Releases
## [18.0.1] - 2022-04-22
No major changes since the beta versions.

View File

@@ -83,8 +83,6 @@ endif
# Installs npm dependencies
.PHONY: npm
npm:
$(npm) ci
$(npm) run build
ifneq (, $(npm))
cd js && $(npm) run build
else
@@ -173,7 +171,7 @@ appstore:
# on macOS there is no option "--parents" for the "cp" command
mkdir -p $(appstore_sign_dir)/$(app_name)/js/build $(appstore_sign_dir)/$(app_name)/js/admin
cp js/build/app.min.js $(appstore_sign_dir)/$(app_name)/js/build
cp js/build/news-admin-settings.js* $(appstore_sign_dir)/$(app_name)/js/build
cp js/admin/Admin.js $(appstore_sign_dir)/$(app_name)/js/admin
# export the key and cert to a file
mkdir -p $(cert_dir)

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>18.2.0-beta1</version>
<version>18.0.1</version>
<licence>agpl</licence>
<author>Benjamin Brahmer</author>
<author>Sean Molenaar</author>

View File

@@ -61,61 +61,85 @@ return ['routes' => [
// general API
['name' => 'api#index', 'url' => '/api', 'verb' => 'GET'],
['name' => 'utility_api#preflighted_cors', 'url' => '/api/{apiVersion}/{path}', 'verb' => 'OPTIONS', 'requirements' => ['apiVersion' => 'v(1-[23]|2)', 'path' => '.+']],
['name' => 'utility_api#version', 'url' => '/api/{apiVersion}/version', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v(1-[23]|2)']],
// API 1.x
['name' => 'utility_api#status', 'url' => '/api/{apiVersion}/status', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'utility_api#before_update', 'url' => '/api/{apiVersion}/cleanup/before-update', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'utility_api#after_update', 'url' => '/api/{apiVersion}/cleanup/after-update', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
// folders
['name' => 'folder_api#index', 'url' => '/api/{apiVersion}/folders', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'folder_api#create', 'url' => '/api/{apiVersion}/folders', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'folder_api#update', 'url' => '/api/{apiVersion}/folders/{folderId}', 'verb' => 'PUT', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'folder_api#delete', 'url' => '/api/{apiVersion}/folders/{folderId}', 'verb' => 'DELETE', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'folder_api#read', 'url' => '/api/{apiVersion}/folders/{folderId}/read', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'folder_api#read', 'url' => '/api/v1-2/folders/{folderId}/read', 'verb' => 'PUT', 'postfix' => 'v1.2'], // Backward compatibility. Corrected HTTP method as of v1.3
// feeds
['name' => 'feed_api#index', 'url' => '/api/{apiVersion}/feeds', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'feed_api#create', 'url' => '/api/{apiVersion}/feeds', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'feed_api#update', 'url' => '/api/{apiVersion}/feeds/{feedId}', 'verb' => 'PUT', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'feed_api#delete', 'url' => '/api/{apiVersion}/feeds/{feedId}', 'verb' => 'DELETE', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'feed_api#from_all_users', 'url' => '/api/{apiVersion}/feeds/all', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'feed_api#move', 'url' => '/api/{apiVersion}/feeds/{feedId}/move', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'feed_api#move', 'url' => '/api/v1-2/feeds/{feedId}/move', 'verb' => 'PUT', 'postfix' => 'v1.2'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'feed_api#rename', 'url' => '/api/{apiVersion}/feeds/{feedId}/rename', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'feed_api#rename', 'url' => '/api/v1-2/feeds/{feedId}/rename', 'verb' => 'PUT', 'postfix' => 'v1.2'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'feed_api#read', 'url' => '/api/{apiVersion}/feeds/{feedId}/read', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'feed_api#read', 'url' => '/api/v1-2/feeds/{feedId}/read', 'verb' => 'PUT', 'postfix' => 'v1.2'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'feed_api#update', 'url' => '/api/{apiVersion}/feeds/update', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
// items
['name' => 'item_api#index', 'url' => '/api/{apiVersion}/items', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'item_api#updated', 'url' => '/api/{apiVersion}/items/updated', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v1-[23]']],
['name' => 'item_api#read', 'url' => '/api/{apiVersion}/items/{itemId}/read', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#read', 'url' => '/api/v1-2/items/{itemId}/read', 'verb' => 'PUT', 'postfix' => 'v1.2'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#unread', 'url' => '/api/{apiVersion}/items/{itemId}/unread', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#unread', 'url' => '/api/v1-2/items/{itemId}/unread', 'verb' => 'PUT', 'postfix' => 'v1.2'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#read_all', 'url' => '/api/{apiVersion}/items/read', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#read_all', 'url' => '/api/v1-2/items/read', 'verb' => 'PUT', 'postfix' => 'v1.2'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#read_multiple_by_ids', 'url' => '/api/{apiVersion}/items/read/multiple', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#read_multiple', 'url' => '/api/v1-2/items/read/multiple', 'verb' => 'PUT'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#unread_multiple_by_ids', 'url' => '/api/{apiVersion}/items/unread/multiple', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#unread_multiple', 'url' => '/api/v1-2/items/unread/multiple', 'verb' => 'PUT'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#star_by_item_id', 'url' => '/api/{apiVersion}/items/{itemId}/star', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#star', 'url' => '/api/v1-2/items/{feedId}/{guidHash}/star', 'verb' => 'PUT'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#unstar_by_item_id', 'url' => '/api/{apiVersion}/items/{itemId}/unstar', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#unstar', 'url' => '/api/v1-2/items/{feedId}/{guidHash}/unstar', 'verb' => 'PUT'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#star_multiple_by_item_ids', 'url' => '/api/{apiVersion}/items/star/multiple', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#star_multiple', 'url' => '/api/v1-2/items/star/multiple', 'verb' => 'PUT'], // Backward compatibility. Corrected HTTP method as of v1.3
['name' => 'item_api#unstar_multiple_by_item_ids', 'url' => '/api/{apiVersion}/items/unstar/multiple', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v1-3']],
['name' => 'item_api#unstar_multiple', 'url' => '/api/v1-2/items/unstar/multiple', 'verb' => 'PUT'], // Backward compatibility. Corrected HTTP method as of v1.3
// API 2
['name' => 'folder_api_v2#create', 'url' => '/api/v2/folders', 'verb' => 'POST'],
['name' => 'folder_api_v2#update', 'url' => '/api/v2/folders/{folderId}', 'verb' => 'PATCH'],
['name' => 'folder_api_v2#delete', 'url' => '/api/v2/folders/{folderId}', 'verb' => 'DELETE'],
// API 1.3
['name' => 'utility_api#version', 'url' => '/api/v1-3/version', 'verb' => 'GET'],
['name' => 'utility_api#status', 'url' => '/api/v1-3/status', 'verb' => 'GET'],
['name' => 'utility_api#before_update', 'url' => '/api/v1-3/cleanup/before-update', 'verb' => 'GET'],
['name' => 'utility_api#after_update', 'url' => '/api/v1-3/cleanup/after-update', 'verb' => 'GET'],
['name' => 'utility_api#preflighted_cors', 'url' => '/api/v1-3/{path}', 'verb' => 'OPTIONS', 'requirements' => ['path' => '.+']],
// folders
['name' => 'folder_api#index', 'url' => '/api/v1-3/folders', 'verb' => 'GET'],
['name' => 'folder_api#create', 'url' => '/api/v1-3/folders', 'verb' => 'POST'],
['name' => 'folder_api#update', 'url' => '/api/v1-3/folders/{folderId}', 'verb' => 'PUT'],
['name' => 'folder_api#delete', 'url' => '/api/v1-3/folders/{folderId}', 'verb' => 'DELETE'],
['name' => 'folder_api#read', 'url' => '/api/v1-3/folders/{folderId}/read', 'verb' => 'POST'],
// feeds
['name' => 'feed_api#index', 'url' => '/api/v1-3/feeds', 'verb' => 'GET'],
['name' => 'feed_api#create', 'url' => '/api/v1-3/feeds', 'verb' => 'POST'],
['name' => 'feed_api#update', 'url' => '/api/v1-3/feeds/{feedId}', 'verb' => 'PUT'],
['name' => 'feed_api#delete', 'url' => '/api/v1-3/feeds/{feedId}', 'verb' => 'DELETE'],
['name' => 'feed_api#from_all_users', 'url' => '/api/v1-3/feeds/all', 'verb' => 'GET'],
['name' => 'feed_api#move', 'url' => '/api/v1-3/feeds/{feedId}/move', 'verb' => 'POST'],
['name' => 'feed_api#rename', 'url' => '/api/v1-3/feeds/{feedId}/rename', 'verb' => 'POST'],
['name' => 'feed_api#read', 'url' => '/api/v1-3/feeds/{feedId}/read', 'verb' => 'POST'],
['name' => 'feed_api#update', 'url' => '/api/v1-3/feeds/update', 'verb' => 'GET'],
// items
['name' => 'item_api#index', 'url' => '/api/v1-3/items', 'verb' => 'GET'],
['name' => 'item_api#updated', 'url' => '/api/v1-3/items/updated', 'verb' => 'GET'],
['name' => 'item_api#read', 'url' => '/api/v1-3/items/{itemId}/read', 'verb' => 'POST'],
['name' => 'item_api#unread', 'url' => '/api/v1-3/items/{itemId}/unread', 'verb' => 'POST'],
['name' => 'item_api#read_all', 'url' => '/api/v1-3/items/read', 'verb' => 'POST'],
['name' => 'item_api#read_multiple_by_ids', 'url' => '/api/v1-3/items/read/multiple', 'verb' => 'POST'],
['name' => 'item_api#unread_multiple_by_ids', 'url' => '/api/v1-3/items/unread/multiple', 'verb' => 'POST'],
['name' => 'item_api#star_by_item_id', 'url' => '/api/v1-3/items/{itemId}/star', 'verb' => 'POST'],
['name' => 'item_api#unstar_by_item_id', 'url' => '/api/v1-3/items/{itemId}/unstar', 'verb' => 'POST'],
['name' => 'item_api#star_multiple_by_item_ids', 'url' => '/api/v1-3/items/star/multiple', 'verb' => 'POST'],
['name' => 'item_api#unstar_multiple_by_item_ids', 'url' => '/api/v1-3/items/unstar/multiple', 'verb' => 'POST'],
// API 1.2
['name' => 'utility_api#version', 'url' => '/api/v1-2/version', 'verb' => 'GET'],
['name' => 'utility_api#status', 'url' => '/api/v1-2/status', 'verb' => 'GET'],
['name' => 'utility_api#before_update', 'url' => '/api/v1-2/cleanup/before-update', 'verb' => 'GET'],
['name' => 'utility_api#after_update', 'url' => '/api/v1-2/cleanup/after-update', 'verb' => 'GET'],
['name' => 'utility_api#preflighted_cors', 'url' => '/api/v1-2/{path}', 'verb' => 'OPTIONS', 'requirements' => ['path' => '.+']],
// folders
['name' => 'folder_api#index', 'url' => '/api/v1-2/folders', 'verb' => 'GET'],
['name' => 'folder_api#create', 'url' => '/api/v1-2/folders', 'verb' => 'POST'],
['name' => 'folder_api#update', 'url' => '/api/v1-2/folders/{folderId}', 'verb' => 'PUT'],
['name' => 'folder_api#delete', 'url' => '/api/v1-2/folders/{folderId}', 'verb' => 'DELETE'],
['name' => 'folder_api#read', 'url' => '/api/v1-2/folders/{folderId}/read', 'verb' => 'PUT'], // FIXME: POST would be more correct
// feeds
['name' => 'feed_api#index', 'url' => '/api/v1-2/feeds', 'verb' => 'GET'],
['name' => 'feed_api#create', 'url' => '/api/v1-2/feeds', 'verb' => 'POST'],
['name' => 'feed_api#update', 'url' => '/api/v1-2/feeds/{feedId}', 'verb' => 'PUT'],
['name' => 'feed_api#delete', 'url' => '/api/v1-2/feeds/{feedId}', 'verb' => 'DELETE'],
['name' => 'feed_api#from_all_users', 'url' => '/api/v1-2/feeds/all', 'verb' => 'GET'],
['name' => 'feed_api#move', 'url' => '/api/v1-2/feeds/{feedId}/move', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'feed_api#rename', 'url' => '/api/v1-2/feeds/{feedId}/rename', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'feed_api#read', 'url' => '/api/v1-2/feeds/{feedId}/read', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'feed_api#update', 'url' => '/api/v1-2/feeds/update', 'verb' => 'GET'],
// items
['name' => 'item_api#index', 'url' => '/api/v1-2/items', 'verb' => 'GET'],
['name' => 'item_api#updated', 'url' => '/api/v1-2/items/updated', 'verb' => 'GET'],
['name' => 'item_api#read', 'url' => '/api/v1-2/items/{itemId}/read', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#unread', 'url' => '/api/v1-2/items/{itemId}/unread', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#read_all', 'url' => '/api/v1-2/items/read', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#read_multiple', 'url' => '/api/v1-2/items/read/multiple', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#unread_multiple', 'url' => '/api/v1-2/items/unread/multiple', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#star', 'url' => '/api/v1-2/items/{feedId}/{guidHash}/star', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#unstar', 'url' => '/api/v1-2/items/{feedId}/{guidHash}/unstar', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#star_multiple', 'url' => '/api/v1-2/items/star/multiple', 'verb' => 'PUT'], // FIXME: POST would be more correct
['name' => 'item_api#unstar_multiple', 'url' => '/api/v1-2/items/unstar/multiple', 'verb' => 'PUT'], // FIXME: POST would be more correct
]];

View File

@@ -1,5 +0,0 @@
// SPDX-FileCopyrightText: Carl Schwan <carl@carlschwan.eu>
// SPDX-License-Identifier: AGPL-3.0-or-later
const babelConfig = require('@nextcloud/babel-config')
module.exports = babelConfig

View File

@@ -55,15 +55,14 @@
},
"require-dev": {
"phpunit/phpunit": "9.5.*",
"squizlabs/php_codesniffer": "^3.7.1",
"phpstan/phpstan": "^1.8.3",
"phpstan/phpstan-doctrine": "^1.3.12",
"phpstan/phpstan-strict-rules": "^1.4.3",
"squizlabs/php_codesniffer": "^3.6.2",
"phpstan/phpstan": "^1.4.0",
"phpstan/phpstan-doctrine": "^1.2.11",
"phpstan/phpstan-strict-rules": "^1.1.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"guzzlehttp/guzzle": "^7.3.0",
"doctrine/dbal": "^3.4.3",
"doctrine/dbal": "^3.3.2",
"symfony/console": "^4.4.19",
"psr/log": "^1.1.0"
},

633
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "4ffefaaa1e24da0962f9d049aa038506",
"content-hash": "00457bc6f2ee6370bf0499b07d03eacf",
"packages": [
{
"name": "arthurhoaro/favicon",
@@ -66,16 +66,16 @@
},
{
"name": "debril/feed-io",
"version": "v4.9.14",
"version": "v4.9.13",
"source": {
"type": "git",
"url": "https://github.com/alexdebril/feed-io.git",
"reference": "58ae5a6d4846f3e835c4258cf843a1bf96121bcd"
"reference": "0b3250a31f9006528c16942a9642620e098460de"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/alexdebril/feed-io/zipball/58ae5a6d4846f3e835c4258cf843a1bf96121bcd",
"reference": "58ae5a6d4846f3e835c4258cf843a1bf96121bcd",
"url": "https://api.github.com/repos/alexdebril/feed-io/zipball/0b3250a31f9006528c16942a9642620e098460de",
"reference": "0b3250a31f9006528c16942a9642620e098460de",
"shasum": ""
},
"require": {
@@ -127,7 +127,7 @@
],
"support": {
"issues": "https://github.com/alexdebril/feed-io/issues",
"source": "https://github.com/alexdebril/feed-io/tree/v4.9.14"
"source": "https://github.com/alexdebril/feed-io/tree/v4.9.13"
},
"funding": [
{
@@ -135,7 +135,7 @@
"type": "github"
}
],
"time": "2022-06-09T08:07:50+00:00"
"time": "2022-04-10T21:19:29+00:00"
},
{
"name": "ezyang/htmlpurifier",
@@ -370,16 +370,16 @@
"packages-dev": [
{
"name": "doctrine/cache",
"version": "2.2.0",
"version": "2.1.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/cache.git",
"reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
"reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
"reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
"url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
"reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
"shasum": ""
},
"require": {
@@ -389,12 +389,18 @@
"doctrine/common": ">2.2,<2.4"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
"cache/integration-tests": "dev-master",
"doctrine/coding-standard": "^9",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"doctrine/coding-standard": "^8.0",
"mongodb/mongodb": "^1.1",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"predis/predis": "~1.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"symfony/cache": "^4.4 || ^5.4 || ^6",
"symfony/var-exporter": "^4.4 || ^5.4 || ^6"
"symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
"symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
},
"suggest": {
"alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
},
"type": "library",
"autoload": {
@@ -443,7 +449,7 @@
],
"support": {
"issues": "https://github.com/doctrine/cache/issues",
"source": "https://github.com/doctrine/cache/tree/2.2.0"
"source": "https://github.com/doctrine/cache/tree/2.1.1"
},
"funding": [
{
@@ -459,20 +465,20 @@
"type": "tidelift"
}
],
"time": "2022-05-20T20:07:39+00:00"
"time": "2021-07-17T14:49:29+00:00"
},
{
"name": "doctrine/dbal",
"version": "3.4.3",
"version": "3.3.6",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
"reference": "a24b89d663d8f261199bc0a91c48016042ebda85"
"reference": "9e7f76dd1cde81c62574fdffa5a9c655c847ad21"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/a24b89d663d8f261199bc0a91c48016042ebda85",
"reference": "a24b89d663d8f261199bc0a91c48016042ebda85",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/9e7f76dd1cde81c62574fdffa5a9c655c847ad21",
"reference": "9e7f76dd1cde81c62574fdffa5a9c655c847ad21",
"shasum": ""
},
"require": {
@@ -480,21 +486,21 @@
"doctrine/cache": "^1.11|^2.0",
"doctrine/deprecations": "^0.5.3|^1",
"doctrine/event-manager": "^1.0",
"php": "^7.4 || ^8.0",
"php": "^7.3 || ^8.0",
"psr/cache": "^1|^2|^3",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"doctrine/coding-standard": "10.0.0",
"jetbrains/phpstorm-stubs": "2022.2",
"phpstan/phpstan": "1.8.2",
"phpstan/phpstan-strict-rules": "^1.3",
"phpunit/phpunit": "9.5.21",
"psalm/plugin-phpunit": "0.17.0",
"squizlabs/php_codesniffer": "3.7.1",
"symfony/cache": "^5.4|^6.0",
"symfony/console": "^4.4|^5.4|^6.0",
"vimeo/psalm": "4.24.0"
"doctrine/coding-standard": "9.0.0",
"jetbrains/phpstorm-stubs": "2022.1",
"phpstan/phpstan": "1.6.3",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "9.5.20",
"psalm/plugin-phpunit": "0.16.1",
"squizlabs/php_codesniffer": "3.6.2",
"symfony/cache": "^5.2|^6.0",
"symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
"vimeo/psalm": "4.23.0"
},
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
@@ -554,7 +560,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
"source": "https://github.com/doctrine/dbal/tree/3.4.3"
"source": "https://github.com/doctrine/dbal/tree/3.3.6"
},
"funding": [
{
@@ -570,7 +576,7 @@
"type": "tidelift"
}
],
"time": "2022-08-28T17:26:36+00:00"
"time": "2022-05-02T17:21:01+00:00"
},
{
"name": "doctrine/deprecations",
@@ -617,31 +623,34 @@
},
{
"name": "doctrine/event-manager",
"version": "1.1.2",
"version": "1.1.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/event-manager.git",
"reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683"
"reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/event-manager/zipball/eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
"reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
"url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
"reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"conflict": {
"doctrine/common": "<2.9"
"doctrine/common": "<2.9@dev"
},
"require-dev": {
"doctrine/coding-standard": "^9",
"phpstan/phpstan": "~1.4.10 || ^1.5.4",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"vimeo/psalm": "^4.22"
"doctrine/coding-standard": "^6.0",
"phpunit/phpunit": "^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Doctrine\\Common\\": "lib/Doctrine/Common"
@@ -688,7 +697,7 @@
],
"support": {
"issues": "https://github.com/doctrine/event-manager/issues",
"source": "https://github.com/doctrine/event-manager/tree/1.1.2"
"source": "https://github.com/doctrine/event-manager/tree/1.1.x"
},
"funding": [
{
@@ -704,7 +713,7 @@
"type": "tidelift"
}
],
"time": "2022-07-27T22:18:11+00:00"
"time": "2020-05-29T18:28:51+00:00"
},
{
"name": "doctrine/instantiator",
@@ -837,16 +846,16 @@
},
{
"name": "nikic/php-parser",
"version": "v4.14.0",
"version": "v4.13.2",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
"reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
"reference": "210577fe3cf7badcc5814d99455df46564f3c077"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
"reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
"reference": "210577fe3cf7badcc5814d99455df46564f3c077",
"shasum": ""
},
"require": {
@@ -887,9 +896,9 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
"source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
},
"time": "2022-05-31T20:59:12+00:00"
"time": "2021-11-30T19:35:32+00:00"
},
{
"name": "phar-io/manifest",
@@ -1002,6 +1011,233 @@
},
"time": "2022-02-21T01:04:05+00:00"
},
{
"name": "phpdocumentor/reflection-common",
"version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jaap van Otterdijk",
"email": "opensource@ijaap.nl"
}
],
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
"homepage": "http://www.phpdoc.org",
"keywords": [
"FQSEN",
"phpDocumentor",
"phpdoc",
"reflection",
"static analysis"
],
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
},
"time": "2020-06-27T09:03:43+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
"version": "5.3.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
"shasum": ""
},
"require": {
"ext-filter": "*",
"php": "^7.2 || ^8.0",
"phpdocumentor/reflection-common": "^2.2",
"phpdocumentor/type-resolver": "^1.3",
"webmozart/assert": "^1.9.1"
},
"require-dev": {
"mockery/mockery": "~1.3.2",
"psalm/phar": "^4.8"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
},
{
"name": "Jaap van Otterdijk",
"email": "account@ijaap.nl"
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
},
"time": "2021-10-19T17:43:47+00:00"
},
{
"name": "phpdocumentor/type-resolver",
"version": "1.6.1",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
"reference": "77a32518733312af16a44300404e945338981de3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
"reference": "77a32518733312af16a44300404e945338981de3",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
"ext-tokenizer": "*",
"psalm/phar": "^4.8"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-1.x": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
}
],
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
},
"time": "2022-03-15T21:29:03+00:00"
},
{
"name": "phpspec/prophecy",
"version": "v1.15.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
"reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
"reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.2",
"php": "^7.2 || ~8.0, <8.2",
"phpdocumentor/reflection-docblock": "^5.2",
"sebastian/comparator": "^3.0 || ^4.0",
"sebastian/recursion-context": "^3.0 || ^4.0"
},
"require-dev": {
"phpspec/phpspec": "^6.0 || ^7.0",
"phpunit/phpunit": "^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Prophecy\\": "src/Prophecy"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com",
"homepage": "http://everzet.com"
},
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"description": "Highly opinionated mocking framework for PHP 5.3+",
"homepage": "https://github.com/phpspec/prophecy",
"keywords": [
"Double",
"Dummy",
"fake",
"mock",
"spy",
"stub"
],
"support": {
"issues": "https://github.com/phpspec/prophecy/issues",
"source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
},
"time": "2021-12-08T12:19:24+00:00"
},
{
"name": "phpstan/extension-installer",
"version": "1.1.0",
@@ -1049,16 +1285,16 @@
},
{
"name": "phpstan/phpstan",
"version": "1.8.3",
"version": "1.6.8",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
"reference": "5583623b61caafebd62bc78a99533aa9d769d097"
"reference": "d76498c5531232cb8386ceb6004f7e013138d3ba"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/5583623b61caafebd62bc78a99533aa9d769d097",
"reference": "5583623b61caafebd62bc78a99533aa9d769d097",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/d76498c5531232cb8386ceb6004f7e013138d3ba",
"reference": "d76498c5531232cb8386ceb6004f7e013138d3ba",
"shasum": ""
},
"require": {
@@ -1082,13 +1318,9 @@
"MIT"
],
"description": "PHPStan - PHP Static Analysis Tool",
"keywords": [
"dev",
"static analysis"
],
"support": {
"issues": "https://github.com/phpstan/phpstan/issues",
"source": "https://github.com/phpstan/phpstan/tree/1.8.3"
"source": "https://github.com/phpstan/phpstan/tree/1.6.8"
},
"funding": [
{
@@ -1099,80 +1331,34 @@
"url": "https://github.com/phpstan",
"type": "github"
},
{
"url": "https://www.patreon.com/phpstan",
"type": "patreon"
},
{
"url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
"type": "tidelift"
}
],
"time": "2022-09-01T15:27:34+00:00"
},
{
"name": "phpstan/phpstan-deprecation-rules",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
"reference": "e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682",
"reference": "e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0",
"phpstan/phpstan": "^1.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5"
},
"type": "phpstan-extension",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"phpstan": {
"includes": [
"rules.neon"
]
}
},
"autoload": {
"psr-4": {
"PHPStan\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
"support": {
"issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
"source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.0.0"
},
"time": "2021-09-23T11:02:21+00:00"
"time": "2022-05-10T06:54:21+00:00"
},
{
"name": "phpstan/phpstan-doctrine",
"version": "1.3.12",
"version": "1.3.4",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-doctrine.git",
"reference": "c5ec462889f3bcee32be57ff26f775295836c173"
"reference": "dd53db81bc1f877248de3819321d84126a9e9f65"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan-doctrine/zipball/c5ec462889f3bcee32be57ff26f775295836c173",
"reference": "c5ec462889f3bcee32be57ff26f775295836c173",
"url": "https://api.github.com/repos/phpstan/phpstan-doctrine/zipball/dd53db81bc1f877248de3819321d84126a9e9f65",
"reference": "dd53db81bc1f877248de3819321d84126a9e9f65",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
"phpstan/phpstan": "^1.8.0"
"phpstan/phpstan": "^1.5"
},
"conflict": {
"doctrine/collections": "<1.0",
@@ -1220,9 +1406,9 @@
"description": "Doctrine extensions for PHPStan",
"support": {
"issues": "https://github.com/phpstan/phpstan-doctrine/issues",
"source": "https://github.com/phpstan/phpstan-doctrine/tree/1.3.12"
"source": "https://github.com/phpstan/phpstan-doctrine/tree/1.3.4"
},
"time": "2022-08-08T18:06:58+00:00"
"time": "2022-05-09T13:15:33+00:00"
},
{
"name": "phpstan/phpstan-phpunit",
@@ -1278,21 +1464,21 @@
},
{
"name": "phpstan/phpstan-strict-rules",
"version": "1.4.3",
"version": "1.2.3",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-strict-rules.git",
"reference": "431b3d6e8040075de196680cd5bc95735987b4ae"
"reference": "0c82c96f2a55d8b91bbc7ee6512c94f68a206b43"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/431b3d6e8040075de196680cd5bc95735987b4ae",
"reference": "431b3d6e8040075de196680cd5bc95735987b4ae",
"url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/0c82c96f2a55d8b91bbc7ee6512c94f68a206b43",
"reference": "0c82c96f2a55d8b91bbc7ee6512c94f68a206b43",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
"phpstan/phpstan": "^1.8.3"
"phpstan/phpstan": "^1.6.3"
},
"require-dev": {
"nikic/php-parser": "^4.13.0",
@@ -1320,29 +1506,29 @@
"description": "Extra strict and opinionated rules for PHPStan",
"support": {
"issues": "https://github.com/phpstan/phpstan-strict-rules/issues",
"source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.4.3"
"source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.2.3"
},
"time": "2022-08-26T15:05:46+00:00"
"time": "2022-05-04T15:20:40+00:00"
},
{
"name": "phpunit/php-code-coverage",
"version": "9.2.16",
"version": "9.2.15",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "2593003befdcc10db5e213f9f28814f5aa8ac073"
"reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2593003befdcc10db5e213f9f28814f5aa8ac073",
"reference": "2593003befdcc10db5e213f9f28814f5aa8ac073",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
"reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*",
"nikic/php-parser": "^4.14",
"nikic/php-parser": "^4.13.0",
"php": ">=7.3",
"phpunit/php-file-iterator": "^3.0.3",
"phpunit/php-text-template": "^2.0.2",
@@ -1391,7 +1577,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.16"
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
},
"funding": [
{
@@ -1399,7 +1585,7 @@
"type": "github"
}
],
"time": "2022-08-20T05:26:47+00:00"
"time": "2022-03-07T09:28:20+00:00"
},
{
"name": "phpunit/php-file-iterator",
@@ -1644,16 +1830,16 @@
},
{
"name": "phpunit/phpunit",
"version": "9.5.24",
"version": "9.5.20",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5"
"reference": "12bc8879fb65aef2138b26fc633cb1e3620cffba"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
"reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/12bc8879fb65aef2138b26fc633cb1e3620cffba",
"reference": "12bc8879fb65aef2138b26fc633cb1e3620cffba",
"shasum": ""
},
"require": {
@@ -1668,6 +1854,7 @@
"phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.0.2",
"php": ">=7.3",
"phpspec/prophecy": "^1.12.1",
"phpunit/php-code-coverage": "^9.2.13",
"phpunit/php-file-iterator": "^3.0.5",
"phpunit/php-invoker": "^3.1.1",
@@ -1682,9 +1869,13 @@
"sebastian/global-state": "^5.0.1",
"sebastian/object-enumerator": "^4.0.3",
"sebastian/resource-operations": "^3.0.3",
"sebastian/type": "^3.1",
"sebastian/type": "^3.0",
"sebastian/version": "^3.0.2"
},
"require-dev": {
"ext-pdo": "*",
"phpspec/prophecy-phpunit": "^2.0.1"
},
"suggest": {
"ext-soap": "*",
"ext-xdebug": "*"
@@ -1726,7 +1917,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.24"
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.20"
},
"funding": [
{
@@ -1738,7 +1929,7 @@
"type": "github"
}
],
"time": "2022-08-30T07:42:16+00:00"
"time": "2022-04-01T12:37:26+00:00"
},
{
"name": "psr/cache",
@@ -2646,16 +2837,16 @@
},
{
"name": "sebastian/type",
"version": "3.1.0",
"version": "3.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
"reference": "fb44e1cc6e557418387ad815780360057e40753e"
"reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb44e1cc6e557418387ad815780360057e40753e",
"reference": "fb44e1cc6e557418387ad815780360057e40753e",
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
"reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
"shasum": ""
},
"require": {
@@ -2667,7 +2858,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
"dev-master": "3.0-dev"
}
},
"autoload": {
@@ -2690,7 +2881,7 @@
"homepage": "https://github.com/sebastianbergmann/type",
"support": {
"issues": "https://github.com/sebastianbergmann/type/issues",
"source": "https://github.com/sebastianbergmann/type/tree/3.1.0"
"source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
},
"funding": [
{
@@ -2698,7 +2889,7 @@
"type": "github"
}
],
"time": "2022-08-29T06:55:37+00:00"
"time": "2022-03-15T09:54:48+00:00"
},
{
"name": "sebastian/version",
@@ -2755,16 +2946,16 @@
},
{
"name": "squizlabs/php_codesniffer",
"version": "3.7.1",
"version": "3.6.2",
"source": {
"type": "git",
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
"reference": "1359e176e9307e906dc3d890bcc9603ff6d90619"
"reference": "5e4e71592f69da17871dba6e80dd51bce74a351a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619",
"reference": "1359e176e9307e906dc3d890bcc9603ff6d90619",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/5e4e71592f69da17871dba6e80dd51bce74a351a",
"reference": "5e4e71592f69da17871dba6e80dd51bce74a351a",
"shasum": ""
},
"require": {
@@ -2807,7 +2998,89 @@
"source": "https://github.com/squizlabs/PHP_CodeSniffer",
"wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
},
"time": "2022-06-18T07:21:10+00:00"
"time": "2021-12-12T21:44:58+00:00"
},
{
"name": "symfony/polyfill-ctype",
"version": "v1.25.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
"reference": "30885182c981ab175d4d034db0f6f469898070ab"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
"reference": "30885182c981ab175d4d034db0f6f469898070ab",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"provide": {
"ext-ctype": "*"
},
"suggest": {
"ext-ctype": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Ctype\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Gert de Pagter",
"email": "BackEndTea@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"ctype",
"polyfill",
"portable"
],
"support": {
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2021-10-20T20:35:02+00:00"
},
{
"name": "theseer/tokenizer",
@@ -2858,6 +3131,64 @@
}
],
"time": "2021-07-28T10:34:58+00:00"
},
{
"name": "webmozart/assert",
"version": "1.10.0",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/assert.git",
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
"symfony/polyfill-ctype": "^1.8"
},
"conflict": {
"phpstan/phpstan": "<0.12.20",
"vimeo/psalm": "<4.6.1 || 4.6.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5.13"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.10-dev"
}
},
"autoload": {
"psr-4": {
"Webmozart\\Assert\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bernhard Schussek",
"email": "bschussek@gmail.com"
}
],
"description": "Assertions to validate method input/output with nice error messages.",
"keywords": [
"assert",
"check",
"validate"
],
"support": {
"issues": "https://github.com/webmozarts/assert/issues",
"source": "https://github.com/webmozarts/assert/tree/1.10.0"
},
"time": "2021-03-09T10:59:23+00:00"
}
],
"aliases": [],

View File

@@ -137,8 +137,7 @@
#app-content:not(.explore) #articles:after {
content: '';
display: block;
/* Subtract the height of the Nextcloud header. */
height: calc(100vh - 50px);
height: 100%;
background-repeat: no-repeat;
}
@@ -640,20 +639,6 @@
white-space: normal;
}
#app-content .body table {
border-collapse: collapse;
}
#app-content .body table th {
font-weight: bold;
}
#app-content .body table th,
#app-content .body table td {
border: 1px solid var(--color-text-lighter);
padding: 2px 6px;
}
#app-content .body iframe {
max-width: 100%;
}

View File

@@ -1,57 +0,0 @@
/**
* Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright 2020, Jan C. Borchardt, https://jancborchardt.net
* @copyright Bernhard Posselt 2014
*/
/**
* Explore styles
*/
.explore #app-content-wrapper {
height: 100%;
}
#explore {
height: 100%;
width: 100%;
padding: 45px 0 45px 45px;
}
#explore .grid-item {
width: 300px;
border: 2px solid var(--color-border);
border-radius: var(--border-radius-large);
margin: 0 24px 24px 0;
padding: 24px;
}
#explore .grid-item .explore-title {
background-repeat: no-repeat;
background-position: 0 center;
background-size: 24px;
padding-left: 32px;
}
#explore .grid-item .explore-title a {
word-wrap: break-word;
}
#explore .grid-item .explore-title a:hover, #explore .grid-item .explore-title a:focus {
text-decoration: underline;
}
#explore .grid-item .explore-logo {
text-align: center;
margin-top: 25px;
}
#explore .grid-item .explore-logo img {
width: 100%;
}
#explore .grid-item .explore-subscribe {
margin-top: 16px;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/*# sourceMappingURL=explore.css.map */

64
css/explore.scss Normal file
View File

@@ -0,0 +1,64 @@
/**
* Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright 2020, Jan C. Borchardt, https://jancborchardt.net
* @copyright Bernhard Posselt 2014
*/
/**
* Explore styles
*/
.explore #app-content-wrapper {
height: 100%;
}
#explore {
height: 100%;
width: 100%;
padding: 45px 0 45px 45px;
.grid-item {
width: 300px;
border: 2px solid var(--color-border);
border-radius: var(--border-radius-large);
margin: 0 24px 24px 0;
padding: 24px;
.explore-title {
background-repeat: no-repeat;
background-position: 0 center;
background-size: 24px;
padding-left: 32px;
a {
word-wrap: break-word;
&:hover,
&:focus {
text-decoration: underline;
}
}
}
.explore-logo {
text-align: center;
margin-top: 25px;
img {
width: 100%;
}
}
.explore-subscribe {
margin-top: 16px;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}

View File

@@ -1,4 +1,4 @@
@media only screen and (max-width: 1024px) {
@media only screen and (max-width: $breakpoint_mobile) {
#app-content .utils .date {
display: none;
}

View File

@@ -399,30 +399,6 @@ The following attributes are **not sanitized** meaning: including them in your w
* **mediaThumbnail**
* **mediaDescription**
#### Types
| Name | Default | Types |
|------------------|---------|--------------|
| author | null | string\|null |
| body | | string\|null |
| contentHash | | string\|null |
| enclosureLink | | string\|null |
| enclosureMime | | string\|null |
| feedId | | int |
| fingerprint | | string\|null |
| guid | | string |
| guidHash | | string |
| id | | int |
| lastModified | \"0\" | string\|null |
| mediaDescription | | string\|null |
| mediaThumbnail | | string\|null |
| pubDate | | int\|null |
| rtl | false | bool |
| starred | false | bool |
| title | | string\|null |
| unread | false | bool |
| updatedDate | | string\|null |
| url | | string\|null |
#### Get items
* **Status**: Implemented
* **Method**: GET

View File

@@ -354,7 +354,7 @@ Deletes a feed with the id feedId and all of its items
#### Rename a feed
* **Status**: Implemented in News 1.807
* **Status**: Implemented in 1.807
* **Method**: POST
* **Route**: /feeds/{feedId}/rename
* **Parameters**:
@@ -399,30 +399,6 @@ The following attributes are **not sanitized** meaning: including them in your w
* **mediaThumbnail**
* **mediaDescription**
#### Types
| Name | Default | Types |
|------------------|---------|--------------|
| author | null | string\|null |
| body | | string\|null |
| contentHash | | string\|null |
| enclosureLink | | string\|null |
| enclosureMime | | string\|null |
| feedId | | int |
| fingerprint | | string\|null |
| guid | | string |
| guidHash | | string |
| id | | int |
| lastModified | \"0\" | string\|null |
| mediaDescription | | string\|null |
| mediaThumbnail | | string\|null |
| pubDate | | int\|null |
| rtl | false | bool |
| starred | false | bool |
| title | | string\|null |
| unread | false | bool |
| updatedDate | | string\|null |
| url | | string\|null |
#### Get items
* **Status**: Implemented
* **Method**: GET
@@ -548,7 +524,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as read
* **Status**: Implemented in API 1.2
* **Status**: Implemented in 1.2
* **Method**: POST
* **Route**: /items/read/multiple
* **Parameters**:
@@ -569,7 +545,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as unread
* **Status**: Implemented in API 1.2
* **Status**: Implemented in 1.2
* **Method**: POST
* **Route**: /items/unread/multiple
* **Parameters**:
@@ -581,7 +557,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark an item as starred
* **Status**: Implemented in API 1.3
* **Status**: Implemented in 1.3
* **Method**: POST
* **Route**: /items/{itemId}/star
* **Parameters**: none
@@ -590,7 +566,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as starred
* **Status**: Implemented in API 1.3
* **Status**: Implemented in 1.3
* **Method**: POST
* **Route**: /items/star/multiple
* **Parameters**:
@@ -602,7 +578,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark an item as unstarred
* **Status**: Implemented in API 1.3
* **Status**: Implemented in 1.3
* **Method**: POST
* **Route**: /items/{itemId}/unstar
* **Parameters**: none
@@ -611,7 +587,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as unstarred
* **Status**: Implemented in API 1.3
* **Status**: Implemented in 1.3
* **Method**: POST
* **Route**: /items/unstar/multiple
* **Parameters**:
@@ -656,7 +632,7 @@ This [implementation in Python](https://github.com/nextcloud/news-updater) shoul
#### Trigger cleanup before update
This is used to clean up the database. It deletes folders and feeds that are marked for deletion
* **Status**: Implemented in News 1.601
* **Status**: Implemented in 1.601
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /cleanup/before-update
@@ -668,7 +644,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
#### Get feed ids and usernames for all feeds
* **Status**: Implemented in News 1.203
* **Status**: Implemented in 1.203
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /feeds/all
@@ -692,7 +668,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
#### Trigger a feed update
* **Status**: Implemented in News 1.601
* **Status**: Implemented in 1.601
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /feeds/update
@@ -714,7 +690,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
#### Trigger cleanup after update
This is used to clean up the database. It removes old read articles which are not starred
* **Status**: Implemented in News 1.601
* **Status**: Implemented in 1.601
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /cleanup/after-update
@@ -745,7 +721,7 @@ This API can be used to display warnings and errors in your client if the web ap
#### Get the status
* **Status**: Implemented in News 5.2.4
* **Status**: Implemented in 5.2.4
* **Method**: GET
* **Route**: /status
* **Parameters**: none
@@ -781,7 +757,7 @@ DEPRECATED: This API is deprecated, use the Nextcloud APIs instead.
#### Get the status
* **Status**: Implemented in News 6.0.5
* **Status**: Implemented in 6.0.5
* **Method**: GET
* **Route**: /user
* **Parameters**: none

View File

@@ -10,7 +10,6 @@ A sync client can be used to read news and synchronize via the API.
| Name | OS/Platform | License | Source |
|------------------------------------------------------------------------------------------------------------------|------------------------------|----------------------|--------------------------------------------------------------------|
| [RSS Guard](https://github.com/martinrotter/rssguard) | Windows, Linux, OS/2, macOS | GPL-3.0 License | [GitHub](https://github.com/martinrotter/rssguard) |
| [Communique](https://flathub.org/apps/details/com.github.suzie97.communique) | Linux | LGPL-2.1 License | [GitHub](https://github.com/Suzie97/Communique) |
| [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) |
@@ -25,7 +24,6 @@ A sync client can be used to read news and synchronize via the API.
| [py3status](https://github.com/ultrabug/py3status/) | i3wm | BSD-3-Clause License | [GitHub](https://github.com/ultrabug/py3status/) |
| [newsboat](https://newsboat.org/) | Unix Terminal | MIT License | [GitHub](https://github.com/newsboat/newsboat) |
| [Newsie](https://open-store.io/app/newsie.martinferretti) | Ubuntu Touch | GPL-3.0 License | [GitLab](https://gitlab.com/ferrettim/newsie) |
| [Fuoten](https://github.com/Huessenbergnetz/Fuoten) | Sailfish OS | GPL-3.0 License | [GitHub](https://github.com/Huessenbergnetz/Fuoten) |
## Update Clients

View File

@@ -11,8 +11,7 @@ News offers an API that can be used by clients to synchronize with the server.
There are two API declarations, so far only V1 has been fully implemented.
Work on V2 has started with low priority.
- [API-V1.2](api/api-v1-2.md)
- [API-V1.3](api/api-v1-3.md)
- [API-V1](api/api-v1.md)
- [API-V2](api/api-v2.md)
## Coding Style Guidelines

View File

@@ -1,4 +1,4 @@
# Installation/Update & Uninstall
# Installation/Update
## Dependencies
* 64bit OS (starting with News 16.0.0)
@@ -93,51 +93,3 @@ To update the News app use change into the **nextcloud/apps/news/** directory us
git pull --rebase origin master
make
## Uninstall with cleanup
First uninstall the app via the web-interface or via occ:
```console
./occ app:remove news
```
This currently does not remove any of the database tables.
Data in your `/tmp` directory will be automatically deleted by the OS.
If you changed the temporary directory for Nextcloud you need to check on your own.
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.
Connect to your DB and execute the commands. Don't forget to switch to the right database.
For example in mysql: `use nextcloud;`
```sql
DROP TABLE oc_news_folders;
DROP TABLE oc_news_feeds;
DROP TABLE oc_news_items;
```
Then we remove the traces in the migrations table.
```sql
DELETE FROM oc_migrations WHERE app='news';
```
Next delete the app configuration.
```sql
DELETE FROM oc_appconfig WHERE appid = 'news';
```
And finally remove the jobs from the job table.
The last two lines are only needed for older installations.
```sql
DELETE FROM oc_jobs WHERE class='OCA\\News\\Cron\\UpdaterJob';
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.

View File

@@ -55,7 +55,7 @@ app.config(function ($routeProvider, $provide, $httpProvider, $locationProvider)
var errorMessages = {
0: t('news', 'Request failed, network connection unavailable!'),
401: t('news', 'Request unauthorized. Are you logged in?'),
403: t('news', 'Request forbidden. Are you an administrator?'),
403: t('news', 'Request forbidden. Are you an admin?'),
412: t('news', 'Token expired or app not enabled! Reload the page!'),
500: t('news', 'Internal server error! Please check your ' +
'data/nextcloud.log file for additional ' +

View File

@@ -18,7 +18,7 @@ app.controller('ContentController', function (Publisher, FeedResource, ItemResou
// distribute data to models based on key
Publisher.publishAll(data);
var isOldestFirst = function () {
var getOrdering = function () {
var ordering = SettingsResource.get('oldestFirst');
if (self.isFeed()) {
@@ -35,11 +35,13 @@ app.controller('ContentController', function (Publisher, FeedResource, ItemResou
this.getFirstItem = function () {
var orderedItems = this.getItems();
var item = orderedItems[0];
var lastItem = orderedItems[orderedItems.length - 1];
// If isOldestFirst is set, item should be the last item
if (isOldestFirst()) {
item = lastItem;
var item = orderedItems[orderedItems.length - 1];
var firstItem = orderedItems[0];
// If getOrdering == 1, then the sorting is set to
// newest first. So, item should be the first item
//
if (getOrdering()) {
item = firstItem;
}
if (item === undefined) {
return undefined;
@@ -150,7 +152,7 @@ app.controller('ContentController', function (Publisher, FeedResource, ItemResou
return $route.current.$$route.type === FEED_TYPE.FEED;
};
this.oldestFirst = isOldestFirst();
this.oldestFirst = getOrdering();
this.autoPage = function () {
if (this.isNothingMoreToAutoPage) {

View File

@@ -39,7 +39,7 @@ const sources = [
'directive/**/*.js'
];
const testSources = ['tests/**/*.js'];
const watchSources = sources.concat(testSources).concat(['*.js', '!news-admin-settings.js']);
const watchSources = sources.concat(testSources).concat(['*.js']);
const lintSources = watchSources;
// tasks

10909
js/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -40,15 +40,15 @@
"gulp-ng-annotate": "^2.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"jasmine-core": "^4.3.0",
"jquery": "^3.6.1",
"jshint": "^2.13.5",
"karma": "^6.4.0",
"jasmine-core": "^4.1.1",
"jquery": "^3.6.0",
"jshint": "^2.13.4",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"minimatch": "^5.1.0",
"karma-jasmine": "^5.0.0",
"minimatch": "^5.0.1",
"natives": "^1.1.6"
},
"dependencies": {

View File

@@ -3,6 +3,7 @@ OC.L10N.register(
{
"News" : "Nuus",
"Shared with me" : "Gedeel met my",
"Saved" : "Bewaar",
"Download" : "Laai Af",
"Close" : "Sluit",
"Share" : "Deel",

View File

@@ -1,6 +1,7 @@
{ "translations": {
"News" : "Nuus",
"Shared with me" : "Gedeel met my",
"Saved" : "Bewaar",
"Download" : "Laai Af",
"Close" : "Sluit",
"Share" : "Deel",

View File

@@ -1,17 +0,0 @@
OC.L10N.register(
"news",
{
"Download" : "Escargar",
"Close" : "Zarrar",
"Share" : "Compartir",
"Username" : "Nombre d'usuario",
"New folder" : "Nueva carpeta",
"Folder name" : "Nombre de carpeta",
"Password" : "Clau",
"Create" : "Crear",
"Rename" : "Renombrar",
"Delete" : "Borrar",
"Settings" : "Configurazión",
"Help" : "Aduya"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -1,15 +0,0 @@
{ "translations": {
"Download" : "Escargar",
"Close" : "Zarrar",
"Share" : "Compartir",
"Username" : "Nombre d'usuario",
"New folder" : "Nueva carpeta",
"Folder name" : "Nombre de carpeta",
"Password" : "Clau",
"Create" : "Crear",
"Rename" : "Renombrar",
"Delete" : "Borrar",
"Settings" : "Configurazión",
"Help" : "Aduya"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ OC.L10N.register(
{
"Unread articles" : "مقال غير مقروء",
"News" : "الأخبار",
"Saved" : "حفظ",
"Download" : "تنزيل",
"Close" : "إغلاق",
"Share" : "مشاركة",

View File

@@ -1,6 +1,7 @@
{ "translations": {
"Unread articles" : "مقال غير مقروء",
"News" : "الأخبار",
"Saved" : "حفظ",
"Download" : "تنزيل",
"Close" : "إغلاق",
"Share" : "مشاركة",

View File

@@ -3,6 +3,7 @@ OC.L10N.register(
{
"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?",
"Request forbidden. Are you an admin?" : "Solicitú prohibida. ¿Yes alministrador?",
"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.",
@@ -13,6 +14,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximes",
"Feed fetcher timeout" : "Tiempo escosao p'algamar el feed",
"Explore Service URL" : "Esplorar URL del serviciu",
"Saved" : "Guardáu",
"Download" : "Descargar",
"Close" : "Zarrar",
"No articles available" : "Nun hai artículos disponibles",

View File

@@ -1,6 +1,7 @@
{ "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?",
"Request forbidden. Are you an admin?" : "Solicitú prohibida. ¿Yes alministrador?",
"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.",
@@ -11,6 +12,7 @@
"Maximum redirects" : "Redirecciones máximes",
"Feed fetcher timeout" : "Tiempo escosao p'algamar el feed",
"Explore Service URL" : "Esplorar URL del serviciu",
"Saved" : "Guardáu",
"Download" : "Descargar",
"Close" : "Zarrar",
"No articles available" : "Nun hai artículos disponibles",

View File

@@ -2,6 +2,7 @@ OC.L10N.register(
"news",
{
"Unread articles" : "Oxunulmamış məqalə",
"Saved" : "Saxlanıldı",
"Download" : "Yüklə",
"Close" : "Bağla",
"Share" : "Paylaş",

View File

@@ -1,5 +1,6 @@
{ "translations": {
"Unread articles" : "Oxunulmamış məqalə",
"Saved" : "Saxlanıldı",
"Download" : "Yüklə",
"Close" : "Bağla",
"Share" : "Paylaş",

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 admin?" : "Достъп е отказан. Администратор ли сте?",
"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 в момента е в режим на поддръжка!",
@@ -18,14 +19,18 @@ OC.L10N.register(
"Purge interval" : "Интервал за изтриване",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Минимално време в секунди, след което изтрити емисии и папки биват премахвани от базата данни; стойности под 60 секунди ще бъдат игнорирани",
"Maximum read count per feed" : "Максимален брой прочитания на емисия",
"Defines the maximum amount of articles that can be read per feed which won't 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\", изключват напълно тази функционалност.",
"Maximum redirects" : "Максимален брой пренасочвания",
"How many redirects the feed fetcher should follow." : "Колко пренасочвания трябва да следва инструментът за извличане на емисии.",
"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." : "Максималното време в секунди за изчакване зареждането на 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 адресът на тази услуга ще бъде поискан за показване на емисиите в секцията за изследване на емисия. За да се върнете към вградената услуга за изследване, оставете тези входи данни празни.",
"For more information check the wiki." : "За повече информация проверете wiki страницата.",
"Update interval" : "Интервал за актуализиране",
"Interval in seconds in which the feeds will be updated." : "Интервал в секунди, в който емисиите ще бъдат актуализирани.",
"For more information check the documentation." : "За повече информация проверете документацията.",
"Saved" : "Запазено",
"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 admin?" : "Достъп е отказан. Администратор ли сте?",
"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 в момента е в режим на поддръжка!",
@@ -16,14 +17,18 @@
"Purge interval" : "Интервал за изтриване",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Минимално време в секунди, след което изтрити емисии и папки биват премахвани от базата данни; стойности под 60 секунди ще бъдат игнорирани",
"Maximum read count per feed" : "Максимален брой прочитания на емисия",
"Defines the maximum amount of articles that can be read per feed which won't 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\", изключват напълно тази функционалност.",
"Maximum redirects" : "Максимален брой пренасочвания",
"How many redirects the feed fetcher should follow." : "Колко пренасочвания трябва да следва инструментът за извличане на емисии.",
"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." : "Максималното време в секунди за изчакване зареждането на 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 адресът на тази услуга ще бъде поискан за показване на емисиите в секцията за изследване на емисия. За да се върнете към вградената услуга за изследване, оставете тези входи данни празни.",
"For more information check the wiki." : "За повече информация проверете wiki страницата.",
"Update interval" : "Интервал за актуализиране",
"Interval in seconds in which the feeds will be updated." : "Интервал в секунди, в който емисиите ще бъдат актуализирани.",
"For more information check the documentation." : "За повече информация проверете документацията.",
"Saved" : "Запазено",
"Download" : "Изтегли",
"Close" : "Затваряне",
"Subscribe to" : "Абониране за",

View File

@@ -2,6 +2,7 @@ OC.L10N.register(
"news",
{
"Unread articles" : "অপঠিত লেখা",
"Saved" : "সংরক্ষণ করা হলো",
"Download" : "ডাউনলোড",
"Close" : "বন্ধ",
"Share" : "ভাগাভাগি কর",

View File

@@ -1,5 +1,6 @@
{ "translations": {
"Unread articles" : "অপঠিত লেখা",
"Saved" : "সংরক্ষণ করা হলো",
"Download" : "ডাউনলোড",
"Close" : "বন্ধ",
"Share" : "ভাগাভাগি কর",

View File

@@ -1,6 +1,7 @@
OC.L10N.register(
"news",
{
"Saved" : "Enrollet",
"Download" : "Pellgargañ",
"Close" : "Serriñ",
"Open website" : "Digor al lec'hienn-web",

View File

@@ -1,4 +1,5 @@
{ "translations": {
"Saved" : "Enrollet",
"Download" : "Pellgargañ",
"Close" : "Serriñ",
"Open website" : "Digor al lec'hienn-web",

View File

@@ -1,6 +1,7 @@
OC.L10N.register(
"news",
{
"Saved" : "Spremljeno",
"Download" : "Preuzmite",
"Close" : "Zatvori",
"Share" : "Podjeli",

View File

@@ -1,4 +1,5 @@
{ "translations": {
"Saved" : "Spremljeno",
"Download" : "Preuzmite",
"Close" : "Zatvori",
"Share" : "Podjeli",

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Sol·licitud prohibida. Sou un 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!",
@@ -14,14 +15,17 @@ OC.L10N.register(
"Purge interval" : "Interval de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Nombre mí­nim de segons abans que les fonts i carpetes eliminades siguin eliminades definitivament de la base de dades; valors per sota de 60 segons seran ignorats.",
"Maximum read count per feed" : "Màxim nombre de lectures per font",
"Defines the maximum amount of articles that can be read per feed which won't 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 font que no s'esborraran en el treball de neteja; si reapareixen articles antics després d'haver estat llegits, augmenteu aquest valor; valors negatius, com -1, desactivaran aquesta caracterí­stica.",
"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",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Nombre màxim de segons per esperar que carregui una font de RSS o Atom; si pren més temps, l'actualització serà cancel·lada.",
"Explore Service URL" : "Explora l'URL del Servei",
"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.",
"For more information check the wiki." : "Per obtenir més informació, consulteu la wiki.",
"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.",
"Saved" : "S'ha desat",
"Download" : "Baixa",
"Close" : "Tanca",
"Subscribe to" : "Subscriu a",

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Sol·licitud prohibida. Sou un 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!",
@@ -12,14 +13,17 @@
"Purge interval" : "Interval de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Nombre mí­nim de segons abans que les fonts i carpetes eliminades siguin eliminades definitivament de la base de dades; valors per sota de 60 segons seran ignorats.",
"Maximum read count per feed" : "Màxim nombre de lectures per font",
"Defines the maximum amount of articles that can be read per feed which won't 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 font que no s'esborraran en el treball de neteja; si reapareixen articles antics després d'haver estat llegits, augmenteu aquest valor; valors negatius, com -1, desactivaran aquesta caracterí­stica.",
"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",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Nombre màxim de segons per esperar que carregui una font de RSS o Atom; si pren més temps, l'actualització serà cancel·lada.",
"Explore Service URL" : "Explora l'URL del Servei",
"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.",
"For more information check the wiki." : "Per obtenir més informació, consulteu la wiki.",
"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.",
"Saved" : "S'ha desat",
"Download" : "Baixa",
"Close" : "Tanca",
"Subscribe to" : "Subscriu a",

View File

@@ -3,7 +3,7 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Požadavek se nezdařil, není dostupné síťové připojení!",
"Request unauthorized. Are you logged in?" : "Neoprávněný požadavek. Jste přihlášení?",
"Request forbidden. Are you an administrator?" : "Požadavek odepřen. Jste správce?",
"Request forbidden. Are you an admin?" : "Požadavek odepřen. Jste správce?",
"Token expired or app not enabled! Reload the page!" : "Platnost tokenu skončila nebo aplikace není povolena! Načtěte stránku znovu.",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vnitřní chyba serveru! Podrobnosti naleznete v souboru data/nextcloud.log",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Požadavek se nezdařil, Nextcloud je aktuálně v režimu údržby!",
@@ -19,16 +19,18 @@ OC.L10N.register(
"Purge interval" : "Interval čištění",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimální časový interval v sekundách, po kterém jsou z databáze smazány odstraněné kanály novinek a složky; hodnoty kratší než 60 sekund jsou ignorovány.",
"Maximum read count per feed" : "Maximální počet přečtených novinek na kanál",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Určuje nejvyšší počet článků, které jsou dostupné ke čtení z jednotlivých kanálů a nebudou smazány při čištění; pokud se staré články po přečtení znovu objevují, navyšte tuto hodnotu; negativní hodnoty jako -1 tuto funkci úplně vypnou.",
"Maximum redirects" : "Nejvyšší počet přesměrování",
"How many redirects the feed fetcher should follow." : "Kolik přesměrování se může následovat při stahování článků.",
"Feed fetcher timeout" : "Časový limit při stahování článků",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximální počet sekund pro aktualizaci RSS nebo Atom zdroje; pokud bude interval překročen, aktualizace se ukončí.",
"Explore Service URL" : "URL prohledávání",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Pokud zadáno, bude tato URL dotazována na zobrazování kanálů v sekci prohledávání kanálu. Pro návrat k výchozí službě hledání ponechte tuto kolonku prázdnou.",
"For more information check the wiki." : "Další informace jsou k dispozici na wiki stránkách projektu.",
"Update interval" : "Interval aktualizace",
"Interval in seconds in which the feeds will be updated." : "Interval (v sekundách) ve kterém budou kanály aktualizovány.",
"Successfully updated news configuration" : "Nastavení pro Novinky úspěšně zaktualizováno",
"Unable to update news config" : "Nedaří se aktualizovat nastavení pro Novinky",
"For more information check the documentation." : "Podrobnosti naleznete v dokumentaci.",
"Saved" : "Uloženo",
"Download" : "Stáhnout",
"Close" : "Zavřít",
"Subscribe to" : "Přihlásit k odběru",

View File

@@ -1,7 +1,7 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Požadavek se nezdařil, není dostupné síťové připojení!",
"Request unauthorized. Are you logged in?" : "Neoprávněný požadavek. Jste přihlášení?",
"Request forbidden. Are you an administrator?" : "Požadavek odepřen. Jste správce?",
"Request forbidden. Are you an admin?" : "Požadavek odepřen. Jste správce?",
"Token expired or app not enabled! Reload the page!" : "Platnost tokenu skončila nebo aplikace není povolena! Načtěte stránku znovu.",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Vnitřní chyba serveru! Podrobnosti naleznete v souboru data/nextcloud.log",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Požadavek se nezdařil, Nextcloud je aktuálně v režimu údržby!",
@@ -17,16 +17,18 @@
"Purge interval" : "Interval čištění",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimální časový interval v sekundách, po kterém jsou z databáze smazány odstraněné kanály novinek a složky; hodnoty kratší než 60 sekund jsou ignorovány.",
"Maximum read count per feed" : "Maximální počet přečtených novinek na kanál",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Určuje nejvyšší počet článků, které jsou dostupné ke čtení z jednotlivých kanálů a nebudou smazány při čištění; pokud se staré články po přečtení znovu objevují, navyšte tuto hodnotu; negativní hodnoty jako -1 tuto funkci úplně vypnou.",
"Maximum redirects" : "Nejvyšší počet přesměrování",
"How many redirects the feed fetcher should follow." : "Kolik přesměrování se může následovat při stahování článků.",
"Feed fetcher timeout" : "Časový limit při stahování článků",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximální počet sekund pro aktualizaci RSS nebo Atom zdroje; pokud bude interval překročen, aktualizace se ukončí.",
"Explore Service URL" : "URL prohledávání",
"If given, this service's URL will be queried for displaying the feeds in the explore feed section. To fall back to the built in explore service, leave this input empty." : "Pokud zadáno, bude tato URL dotazována na zobrazování kanálů v sekci prohledávání kanálu. Pro návrat k výchozí službě hledání ponechte tuto kolonku prázdnou.",
"For more information check the wiki." : "Další informace jsou k dispozici na wiki stránkách projektu.",
"Update interval" : "Interval aktualizace",
"Interval in seconds in which the feeds will be updated." : "Interval (v sekundách) ve kterém budou kanály aktualizovány.",
"Successfully updated news configuration" : "Nastavení pro Novinky úspěšně zaktualizováno",
"Unable to update news config" : "Nedaří se aktualizovat nastavení pro Novinky",
"For more information check the documentation." : "Podrobnosti naleznete v dokumentaci.",
"Saved" : "Uloženo",
"Download" : "Stáhnout",
"Close" : "Zavřít",
"Subscribe to" : "Přihlásit k odběru",

View File

@@ -1,6 +1,7 @@
OC.L10N.register(
"news",
{
"Saved" : "Wedi'u cadw",
"Download" : "Llwytho i lawr",
"Close" : "Cau",
"Share" : "Rhannu",

View File

@@ -1,4 +1,5 @@
{ "translations": {
"Saved" : "Wedi'u cadw",
"Download" : "Llwytho i lawr",
"Close" : "Cau",
"Share" : "Rhannu",

View File

@@ -3,6 +3,7 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "Forespørgslen mislykkedes, netværksforbindelse er ikke tilgængelig!",
"Request unauthorized. Are you logged in?" : "Forespørgslen var ikke autoriseret. Er du logget ind?",
"Request forbidden. Are you an admin?" : "Forespørgslen er ikke tilladt. Er du administrator?",
"Token expired or app not enabled! Reload the page!" : "Nøglen er udløbet eller appen er ikke aktiveret! Genindlæs siden!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern server fejl! Tjek din data/nextcloud.log log-fil for yderligere information.",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørgslen mislykkedes, Nextcloud er i øjeblikket i vedligeholdelse tilstand!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Maksimum for videredirigeringer",
"Feed fetcher timeout" : "Tidsudløb for feed-indhenter",
"Explore Service URL" : "Udforsk tjenestens URL",
"Saved" : "Gemt",
"Download" : "Download",
"Close" : "Luk",
"No articles available" : "Ingen tilgængelige artikler",

View File

@@ -1,6 +1,7 @@
{ "translations": {
"Request failed, network connection unavailable!" : "Forespørgslen mislykkedes, netværksforbindelse er ikke tilgængelig!",
"Request unauthorized. Are you logged in?" : "Forespørgslen var ikke autoriseret. Er du logget ind?",
"Request forbidden. Are you an admin?" : "Forespørgslen er ikke tilladt. Er du administrator?",
"Token expired or app not enabled! Reload the page!" : "Nøglen er udløbet eller appen er ikke aktiveret! Genindlæs siden!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Intern server fejl! Tjek din data/nextcloud.log log-fil for yderligere information.",
"Request failed, Nextcloud is in currently in maintenance mode!" : "Forespørgslen mislykkedes, Nextcloud er i øjeblikket i vedligeholdelse tilstand!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Maksimum for videredirigeringer",
"Feed fetcher timeout" : "Tidsudløb for feed-indhenter",
"Explore Service URL" : "Udforsk tjenestens URL",
"Saved" : "Gemt",
"Download" : "Download",
"Close" : "Luk",
"No articles available" : "Ingen tilgængelige artikler",

View File

@@ -2,8 +2,8 @@ OC.L10N.register(
"news",
{
"Request failed, network connection unavailable!" : "Anfrage fehlgeschlagen, Netzwerkverbindung nicht verfügbar!",
"Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Bist du angemeldet?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Bist du ein Administrator?",
"Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Bist Du angemeldet?",
"Request forbidden. Are you an admin?" : "Anfrage verboten. Bist Du ein Administrator?",
"Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte lade die Seite neu!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Interner Serverfehler! Bitte kontrolliere 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.",
@@ -13,22 +13,24 @@ OC.L10N.register(
"News folders" : "Neuigkeitenordner",
"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)",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisiere Deine Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung Deiner Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen findest Du [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) findest Du [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstelle einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstelle eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelde ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Verwende System-Cron für Aktualisierungen",
"Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn du einen eigenen Updater verwendest.",
"Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn Du einen eigenen Updater verwendest.",
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhe diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen, die der Feed-Sammler folgen soll.",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximale Anzahl an Sekunden zum Laden eines RSS- oder Atom-Feeds. Wenn dies länger dauert, wird die Aktualisierung abgebrochen.",
"Explore Service URL" : "Service-URL finden",
"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. Lasse dieses Feld unausgefüllt, um auf den eingebauten Explore-Dienst zurückzugreifen.",
"For more information check the wiki." : "Für weitere Informationen besuche das Wiki.",
"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",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden.",
"For more information check the documentation." : "Weitere Informationen findest Du in der Dokumentation.",
"Saved" : "Gespeichert",
"Download" : "Herunterladen",
"Close" : "Schließen",
"Subscribe to" : "Abonnieren von",
@@ -45,8 +47,8 @@ OC.L10N.register(
"No users found" : "Keine Nutzer gefunden",
"Error while searching for users" : "Fehler bei der Suche nach Benutzern",
"Share on social media" : "In den sozialen Medien teilen",
"I wanted you to see this article" : "Ich wünschte, du würdest dir diesen Artikel anschauen",
"Check out this article" : "Schau dir diesen Artikel an",
"I wanted you to see this article" : "Ich wünschte, Du würdest Dir diesen Artikel anschauen",
"Check out this article" : "Schau Dir diesen Artikel an",
"by" : "von",
"from" : "von",
"shared by" : "Geteilt von",

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. Bist du angemeldet?",
"Request forbidden. Are you an administrator?" : "Anfrage verboten. Bist du ein Administrator?",
"Request unauthorized. Are you logged in?" : "Anfrage nicht autorisiert. Bist Du angemeldet?",
"Request forbidden. Are you an admin?" : "Anfrage verboten. Bist Du ein Administrator?",
"Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte lade die Seite neu!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "Interner Serverfehler! Bitte kontrolliere 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,22 +11,24 @@
"News folders" : "Neuigkeitenordner",
"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)",
"📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)" : "📰 Eine RSS/Atom Feed Reader App für Nextcloud\n\n- 📲 Synchronisiere Deine Feeds mit mehreren mobilen oder Desktop [Clients] (https://nextcloud.github.io/news/clients/)\n- 🔄 Automatische Aktualisierung Deiner Newsfeeds\n- 🆓 Kostenlos und quelloffen unter AGPLv3, keine Werbung oder Premiumfunktionen\n\n**System Cron wird derzeit benötigt, damit diese App funktioniert**\n\nDie Anforderungen findest Du [hier](https://nextcloud.github.io/news/install/#dependencies)\n\nDie Liste der Änderungen (Changelog) findest Du [hier](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\n\nErstelle einen [Fehlerbericht](https://github.com/nextcloud/news/issues/new/choose)\n\nErstelle eine [Funktionsanforderung](https://github.com/nextcloud/news/discussions/new)\n\nMelde ein [Feed-Problem](https://github.com/nextcloud/news/discussions/new)",
"Use system cron for updates" : "Verwende System-Cron für Aktualisierungen",
"Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn du einen eigenen Updater verwendest.",
"Disable this if you use a custom updater." : "Deaktiviere diese Option, wenn Du einen eigenen Updater verwendest.",
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhe diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen, die der Feed-Sammler folgen soll.",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximale Anzahl an Sekunden zum Laden eines RSS- oder Atom-Feeds. Wenn dies länger dauert, wird die Aktualisierung abgebrochen.",
"Explore Service URL" : "Service-URL finden",
"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. Lasse dieses Feld unausgefüllt, um auf den eingebauten Explore-Dienst zurückzugreifen.",
"For more information check the wiki." : "Für weitere Informationen besuche das Wiki.",
"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",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden.",
"For more information check the documentation." : "Weitere Informationen findest Du in der Dokumentation.",
"Saved" : "Gespeichert",
"Download" : "Herunterladen",
"Close" : "Schließen",
"Subscribe to" : "Abonnieren von",
@@ -43,8 +45,8 @@
"No users found" : "Keine Nutzer gefunden",
"Error while searching for users" : "Fehler bei der Suche nach Benutzern",
"Share on social media" : "In den sozialen Medien teilen",
"I wanted you to see this article" : "Ich wünschte, du würdest dir diesen Artikel anschauen",
"Check out this article" : "Schau dir diesen Artikel an",
"I wanted you to see this article" : "Ich wünschte, Du würdest Dir diesen Artikel anschauen",
"Check out this article" : "Schau Dir diesen Artikel an",
"by" : "von",
"from" : "von",
"shared by" : "Geteilt von",

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 admin?" : "Anfrage verboten. Sind Sie ein Admin?",
"Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte laden Sie die Seite neu!",
"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.",
@@ -19,16 +19,18 @@ OC.L10N.register(
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhen Sie diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximale Anzahl an Sekunden zum Laden eines RSS- oder Atom-Feeds. Wenn dies länger dauert, wird die Aktualisierung abgebrochen.",
"Explore Service URL" : "Service-URL finden",
"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.",
"For more information check the wiki." : "Für weitere Informationen besuchen Sie das Wiki.",
"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",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden",
"For more information check the documentation." : "Weitere Informationen finden Sie in der Dokumentation.",
"Saved" : "Gespeichert",
"Download" : "Herunterladen",
"Close" : "Schließen",
"Subscribe to" : "Abonnieren von",

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 admin?" : "Anfrage verboten. Sind Sie ein Admin?",
"Token expired or app not enabled! Reload the page!" : "Token abgelaufen oder App nicht aktiviert! Bitte laden Sie die Seite neu!",
"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.",
@@ -17,16 +17,18 @@
"Purge interval" : "Säuberungssintervall",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Minimum an Sekunden, nachdem gelöschte Feeds und Ordner aus der Datenbank entfernt werden; Werte unter 60 Sekunden werden ignoriert.",
"Maximum read count per feed" : "Maximale Anzahl an gelesenen Artikeln pro Feed",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Definiert die maximale Anzahl an Artikeln, die pro Feed gelesen und bei einem Säuberungsauftrag nicht aus der Datenbank gelöscht werden; wenn ältere Artikel nach dem Lesen erhalten bleiben sollen, erhöhen Sie diesen Wert; negative Werte wie -1 deaktivieren diese Funktion komplett.",
"Maximum redirects" : "Maximale Anzahl Weiterleitungen",
"How many redirects the feed fetcher should follow." : "Anzahl Weiterleitungen die der Feed-Sammler folgen soll.",
"Feed fetcher timeout" : "Zeitüberschreitung Feed-Sammler",
"Maximum number of seconds to wait for an RSS or Atom feed to load; if it takes longer the update will be aborted." : "Maximale Anzahl an Sekunden zum Laden eines RSS- oder Atom-Feeds. Wenn dies länger dauert, wird die Aktualisierung abgebrochen.",
"Explore Service URL" : "Service-URL finden",
"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.",
"For more information check the wiki." : "Für weitere Informationen besuchen Sie das Wiki.",
"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",
"Unable to update news config" : "Die News-Einstellungen konnten nicht aktualisiert werden",
"For more information check the documentation." : "Weitere Informationen finden Sie in der Dokumentation.",
"Saved" : "Gespeichert",
"Download" : "Herunterladen",
"Close" : "Schließen",
"Subscribe to" : "Abonnieren von",

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 admin?" : "Το αίτημα δεν επιτράπει. Είστε διαχειριστής;",
"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 είναι προσωρινά σε κατάσταση συντήρησης!",
@@ -14,14 +15,17 @@ OC.L10N.register(
"Purge interval" : "Διάστημα καθαρισμού",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Η ελάχιστη διάρκεια σε δευτερόλεπτα μετά τη διαγραφή ροών και φακέλων, όπου θα αφαιρούνται από τη βάση δεδομένων; Οι τιμές κάτω των 60 δευτερολέπτων θα αγνοούνται.",
"Maximum read count per feed" : "Ο μέγιστος αριθμός διαβασμένων ανά ροή",
"Defines the maximum amount of articles that can be read per feed which won't 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, θα απενεργοποιήσουν αυτή τη λειτουργία.",
"Maximum redirects" : "Μέγιστος αριθμός ανακατευθύνσεων",
"How many redirects the feed fetcher should follow." : "Πόσες ανακατευθύνσεις θα μπορεί να ακολουθεί η υπηρεσία ροών.",
"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." : "Μέγιστος χρόνος σε δευτερόλεπτα, αναμονής φόρτωσης μιας ροής 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 αυτής της υπηρεσίας στην ουρά, για προβολή στο τμήμα ροών. Για επιστροφή στην προεπιλογή αφήστε το πεδίο κενό.",
"For more information check the wiki." : "Για περισσότερες πληροφορίες δείτε στο wiki.",
"Update interval" : "Εσωτερική ενημέρωση",
"Interval in seconds in which the feeds will be updated." : "Διάστημα σε δευτερόλεπτα στο οποίο θα ενημερωθούν τα feeds.",
"Saved" : "Αποθηκεύτηκαν",
"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 admin?" : "Το αίτημα δεν επιτράπει. Είστε διαχειριστής;",
"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 είναι προσωρινά σε κατάσταση συντήρησης!",
@@ -12,14 +13,17 @@
"Purge interval" : "Διάστημα καθαρισμού",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Η ελάχιστη διάρκεια σε δευτερόλεπτα μετά τη διαγραφή ροών και φακέλων, όπου θα αφαιρούνται από τη βάση δεδομένων; Οι τιμές κάτω των 60 δευτερολέπτων θα αγνοούνται.",
"Maximum read count per feed" : "Ο μέγιστος αριθμός διαβασμένων ανά ροή",
"Defines the maximum amount of articles that can be read per feed which won't 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, θα απενεργοποιήσουν αυτή τη λειτουργία.",
"Maximum redirects" : "Μέγιστος αριθμός ανακατευθύνσεων",
"How many redirects the feed fetcher should follow." : "Πόσες ανακατευθύνσεις θα μπορεί να ακολουθεί η υπηρεσία ροών.",
"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." : "Μέγιστος χρόνος σε δευτερόλεπτα, αναμονής φόρτωσης μιας ροής 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 αυτής της υπηρεσίας στην ουρά, για προβολή στο τμήμα ροών. Για επιστροφή στην προεπιλογή αφήστε το πεδίο κενό.",
"For more information check the wiki." : "Για περισσότερες πληροφορίες δείτε στο wiki.",
"Update interval" : "Εσωτερική ενημέρωση",
"Interval in seconds in which the feeds will be updated." : "Διάστημα σε δευτερόλεπτα στο οποίο θα ενημερωθούν τα feeds.",
"Saved" : "Αποθηκεύτηκαν",
"Download" : "Λήψη",
"Close" : "Κλείσιμο",
"Subscribe to" : "Εγγραφείτε στο",

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Request forbidden. Are you an admin?",
"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!",
@@ -16,6 +17,7 @@ OC.L10N.register(
"Maximum redirects" : "Maximum redirects",
"Feed fetcher timeout" : "Feed fetcher timeout",
"Explore Service URL" : "Explore Service URL",
"Saved" : "Saved",
"Download" : "Download",
"Close" : "Close",
"No articles available" : "No articles available",

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Request forbidden. Are you an admin?",
"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!",
@@ -14,6 +15,7 @@
"Maximum redirects" : "Maximum redirects",
"Feed fetcher timeout" : "Feed fetcher timeout",
"Explore Service URL" : "Explore Service URL",
"Saved" : "Saved",
"Download" : "Download",
"Close" : "Close",
"No articles available" : "No articles available",

View File

@@ -3,6 +3,7 @@ OC.L10N.register(
{
"Unread articles" : "Nelegitaj artikoloj",
"News" : "Novaĵo",
"Saved" : "Konservita",
"Download" : "Elŝuti",
"Close" : "Fermi",
"Open website" : "Malfermi TTT-ejon",

View File

@@ -1,6 +1,7 @@
{ "translations": {
"Unread articles" : "Nelegitaj artikoloj",
"News" : "Novaĵo",
"Saved" : "Konservita",
"Download" : "Elŝuti",
"Close" : "Fermi",
"Open website" : "Malfermi TTT-ejon",

View File

@@ -3,6 +3,7 @@ OC.L10N.register(
{
"Request failed, network connection unavailable!" : "La petición ha fallado, ¡la conexión de red no está disponible!",
"Request unauthorized. Are you logged in?" : "Petición no autorizada, ¿has iniciado sesión?",
"Request forbidden. Are you an admin?" : "Petición prohibida. ¿Eres el administrador?",
"Token expired or app not enabled! Reload the page!" : "¡Sesión caducada o aplicación no habilitada! ¡Vuelve a cargar la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Error interno del servidor! ¡Por favor, comprueba el archivo data/nextcloud.log para mas información!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Petición fallida! Nexcloud está actualmente en modo mantenimiento.",
@@ -18,14 +19,18 @@ OC.L10N.register(
"Purge interval" : "Intervalo de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Cantidad de segundos mínima antes de que las fuentes y carpetas borradas se eliminen de la base de datos; los valores por debajo de 60 segundos son ignorados.",
"Maximum read count per feed" : "Máximo número de lecturas por fuente",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Define la cantidad de artículos máxima que se pueden leer por fuente que no se borrarán mediante el trabajo de limpieza, si reaparecen artículos viejos después de que los hayas leído, aumenta este valor, valores negativos como -1 desactivarán esta característica.",
"Maximum redirects" : "Máximo de redirecciones",
"How many redirects the feed fetcher should follow." : "Cuántas redirecciones debería seguir el capturador de fuentes.",
"Feed fetcher timeout" : "Tiempo de espera agotado para la descarga de la fuente",
"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 que esperara a que una fuente RSS o Atom cargue; si tarda más se abortará la actualización.",
"Explore Service URL" : "Explorar 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 da, esta URL del servicio se usará para mostrar las fuentes en la sección de explorar fuentes. Para volver al servicio de exploración incorporado, deja este campo vacío.",
"For more information check the wiki." : "Para más información, comprueba la wiki.",
"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.",
"For more information check the documentation." : "Para más información, eche un vistazo a la documentación.",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"Subscribe to" : "Subscribirse a",
@@ -128,4 +133,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Notificar un error"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "translations": {
"Request failed, network connection unavailable!" : "La petición ha fallado, ¡la conexión de red no está disponible!",
"Request unauthorized. Are you logged in?" : "Petición no autorizada, ¿has iniciado sesión?",
"Request forbidden. Are you an admin?" : "Petición prohibida. ¿Eres el administrador?",
"Token expired or app not enabled! Reload the page!" : "¡Sesión caducada o aplicación no habilitada! ¡Vuelve a cargar la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Error interno del servidor! ¡Por favor, comprueba el archivo data/nextcloud.log para mas información!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Petición fallida! Nexcloud está actualmente en modo mantenimiento.",
@@ -16,14 +17,18 @@
"Purge interval" : "Intervalo de purga",
"Minimum amount of seconds after deleted feeds and folders are removed from the database; values below 60 seconds are ignored." : "Cantidad de segundos mínima antes de que las fuentes y carpetas borradas se eliminen de la base de datos; los valores por debajo de 60 segundos son ignorados.",
"Maximum read count per feed" : "Máximo número de lecturas por fuente",
"Defines the maximum amount of articles that can be read per feed which won't be deleted by the cleanup job; if old articles reappear after being read, increase this value; negative values such as -1 will turn this feature off." : "Define la cantidad de artículos máxima que se pueden leer por fuente que no se borrarán mediante el trabajo de limpieza, si reaparecen artículos viejos después de que los hayas leído, aumenta este valor, valores negativos como -1 desactivarán esta característica.",
"Maximum redirects" : "Máximo de redirecciones",
"How many redirects the feed fetcher should follow." : "Cuántas redirecciones debería seguir el capturador de fuentes.",
"Feed fetcher timeout" : "Tiempo de espera agotado para la descarga de la fuente",
"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 que esperara a que una fuente RSS o Atom cargue; si tarda más se abortará la actualización.",
"Explore Service URL" : "Explorar 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 da, esta URL del servicio se usará para mostrar las fuentes en la sección de explorar fuentes. Para volver al servicio de exploración incorporado, deja este campo vacío.",
"For more information check the wiki." : "Para más información, comprueba la wiki.",
"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.",
"For more information check the documentation." : "Para más información, eche un vistazo a la documentación.",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"Subscribe to" : "Subscribirse a",
@@ -125,5 +130,5 @@
"Keyboard shortcuts" : "Atajos de teclado",
"Documentation" : "Documentación",
"Report a bug" : "Notificar un error"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 rechazada. ¿Ha iniciado sesisón?",
"Request forbidden. Are you an admin?" : "Solicitud prohibida. ¿Es usted un adminsitrador?",
"Token expired or app not enabled! Reload the page!" : "¡La ficha expiró o la aplicación no está habilitada! ¡Favor de recargar la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Se presentó un error interno del servidor! ¡Favor de verificar el archivo data/nextcloud.log para más informacón!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Se presentó una falla, por el momento Nextcloud se encuentra en modo mantenimiento!",
@@ -16,6 +17,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de espera máximo para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -109,4 +111,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 rechazada. ¿Ha iniciado sesisón?",
"Request forbidden. Are you an admin?" : "Solicitud prohibida. ¿Es usted un adminsitrador?",
"Token expired or app not enabled! Reload the page!" : "¡La ficha expiró o la aplicación no está habilitada! ¡Favor de recargar la página!",
"Internal server error! Please check your data/nextcloud.log file for additional information!" : "¡Se presentó un error interno del servidor! ¡Favor de verificar el archivo data/nextcloud.log para más informacón!",
"Request failed, Nextcloud is in currently in maintenance mode!" : "¡Se presentó una falla, por el momento Nextcloud se encuentra en modo mantenimiento!",
@@ -14,6 +15,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de espera máximo para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -106,5 +108,5 @@
"Keyboard shortcuts" : "Atajos de teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -16,6 +17,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -109,4 +111,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -14,6 +15,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -106,5 +108,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

View File

@@ -1,6 +1,7 @@
{ "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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -13,6 +14,7 @@
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -105,5 +107,5 @@
"Keyboard shortcuts" : "Atajos del teclado",
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -3,6 +3,7 @@ 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 admin?" : "Solicitud prohibida. ¿Eres un adminsitrador?",
"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!",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Maximum redirects" : "Redirecciones máximas",
"Feed fetcher timeout" : "Tiempo de vida para el buscador de fuentes",
"Explore Service URL" : "Explorar la URL del Servicio",
"Saved" : "Guardado",
"Download" : "Descargar",
"Close" : "Cerrar",
"No articles available" : "No hay artículos disponibles",
@@ -108,4 +110,4 @@ OC.L10N.register(
"Documentation" : "Documentación",
"Report a bug" : "Reportar una falla"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"nplurals=2; plural=(n != 1);");

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