Fixes#15048
Catches the case where a full mimetype is sumbitted in the where like
clause. Before we didn't catch this and it was just forwarded as is
causing invalid queries.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Otherwise files access control will cache "application/octet-stream"
for all the target node on:
rename, move, copy and all other methods which create a new item
To check this:
1. Add an automated tagging rule which tags on mimetype NOT "httpd/unix-directory"
2. Add an access control rule which checks for any mimetype
3. Create a folder and rename it, the folder should not be tagged, but it is
Signed-off-by: Joas Schilling <coding@schilljs.com>
Otherwise this will fetch all mounts for the file id which is quite
expensive and causes long saving times in big sharing structures
Signed-off-by: Julius Härtl <jus@bitgrid.net>
If userA has a lot of recent files. But only shares 1 file with userB
(that has no files at all). We could keep searching until we run out of
recent files for userA.
Now assume the inactive userB has 20 incomming shares like that from
different users. getRecent then basically keeps consuming huge amounts
of resources and with each iteration the load on the DB increases
(because of the offset).
This makes sure we do not get more than 3 times the limit we search for
or more than 5 queries.
This means we might miss some recent entries but we should fix that
separatly. This is just to make sure the load on the DB stays sane.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
The tests check an user share and a link share; there is a slight
difference in style between them as each one is based on the test above
it, which tests increasing reshare permissions.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
The admin user is not deleted after each integration test is run, so
folders created by the admin user in one test are still there when the
next tests run; tests should be independent one from each other, so a
regular user that is created and deleted for each test should be used
instead.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Before this change the node you shared was checked for permissions.
This works when you reshare the folder that was shared with you.
However when you reshared a subfolder (e.g. as public link),
you could afterwards update the permissions and grant
create+update permissions although the share you receive was read-only.
Signed-off-by: Joas Schilling <coding@schilljs.com>
The preview element in the public share page was always wrapped with a
link to download the file; now that link is included only if the "Hide
download" option of the share is not enabled.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* reading the config directly will return the value with line breaks
* using the proper accessor gives us all bases in an array
* returns the first matching one
* having user id provided for the group base is strange and does not let
us operate like this. here we return the first one. might change in
future, a backportable fix won't have an API change however.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
there is not such strange return mode. Having invalid user ids caused this
check to fail, and as side effect share limitation to groups to not work.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
The header is the full http header like: HTTP/1.1 304 Not Modified
So comparing this to an int always yields false
This also makes the 304 RFC compliant as the resulting content length
should otherwise be the length of the message and not 0.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Although the collapse button has an absolute position Internet Explorer
11 needs the left position of that button to be explicitly set to 0
(other browsers do it implicitly due to the absolute position);
otherwise the button appears to the right of the link (and behind the
app content).
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
I saw instances where people had a lot of files (each with custom
properties) and all this prefetching blew up and started to consume an
insane amount of RAM resulting in the process getting killed.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Apparently the if statement doesn't work in all cases (even if I could
not reproduce it). So for the time being we will just not directly
stream to swift.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This allows apps to ship their own, as in some cases the #app-content
element does not exist on page load and therefore the injection fails
and the icon is missing afterwards.
Fixes https://github.com/nextcloud/server/issues/14956
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
If for whatever reason appdata got into a strange state this will at
least propegate up and not make it do boom the next run.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
LDAP plugins must change the createUser method to return the DN, as we
need this to update the cache.
Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com>
This commit fix an error happening when the subadmin tries to create an
user, adding him/her to the group s/he is subadmin of, using a LDAP
User/Group plugin.
This just forces the cache to be reset after an user is added to a
group.
Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com>
This fixes collisions that were causing uploads to break in a very
terrible way.
Kudos to @kesselb for finding the problematic place and to
@hottwister for the proposed solution.
Fixes#10527.
If a file is on external storage there is no owner. WHich means we can't
check. So just return an empty array then.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Don't try to connect to the lookup server if the lookup server was disabled
by the admin or an empty lookup server URL was given
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
we can only store etags up to 40 characters long in the database, so when we get an etag that's longer we simply hash it to bring down the length
Signed-off-by: Robin Appelman <robin@icewind.nl>
* tests/acceptance/features/login.feature:15
<details><summary>Show full log</summary>
```
Scenario: log in with valid user and invalid password once fixed by admin # /drone/src/github.com/nextcloud/server/tests/acceptance/features/login.feature:15
Given I act as John # ActorContext::iActAs()
And I can not log in with user user0 and password 654231 # LoginPageContext::iCanNotLogInWithUserAndPassword()
When I act as Jane # ActorContext::iActAs()
And I am logged in as the admin # LoginPageContext::iAmLoggedInAsTheAdmin()
And I open the User settings # SettingsMenuContext::iOpenTheUserSettings()
And I set the password for user0 to 654321 # UsersSettingsContext::iSetTheFieldForUserTo()
And I act as John # ActorContext::iActAs()
And I log in with user user0 and password 654321 # LoginPageContext::iLogInWithUserAndPassword()
Then I see that the current page is the Files app # FilesAppContext::iSeeThatTheCurrentPageIsTheFilesApp()
Failed asserting that 'http://acceptance-login/index.php/login?user=user0' starts with "http://acceptance-login/index.php/apps/files/".
```
</details>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Fails with:
* tests/acceptance/features/app-files.feature:90
<details><summary>Show full log</summary>
```
Scenario: show favorites # /drone/src/github.com/nextcloud/server/tests/acceptance/features/app-files.feature:90
Given I am logged in # LoginPageContext::iAmLoggedIn()
And I mark "welcome.txt" as favorite # FileListContext::iMarkAsFavorite()
When I open the "Favorites" section # AppNavigationContext::iOpenTheSection()
Then I see that the current section is "Favorites" # AppNavigationContext::iSeeThatTheCurrentSectionIs()
Then I see that the file list contains a file named "welcome.txt" # FileListContext::iSeeThatTheFileListContainsAFileNamed()
Row for file welcome.txt in file list could not be found after 100 seconds (NoSuchElementException)
```
</details>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Fails with:
* tests/acceptance/features/apps.feature:66
<details><summary>Show full log</summary>
```
Scenario: Show section from app store # /drone/src/github.com/nextcloud/server/tests/acceptance/features/apps.feature:66
Given I act as Jane # ActorContext::iActAs()
And I am logged in as the admin # LoginPageContext::iAmLoggedInAsTheAdmin()
And I open the Apps management # SettingsMenuContext::iOpenTheAppsManagement()
And I see that the current section is "Your apps" # AppNavigationContext::iSeeThatTheCurrentSectionIs()
When I open the "Files" section # AppNavigationContext::iOpenTheSection()
Files section item in App Navigation could not be found after 100 seconds (NoSuchElementException)
Then I see that there some apps listed from the app store # AppsManagementContext::iSeeThatThereSomeAppsListedFromTheAppStore()
And I see that the current section is "Files" # AppNavigationContext::iSeeThatTheCurrentSectionIs()
```
</details>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Fails with:
* tests/acceptance/features/app-files-tags.feature:42
<details><summary>Show full log</summary>
```
Scenario: add tags using the dropdown in the details view # /drone/src/github.com/nextcloud/server/tests/acceptance/features/app-files-tags.feature:42
Given I am logged in as the admin # LoginPageContext::iAmLoggedInAsTheAdmin()
And I visit the settings page # SettingsMenuContext::iVisitTheSettingsPage()
And I open the "Tag management" section # AppNavigationContext::iOpenTheSection()
And I see that the button to select tags is shown # SettingsContext::iSeeThatTheButtonToSelectTagsIsShown()
And I create the tag "tag1" in the settings # SettingsContext::iCreateTheTagInTheSettings()
And I create the tag "tag2" in the settings # SettingsContext::iCreateTheTagInTheSettings()
And I create the tag "tag3" in the settings # SettingsContext::iCreateTheTagInTheSettings()
And I create the tag "tag4" in the settings # SettingsContext::iCreateTheTagInTheSettings()
And I see that the dropdown for tags in the settings eventually contains the tag "tag1" # SettingsContext::iSeeThatTheDropdownForTagsInTheSettingsEventuallyContainsTheTag()
And I see that the dropdown for tags in the settings eventually contains the tag "tag2" # SettingsContext::iSeeThatTheDropdownForTagsInTheSettingsEventuallyContainsTheTag()
And I see that the dropdown for tags in the settings eventually contains the tag "tag3" # SettingsContext::iSeeThatTheDropdownForTagsInTheSettingsEventuallyContainsTheTag()
And I see that the dropdown for tags in the settings eventually contains the tag "tag4" # SettingsContext::iSeeThatTheDropdownForTagsInTheSettingsEventuallyContainsTheTag()
And I log out # SettingsMenuContext::iLogOut()
And I am logged in # LoginPageContext::iAmLoggedIn()
And I open the details view for "welcome.txt" # FileListContext::iOpenTheDetailsViewFor()
And I open the input field for tags in the details view # FilesAppContext::iOpenTheInputFieldForTagsInTheDetailsView()
When I check the tag "tag2" in the dropdown for tags in the details view # FilesAppContext::iCheckTheTagInTheDropdownForTagsInTheDetailsView()
And I check the tag "tag4" in the dropdown for tags in the details view # FilesAppContext::iCheckTheTagInTheDropdownForTagsInTheDetailsView()
Then I see that the tag "tag2" in the dropdown for tags in the details view is checked # FilesAppContext::iSeeThatTheTagInTheDropdownForTagsInTheDetailsViewIsChecked()
And I see that the tag "tag4" in the dropdown for tags in the details view is checked # FilesAppContext::iSeeThatTheTagInTheDropdownForTagsInTheDetailsViewIsChecked()
And I see that the input field for tags in the details view contains the tag "tag2" # FilesAppContext::iSeeThatTheInputFieldForTagsInTheDetailsViewContainsTheTag()
Failed asserting that false is true.
And I see that the input field for tags in the details view contains the tag "tag4" # FilesAppContext::iSeeThatTheInputFieldForTagsInTheDetailsViewContainsTheTag()
```
</details>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Fails with:
* build/integration/federation_features/federated.feature:183
* build/integration/federation_features/federated.feature:232
* build/integration/federation_features/federated.feature:247
* build/integration/federation_features/federated.feature:263
<details><summary>Show full log</summary>
```
Scenario: Reshare a federated shared file # /drone/src/github.com/nextcloud/server/build/integration/federation_features/federated.feature:183
Given Using server "REMOTE" # FederationContext::usingServer()
And user "user1" exists # FederationContext::assureUserExists()
And user "user2" exists # FederationContext::assureUserExists()
And Using server "LOCAL" # FederationContext::usingServer()
And user "user0" exists # FederationContext::assureUserExists()
And User "user0" from server "LOCAL" shares "/textfile0.txt" with user "user1" from server "REMOTE" # FederationContext::federateSharing()
And User "user1" from server "REMOTE" accepts last pending share # FederationContext::acceptLastPendingShare()
And Using server "REMOTE" # FederationContext::usingServer()
And As an "user1" # FederationContext::asAn()
When creating a share with # FederationContext::creatingShare()
| path | /textfile0 (2).txt |
| shareType | 0 |
| shareWith | user2 |
| permissions | 19 |
Then the OCS status code should be "100" # FederationContext::theOCSStatusCodeShouldBe()
Failed asserting that SimpleXMLElement Object &000000007d8e0d3c00000000403fd08a (
0 => '404'
) matches expected '100'.
...
{"message":"Can not find share with ID: 8"}
Scenario: Overwrite a federated shared folder as recipient # /drone/src/github.com/nextcloud/server/build/integration/federation_features/federated.feature:232
Given Using server "REMOTE" # FederationContext::usingServer()
And user "user1" exists # FederationContext::assureUserExists()
And user "user2" exists # FederationContext::assureUserExists()
And Using server "LOCAL" # FederationContext::usingServer()
And user "user0" exists # FederationContext::assureUserExists()
And User "user0" from server "LOCAL" shares "/PARENT" with user "user1" from server "REMOTE" # FederationContext::federateSharing()
And User "user1" from server "REMOTE" accepts last pending share # FederationContext::acceptLastPendingShare()
And Using server "REMOTE" # FederationContext::usingServer()
And As an "user1" # FederationContext::asAn()
And User "user1" modifies text of "/textfile0.txt" with text "BLABLABLA" # FederationContext::modifyTextOfFile()
When User "user1" uploads file "../../data/user1/files/textfile0.txt" to "/PARENT (2)/textfile0.txt" # FederationContext::userUploadsAFileTo()
Client error: `PUT http://localhost:8180/remote.php/webdav/PARENT%20(2)/textfile0.txt` resulted in a `404 Not Found` response:
<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:exception>Sabre\DA (truncated...)
(GuzzleHttp\Exception\ClientException)
...
{"message":"Can not find share with ID: 10"}
Scenario: Overwrite a federated shared file as recipient using old chunking # /drone/src/github.com/nextcloud/server/build/integration/federation_features/federated.feature:247
Given Using server "REMOTE" # FederationContext::usingServer()
And user "user1" exists # FederationContext::assureUserExists()
And user "user2" exists # FederationContext::assureUserExists()
And Using server "LOCAL" # FederationContext::usingServer()
And user "user0" exists # FederationContext::assureUserExists()
And User "user0" from server "LOCAL" shares "/textfile0.txt" with user "user1" from server "REMOTE" # FederationContext::federateSharing()
And User "user1" from server "REMOTE" accepts last pending share # FederationContext::acceptLastPendingShare()
And Using server "REMOTE" # FederationContext::usingServer()
And As an "user1" # FederationContext::asAn()
And user "user1" uploads chunk file "1" of "3" with "AAAAA" to "/textfile0 (2).txt" # FederationContext::userUploadsChunkFileOfWithToWithChecksum()
Client error: `PUT http://localhost:8180/remote.php/webdav/textfile0%20(2).txt-chunking-42-3-0` resulted in a `404 Not Found` response:
<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:exception>Sabre\DA (truncated...)
(GuzzleHttp\Exception\ClientException)
...
{"message":"Can not find share with ID: 11"}
Scenario: Overwrite a federated shared folder as recipient using old chunking # /drone/src/github.com/nextcloud/server/build/integration/federation_features/federated.feature:263
Given Using server "REMOTE" # FederationContext::usingServer()
And user "user1" exists # FederationContext::assureUserExists()
And user "user2" exists # FederationContext::assureUserExists()
And Using server "LOCAL" # FederationContext::usingServer()
And user "user0" exists # FederationContext::assureUserExists()
And User "user0" from server "LOCAL" shares "/PARENT" with user "user1" from server "REMOTE" # FederationContext::federateSharing()
And User "user1" from server "REMOTE" accepts last pending share # FederationContext::acceptLastPendingShare()
And Using server "REMOTE" # FederationContext::usingServer()
And As an "user1" # FederationContext::asAn()
And user "user1" uploads chunk file "1" of "3" with "AAAAA" to "/PARENT (2)/textfile0.txt" # FederationContext::userUploadsChunkFileOfWithToWithChecksum()
Client error: `PUT http://localhost:8180/remote.php/webdav/PARENT%20(2)/textfile0.txt-chunking-42-3-0` resulted in a `404 Not Found` response:
<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:exception>Sabre\DA (truncated...)
(GuzzleHttp\Exception\ClientException)
...
{"message":"Can not find share with ID: 12"}
```
</details>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Fails with:
There was 1 failure:
1) TrashbinTest::testExpireOldFiles
Failed asserting that null is identical to 'file2.txt'.
/drone/src/github.com/nextcloud/server/apps/files_trashbin/tests/TrashbinTest.php:186
OR
1) TrashbinTest::testExpireOldFiles
Failed asserting that null is identical to 'file2.txt'.
/drone/src/github.com/nextcloud/server/apps/files_trashbin/tests/TrashbinTest.php:193
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Nested groups are now cached in a CappedMemoryCache object to reduce
queries to the LDAP backend.
Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
The previous patch fixed the problem only for one level of indirection
because groupsMatchFilter() had been applied on each recursive call (and
thus there would be no second level if the first level fails the check).
This new implementation replaces the recursive call with a stack that
iterates all nested groups before filtering with groupsMatchFilter().
Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
Currently groupsMatchFilter is called before nested groups are resolved.
This basicly breaks this feature since it is not possible to inherit
membership in a group from another group.
Minimal example:
Group filter: (&(objectClass=group),(cn=nextcloud))
Nested groups: enabled
cn=nextcloud,ou=Nextcloud,ou=groups,dn=company,dn=local
objectClass: group
cn=IT,ou=groups,dn=company,dn=local
objectClass: group
memberOf: cn=nextcloud,ou=Nextcloud,ou=groups,dn=company,dn=local
cn=John Doe,ou=users,dn=company,dn=local
objectClass: person
memberOf: cn=IT,ou=groups,dn=company,dn=local
Since 'cn=IT,ou=groups,dn=company,dn=local' doesn't match the group
filter, John wouldn't be a member of group 'nextcloud'.
This patch fixes this by filtering the groups after all nested groups
have been collected. If nested groups is disabled the result will be the
same as without this patch.
Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
If the job is still present we should also not fire it off if there is
not a single active 2FA provider.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Fixes#14125
Listen to 2FA disable event. If a provider is disabled for a user. We
check if there are no more providers. If there are no more providers we
Remove the backupcode reminder notification (if still present).
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
When $data is null (which can happen when $request->getBodyAsStream() returns
null), the Exceptions says "copied bytes: 0, expected filesize: 0", which
sounds more like success...
when an addBodyListItem() is not directly followed by addBodyButton(), resulting HTML is broken
Signed-off-by: Tomasz Paluszkiewicz <tomasz.paluszkiewicz@gmail.com>
Without the lookupserver GS is kind of useless.
If the admin places their lookup sever outside of the reachable network
that is not something we can help.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Fixes#14298
If a storage doesn'tclose the write stream then $isEOF is not yet set.
So we have to fallback.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
The stream is already closed at this point. Which means feof will always
return false. We have to determine if the stream is EOF in the
preCloseCallback. And pass this info along. Then the logic works as
expected.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Fixes#12568
Since the clearing of the execution context causes another reload. We
should not do the redirect_uri handling as this results in redirecting
back to the logout page on login.
This adds a simple middleware that will just check if the
ClearExecutionContext session variable is set. If that is the case it
will just redirect back to the login page.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
otherwise they will be skipped when the results is being formatted and the
lower-cased result keys do not match.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
When a single file was dropped on the trash bin the file information was
gotten from the original element in the file list. When several files
were dropped on the trash bin the file information was gotten from the
helper elements being dragged around. The helper element also contain
the needed file information when a single file is being dragged, so the
handling was unified to always get the file information from the helper
elements.
As the handling of several files is the same as before there is still
the issue of only deleting those files shown in the drag helper instead
of all the selected files.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
The "droppedOnTrash" event was being triggered when the file list was
initialized, but it should be triggered only when the user actually
drops a file on the trash bin.
Besides that, the event had no effect; only the file list handles it,
but as it was not triggered on any element it ended being triggered on
the document, and thus not handled. Moreover, even if it had been
triggered on the file list it would have been done before the handler
was set, so it would not have been handled anyway. And even if it had
been handled no data was provided, so the handler would have failed.
In conclusion, triggering the event there was not needed, and thus it
was removed.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Since 6ad7f32938 SVG icons are directly embedded in "icons-vars.css", so
the starred trash icon is now loaded along with the regular trash icon
all at once. Therefore it is not needed to explicitly prefetch it using
a hidden div.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
In order to show the autocompletion it was needed to type at least
another character after "@", so only the mentions that matched that
character were shown. Now the autocompletion is shown as soon as "@" is
typed, which shows all the possible mentions.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
log the error in case a notification mail of a new share couldn't
be send to the recipient and finish the share operation successfully
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
When a password is reste we should make sure that all users are properly
logged in. Pending states should be cleared. For example a session where
the 2FA code is not entered yet should be cleared.
The token is now removed so the session will be killed the next time
this is checked (within 5 minutes).
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
If `is_writable()` fails, fall back to logic that attempts to create a file
and then checks if it exists. If this check fails, an error occurs as it
did before.
Discussion on this solution was found here:
https://help.nextcloud.com/t/write-errors-for-nfs-mount/23328Fixes#7124
Signed-off-by: Robert Dailey <rcdailey@gmail.com>
To make sure that the versions in the legacy backend are shared again we
have to check the storage of a file. Since all shared files are still on
the owners storage.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
The password input was shown in the popup menu when passwords were not
enforced, or when they were enforced but no password was set, which
prevented updating/changing the password once set. As the password input
should be shown too when password are enforced and a password is set no
condition is needed, so now the password input is always shown.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
When the uploaded files have a relative path (that is, when a folder is
uploaded) it is first ensured that all the parent folders exist, which
is done by trying to create them. When a folder is created in the
currently opened folder the file list is updated and a row for the new
folder is added. However, this was done too when the folder already
existed, which caused the previous row to be removed and a new one added
to replace it.
For security reasons, some special headers need to be set in requests;
this is done automatically for jQuery by handling the "ajaxSend" event
in the document. In the case of DAV requests, if the headers are not set
the server rejects the request with "CSRF check not passed".
When a file or folder is dropped on a folder row the jQuery upload
events are chained from the initial drop event, which has the row as its
target. In order to upload the file jQuery performs a request, which
triggers the "ajaxSend" event in the row; this event then bubbles up to
the document, which is then handled by adding the special headers to the
request.
However, when a folder was dropped on a folder row that folder row was
removed when ensuring that the folder exists. The jQuery upload events
were still triggered on the row, but as it had been removed it had no
parent nodes, and thus the events did not bubble up. Due to this the
"ajaxSend" event never reached the document when triggered on the
removed row, the headers were not set, and the upload failed.
All this is simply fixed by not removing the folder row when trying to
create it if it existed already.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
parallel search is not compatible with paged search, but the letter is
usually always applied.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
If the remember_login_cookie_lifetime is set to 0 this means we do not
want to use remember me at all. In that case we should also not creatae
a remember me cookie and should create a proper temp token.
Further this specifies that is not 0 the remember me time should always
be larger than the session timeout. Because else the behavior is not
really defined.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Fixes#13285
The wrapper logger should not be used here. But we need the real logger.
Since this in internal we can just pass that on directly.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
It seems iOS doesn't like us to change the location. So now we submit it
to the server that geneartes the redirect.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Admin should _not_ be able to change password when:
- if an encryption module is loaded and it uses per-user keys
- if encryption is enabled but no encryption modules are loaded
Admin should be able to change the password when:
- no encryption module is loaded and encryption is disabled
- encryption module is loaded but it doesn't require per user keys
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Before the joining and filtering removed unkown files. Resulting in
manual queries for all the files with no (unread) comments (the 99%).
Long story short. This will return a list of all the files in the parent
folder with their unread comment count (can be 0). But this makes sure
that the result is properly cached. In the dav handling.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
"OC.dirname" removes everything after the last "/", so a path without
slashes is returned without changes. "result.path" does not include
leading nor trailing "/", so when the path is for a file or folder in
the base folder "OC.dirname(result.path)" returns "result.path".
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
When id column has no autoincrement flag query for lastInsertId fails
on postgres because no value has been generated. Call lastInsertId only
if id is null.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Else on scss files we'd get <file>?v=<hash>?v=<hash2>
This is of course not valid. Now it becomes <file>?v=<hash>-<hash2>
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Fixes#7084
Now entering wrongly cased email (roeland@ instead of Roeland@) for
password reset etc. Will also work.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Because the redirect from the SAML/SSO endpoint is a POST the lax/strict
cookies are not properly send.
Note that it is not strictly requried on this endpoint as we do not need
the remember me data. Only the real session info is enough. The endpoint
is also already protected by a state token.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
during login they might be cached as non-existing and cause an Exception
in the long run
reduces some duplication, too
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This prevent the object store and cache from getting out of sync
when an objectstore silently fails or the php process get's killed
during the upload without giving us the chance to cleanup
Signed-off-by: Robin Appelman <robin@icewind.nl>
Disabled buttons use the default cursor, but as the cursor property for
primary buttons is set after the cursor property for disabled buttons
the latter is always overridden, even if the primary button is also
disabled. Due to this it is necessary to explicitly set the default
cursor for disabled primary buttons.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Fixes#12588
Probably needs more fixing for the other cases. But this is the quick
fix I could come up with for now.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
When a touch is done (i.e. when creating a new file in the node API)
The hooks contain 'write' and 'touch' (and the operation is touch as
well). This would cause a double write update. Which doesn't make sense.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
The second execute statement should be inside the if block. Else it gets
executed twice which makes no sense.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Fixes#9058
If the option to autocomplete users is disabled. We also should not
enumerate the users on this endpoint.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
c23a66cda4 broke the system address book.
We now move the ACL rules for this special case up and all is good in
the world again.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Having both "FilesAppSharingContext" and "FilesSharingAppContext" was
confusing, so "FilesSharingAppContext" was renamed to a more descriptive
name.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
To reshare a file there must be at least three enabled users in the
system; although it would be possible to run the steps to create a third
user in the scenarios that need it for convenience a third enabled user
besides "admin" and "user0" was added to the default setup.
In a similar way, a new step was added too to login as a given user
name, similar to the steps to log in as "user0" and as "admin".
Finally, another actor, "Jim", was introduced for those scenarios which
should be played by three standard actors (that is, without a special
configuration like "Rubeus").
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
If the server is too slow, changing to a different file immediately
after sending a new comment but without waiting for the comment to be
shown for the original file could cause the new comment to be shown for
the current file instead.
This is, indeed, a bug in the comments. However, it is not possible to
test it reliably in the acceptance tests, as it depends on how fast the
server adds the message and how fast the client changes to a different
file; sometimes the test would fail and sometimes it would not.
Therefore, now it is waited for the comment to be added before changing
to another file, as in this case it can be reliably tested that changing
to a different file does not cause the comments from the previous file
to be shown in the current file (this was a different bug already fixed
and due to which this test was added in the first place).
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
When the "Comments" tab is open the empty content element is always in
the DOM, although it is only shown once the message collection was
fetched and there were no messages. Due to this it is necessary to
explicitly wait for it to be shown instead of relying on the implicit
wait made to find the element; otherwise it would be found immediately
and if the collection was not fetched yet it would not be visible,
causing the test to fail.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"’n Donkertema om u oë ’n ruskans te geen deur die algehele ligsterkte en helderheid te verminder. Dit word nog ontwikkel; rapporteer asb. enige probleme wat u ervaar.",
"Dyslexia font":"Disleksie-font",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic is ’n gratis lettertipe/font wat ontwerp is om sommige van die algemene leesfoute wat deur disleksie veroorsaak word, te versag.",
"Accessibility":"Toeganklikheid",
"Accessibility options for nextcloud":"Toeganklikheidsopsies vir nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bied veelvuldige toeganklikheidsopsies om u gebruik van Nextcloud te vergemaklik",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"’n Hoëkontrastema om u navigasie te vergemaklik. Visuele kwaliteit sal verminder word, maar die duidelikheid sal verbeter.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"’n Donkertema om u oë ’n ruskans te geen deur die algehele ligsterkte en helderheid te verminder. Dit word nog ontwikkel; rapporteer asb. enige probleme wat u ervaar.",
"Dyslexia font":"Disleksie-font",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic is ’n gratis lettertipe/font wat ontwerp is om sommige van die algemene leesfoute wat deur disleksie veroorsaak word, te versag.",
"Accessibility":"Toeganklikheid",
"Accessibility options for nextcloud":"Toeganklikheidsopsies vir nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bied veelvuldige toeganklikheidsopsies om u gebruik van Nextcloud te vergemaklik",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"’n Hoëkontrastema om u navigasie te vergemaklik. Visuele kwaliteit sal verminder word, maar die duidelikheid sal verbeter.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"المظهر المظلم يخفف من الإرهاق على عينيك، عن طريق تخفيض النور والسطوعة بشكلٍ عام من التطبيق. هذي الميزة لا زالت تحت التطوير، لهذا السبب نود منكم بإبلاغ عن أي مشكلة قد تصادفكم.",
"High contrast mode":"وضع التباين العالي",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"وضع التباين العالي يساعدك في إستخدام التطبيق والإنتقال في القوائم بسهوله. علماً أن الجودة سوف تتظرر سلبياً من هذا الوضع لكن الدقة سوف تتحسن بكثير.",
"Dyslexia font":"خط لعسر القرائة",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic خط مجاني مصمم للمساعدة في تصحيح الأخطاء المتسببة من عسر القرائة.",
"Accessibility":"إمكانية الوصول",
"Accessibility options for nextcloud":"خيارات إمكانية الوصول لـNextCloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"توفر خيارات إمكانية الوصول عديدة لتسهيل إستخدامك لـNextCloud",
"Web Content Accessibility Guidelines":"شروط إمكانية الوصول لمحتوى الويب",
"our issue tracker":"تعقب الأخطاء الخاص بنا",
"our design team":"فريق التصميم الخاص بنا",
"Enable":"تفعيل",
"High contrast theme":"وضع التباين العالي",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"وضع التباين العالي يساعدك في إستخدام التطبيق والإنتقال في القوائم بسهوله. علماً أن الجودة سوف تتظرر سلبياً من هذا الوضع لكن الدقة سوف تتحسن بكثير.",
"Dark theme (beta)":"مظهر مظلم (تحت التجريب)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic خط مجاني مصمم للمساعدة في تصحيح الأخطاء المتسببة من عسر القرائة. الخط أنشئ من قبل أبيلاردو جونزاليس، وأنزله بترخيص مفتوح المصدر.",
"Provides multiple accessibilities options to ease your use of nextcloud":"توفر خيارات إمكانية الوصول عديدة لتسهيل إستخدامك لـnextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"المظهر المظلم يخفف من الإرهاق على عينيك، عن طريق تخفيض النور والسطوعة بشكلٍ عام من التطبيق. هذي الميزة لا زالت تحت التطوير، لهذا السبب نود منكم بإبلاغ عن أي مشكلة قد تصادفكم.",
"High contrast mode":"وضع التباين العالي",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"وضع التباين العالي يساعدك في إستخدام التطبيق والإنتقال في القوائم بسهوله. علماً أن الجودة سوف تتظرر سلبياً من هذا الوضع لكن الدقة سوف تتحسن بكثير.",
"Dyslexia font":"خط لعسر القرائة",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic خط مجاني مصمم للمساعدة في تصحيح الأخطاء المتسببة من عسر القرائة.",
"Accessibility":"إمكانية الوصول",
"Accessibility options for nextcloud":"خيارات إمكانية الوصول لـNextCloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"توفر خيارات إمكانية الوصول عديدة لتسهيل إستخدامك لـNextCloud",
"Web Content Accessibility Guidelines":"شروط إمكانية الوصول لمحتوى الويب",
"our issue tracker":"تعقب الأخطاء الخاص بنا",
"our design team":"فريق التصميم الخاص بنا",
"Enable":"تفعيل",
"High contrast theme":"وضع التباين العالي",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"وضع التباين العالي يساعدك في إستخدام التطبيق والإنتقال في القوائم بسهوله. علماً أن الجودة سوف تتظرر سلبياً من هذا الوضع لكن الدقة سوف تتحسن بكثير.",
"Dark theme (beta)":"مظهر مظلم (تحت التجريب)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic خط مجاني مصمم للمساعدة في تصحيح الأخطاء المتسببة من عسر القرائة. الخط أنشئ من قبل أبيلاردو جونزاليس، وأنزله بترخيص مفتوح المصدر.",
"Provides multiple accessibilities options to ease your use of nextcloud":"توفر خيارات إمكانية الوصول عديدة لتسهيل إستخدامك لـnextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Тъмна тема, която облекчава очите ви, като намалява яркостта. Все още е в процес на разработка, затова, моля, докладвайте за всички проблеми, които откриете.",
"High contrast mode":"Висок контраст",
"Dyslexia font":"Шрифт за дислексия",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic е безплатен шрифт, предназначен за смекчаване на някои от често срещаните грешки при четенето, причинени от дислексия.",
"Accessibility":"Достъпност",
"Accessibility options for nextcloud":"Опции за достъпност за nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Осигурява множество опции за достъпност за улесняване на използването на Nextcloud",
"Web Content Accessibility Guidelines":"Указания за достъпност на уеб съдържание",
"our design team":"нашия екип",
"Enable":"Включване",
"High contrast theme":"Тема с висок контраст",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Тема с висок контраст за улесняване на навигацията. Визуалното качество ще бъде намалено, но яснотата ще бъде увеличена.",
"Dark theme (beta)":"Тъмна тема (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic е безплатен шрифт, предназначен за смекчаване на някои от често срещаните грешки при четенето, причинени от дислексия.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Осигурява множество опции за достъпност за улесняване на използването на Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Тъмна тема, която облекчава очите ви, като намалява яркостта. Все още е в процес на разработка, затова, моля, докладвайте за всички проблеми, които откриете.",
"High contrast mode":"Висок контраст",
"Dyslexia font":"Шрифт за дислексия",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic е безплатен шрифт, предназначен за смекчаване на някои от често срещаните грешки при четенето, причинени от дислексия.",
"Accessibility":"Достъпност",
"Accessibility options for nextcloud":"Опции за достъпност за nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Осигурява множество опции за достъпност за улесняване на използването на Nextcloud",
"Web Content Accessibility Guidelines":"Указания за достъпност на уеб съдържание",
"our design team":"нашия екип",
"Enable":"Включване",
"High contrast theme":"Тема с висок контраст",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Тема с висок контраст за улесняване на навигацията. Визуалното качество ще бъде намалено, но яснотата ще бъде увеличена.",
"Dark theme (beta)":"Тъмна тема (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic е безплатен шрифт, предназначен за смекчаване на някои от често срещаните грешки при четенето, причинени от дислексия.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Осигурява множество опции за достъпност за улесняване на използването на Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema fosc que ajuda els ulls reduint la lluminositat i la brillantor generals. Com que encara es troba en desenvolupament, agrairem que informeu de les errades que hi pugueu trobar.",
"High contrast mode":"Mode de contrast alt",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un mode de contrast alt per facilitar la navegació. La qualitat visual es reduirà però s'incrementarà la claredat.",
"Dyslexia font":"Tipus de lletra per a la dislèxia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic és un tipus de lletra gratuït dissenyat per mitigar alguns dels errors de lectura habituals causats per la dislèxia.",
"Accessibility":"Accessibilitat",
"Accessibility options for nextcloud":"Paràmetres d'accessibilitat de Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Proporciona diversos paràmetres d'accessibilitat per facilitar-vos l'ús de Nextcloud",
"Web Content Accessibility Guidelines":"Pautes d'accessibilitat de continguts web",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema de contrast alt per facilitar la navegació. La qualitat visual es reduirà però s'incrementarà la claredat.",
"Dark theme (beta)":"Tema fosc (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic és un tipus de lletra dissenyat per alleujar alguns dels problemes habituals de lectura causats per la dislèxia. El tipus de lletra fou creat per Abelardo Gonzalez, que el va publicar amb una llicència oberta.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Proporciona diverses opcions d'accessibilitat per facilitar l'ús del Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema fosc que ajuda els ulls reduint la lluminositat i la brillantor generals. Com que encara es troba en desenvolupament, agrairem que informeu de les errades que hi pugueu trobar.",
"High contrast mode":"Mode de contrast alt",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un mode de contrast alt per facilitar la navegació. La qualitat visual es reduirà però s'incrementarà la claredat.",
"Dyslexia font":"Tipus de lletra per a la dislèxia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic és un tipus de lletra gratuït dissenyat per mitigar alguns dels errors de lectura habituals causats per la dislèxia.",
"Accessibility":"Accessibilitat",
"Accessibility options for nextcloud":"Paràmetres d'accessibilitat de Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Proporciona diversos paràmetres d'accessibilitat per facilitar-vos l'ús de Nextcloud",
"Web Content Accessibility Guidelines":"Pautes d'accessibilitat de continguts web",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema de contrast alt per facilitar la navegació. La qualitat visual es reduirà però s'incrementarà la claredat.",
"Dark theme (beta)":"Tema fosc (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic és un tipus de lletra dissenyat per alleujar alguns dels problemes habituals de lectura causats per la dislèxia. El tipus de lletra fou creat per Abelardo Gonzalez, que el va publicar amb una llicència oberta.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Proporciona diverses opcions d'accessibilitat per facilitar l'ús del Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tmavý motiv vzhledu pro ulevení vašim očím snížením celkové svítivosti a jasu. Jeho vývoj zatím ještě není zcela dokončen, proto prosíme hlaste jakékoli problémy, se kterými se setkáte.",
"High contrast mode":"Režim s vysokým kontrastem",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Režim s vysokým kontrastem pro usnadnění orientace při pohybu po aplikaci. Vizuální kvalita bude snížena, zato zřetelnost se zlepší.",
"Dyslexia font":"Písmo pro dyslektiky",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic je bezplatné písmo (font) navržené tak, aby odpomáhalo od některých běžných chybování při čtení, způsobených dyslexií.",
"Accessibility":"Zpřístupnění",
"Accessibility options for nextcloud":"Předvolby v Nexcloud pro zpřístupnění",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Poskytuje vícero možností zpřístupnění pro usnadnění používání Nextcloud",
"Web Content Accessibility Guidelines":"Pokyny pro přístupnost webového obsahu (WCAG)",
"our issue tracker":"náš systém evidence hlášení problémů",
"our design team":"náš tým návrhářů",
"Enable":"Zapnout",
"High contrast theme":"Motiv vzhledu s vysokým kontrastem",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Motiv vzhledu s vysokým kontrastem pro usnadnění orientace při pohybu po aplikaci. Vizuální kvalita bude snížena, zato zřetelnost se zlepší.",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic je bezplatné písmo (font) navržené tak, aby odpomáhalo od některých běžných chybování při čtení, způsobených dyslexií. Toto písmo bylo vytvořeno Abelardem Gonzalezem, který ho vydal pod open source licencí.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Poskytuje vícero možností zpřístupnění pro usnadnění používání Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tmavý motiv vzhledu pro ulevení vašim očím snížením celkové svítivosti a jasu. Jeho vývoj zatím ještě není zcela dokončen, proto prosíme hlaste jakékoli problémy, se kterými se setkáte.",
"High contrast mode":"Režim s vysokým kontrastem",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Režim s vysokým kontrastem pro usnadnění orientace při pohybu po aplikaci. Vizuální kvalita bude snížena, zato zřetelnost se zlepší.",
"Dyslexia font":"Písmo pro dyslektiky",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic je bezplatné písmo (font) navržené tak, aby odpomáhalo od některých běžných chybování při čtení, způsobených dyslexií.",
"Accessibility":"Zpřístupnění",
"Accessibility options for nextcloud":"Předvolby v Nexcloud pro zpřístupnění",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Poskytuje vícero možností zpřístupnění pro usnadnění používání Nextcloud",
"Web Content Accessibility Guidelines":"Pokyny pro přístupnost webového obsahu (WCAG)",
"our issue tracker":"náš systém evidence hlášení problémů",
"our design team":"náš tým návrhářů",
"Enable":"Zapnout",
"High contrast theme":"Motiv vzhledu s vysokým kontrastem",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Motiv vzhledu s vysokým kontrastem pro usnadnění orientace při pohybu po aplikaci. Vizuální kvalita bude snížena, zato zřetelnost se zlepší.",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic je bezplatné písmo (font) navržené tak, aby odpomáhalo od některých běžných chybování při čtení, způsobených dyslexií. Toto písmo bylo vytvořeno Abelardem Gonzalezem, který ho vydal pod open source licencí.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Poskytuje vícero možností zpřístupnění pro usnadnění používání Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Et mørk tema, venligere for øjnene ved at dæmpe lysstyrken. Det er stadig under udvikling så indberet venligst alle problemer du måtte finde.",
"High contrast mode":"Højkontrasttilstand",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"En højkontrasttilstand letter navigationen. Presentation af lavere kvalitet, men tydeligere.",
"Dyslexia font":"Skrifftype for ordblinde",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er en gratis skrifttype designet til at undgå læsefejl pga. ordblindhed",
"Accessibility":"Handicapvenlig",
"Accessibility options for nextcloud":"Handicapvenlige indstillinger for nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Tilbyder flere handicapvenlige indstillinger til at lette brugen af Nextcloud",
"Web Content Accessibility Guidelines":"Handicapvenlige retningslinjer for Web sider",
"our issue tracker":"vores problem følger",
"our design team":"vores designteam",
"Enable":"Aktivér",
"High contrast theme":"Højkontrasttema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Et højkontrasttema letter navigationen. Presentation af lavere kvalitet, men tydeligere.",
"Dark theme (beta)":"Mørkt tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic er en gratis skrifttype/font designet til at undgå typiske læsefejl pga. ordblindhed. Skrifttypen er skabt af Abelardo Gonzalez, som har udgivet den med en open-source licens.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Tilbyder flere handicapvenlige indstillinger til at lette brugen af Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Et mørk tema, venligere for øjnene ved at dæmpe lysstyrken. Det er stadig under udvikling så indberet venligst alle problemer du måtte finde.",
"High contrast mode":"Højkontrasttilstand",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"En højkontrasttilstand letter navigationen. Presentation af lavere kvalitet, men tydeligere.",
"Dyslexia font":"Skrifftype for ordblinde",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er en gratis skrifttype designet til at undgå læsefejl pga. ordblindhed",
"Accessibility":"Handicapvenlig",
"Accessibility options for nextcloud":"Handicapvenlige indstillinger for nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Tilbyder flere handicapvenlige indstillinger til at lette brugen af Nextcloud",
"Web Content Accessibility Guidelines":"Handicapvenlige retningslinjer for Web sider",
"our issue tracker":"vores problem følger",
"our design team":"vores designteam",
"Enable":"Aktivér",
"High contrast theme":"Højkontrasttema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Et højkontrasttema letter navigationen. Presentation af lavere kvalitet, men tydeligere.",
"Dark theme (beta)":"Mørkt tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic er en gratis skrifttype/font designet til at undgå typiske læsefejl pga. ordblindhed. Skrifttypen er skabt af Abelardo Gonzalez, som har udgivet den med en open-source licens.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Tilbyder flere handicapvenlige indstillinger til at lette brugen af Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ein dunkles Design, das die Augen entspannt, indem es die allgemeine Lichtstärke und Helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melde bitte alle Probleme, die Du findest.",
"High contrast mode":"Kontrastreicher Modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Übersichtlichkeit jedoch erhöht.",
"Dyslexia font":"Legasthenie-Schriftart",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.",
"Accessibility":"Barrierefreiheit",
"Accessibility options for nextcloud":"Optionen zur Barrierefreiheit in Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"Web Content Accessibility Guidelines":"Richtlinien für die Barrierefreiheit von Webinhalten",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreiches Design, das die Navigation erleichtert. Die Bildqualität wird reduziert, aber die Klarheit wird verbessert.",
"Dark theme (beta)":"Dunkles Design (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren. Die Schriftart wurde von Abelardo Gonzalez erstellt, der sie unter einer quelloffenen Lizenz veröffentlichte.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ein dunkles Design, das die Augen entspannt, indem es die allgemeine Lichtstärke und Helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melde bitte alle Probleme, die Du findest.",
"High contrast mode":"Kontrastreicher Modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Übersichtlichkeit jedoch erhöht.",
"Dyslexia font":"Legasthenie-Schriftart",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.",
"Accessibility":"Barrierefreiheit",
"Accessibility options for nextcloud":"Optionen zur Barrierefreiheit in Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"Web Content Accessibility Guidelines":"Richtlinien für die Barrierefreiheit von Webinhalten",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreiches Design, das die Navigation erleichtert. Die Bildqualität wird reduziert, aber die Klarheit wird verbessert.",
"Dark theme (beta)":"Dunkles Design (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren. Die Schriftart wurde von Abelardo Gonzalez erstellt, der sie unter einer quelloffenen Lizenz veröffentlichte.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ein dunkles Design, das die Augen entspannt, indem es die Gesamthelligkeit und -helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melden Sie bitte alle Probleme, die Sie finden.",
"High contrast mode":"Kontrastreicher Modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Übersichtlichkeit jedoch erhöht.",
"Dyslexia font":"Legasthenie-Schriftart",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.",
"Accessibility":"Barrierefreiheit",
"Accessibility options for nextcloud":"Optionen zur Barrierefreiheit in Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"Web Content Accessibility Guidelines":"Richtlinien für die Barrierefreiheit von Webinhalten",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreiches Design, das die Navigation erleichtert. Die Bildqualität wird reduziert, aber die Klarheit wird verbessert.",
"Dark theme (beta)":"Dunkles Design (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren. Die Schriftart wurde von Abelardo Gonzalez erstellt, der sie unter einer quelloffenen Lizenz veröffentlichte.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ein dunkles Design, das die Augen entspannt, indem es die Gesamthelligkeit und -helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melden Sie bitte alle Probleme, die Sie finden.",
"High contrast mode":"Kontrastreicher Modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Übersichtlichkeit jedoch erhöht.",
"Dyslexia font":"Legasthenie-Schriftart",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.",
"Accessibility":"Barrierefreiheit",
"Accessibility options for nextcloud":"Optionen zur Barrierefreiheit in Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"Web Content Accessibility Guidelines":"Richtlinien für die Barrierefreiheit von Webinhalten",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ein kontrastreiches Design, das die Navigation erleichtert. Die Bildqualität wird reduziert, aber die Klarheit wird verbessert.",
"Dark theme (beta)":"Dunkles Design (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren. Die Schriftart wurde von Abelardo Gonzalez erstellt, der sie unter einer quelloffenen Lizenz veröffentlichte.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ένα σκοτεινό θέμα που διευκολύνει τα μάτια σας μειώνοντας την συνολική ακτινοβολία και φωτεινότητα. Είναι ακόμη υπό δοκιμή, οπότε θα σας παρακαλούσαμε να αναφέρετε οποιαδήποτε προβλήματα παρατηρηθούν.",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Λειτουργία με υψηλή αντίθεση γιανα διευκολύνει την πλοήγηση σας. Η οπτική ποιότητα θα είναι μειωμένη αλλά θα έχετε υψηλότερη ευκρίνεια.",
"Dyslexia font":"Γραμματοσειρά για δυσλεκτικούς",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"Η OpenDyslexic είναι μία δωρεάν γραμματοσειρά σχεδιασμένη ώστε να περιορίζει ορισμένα από τα πιο συνήθη προβλήματα που προκαλεί η δυσλεξία στην ανάγνωση",
"Accessibility":"Προσβασιμότητα",
"Accessibility options for nextcloud":"Ρυθμίσεις προσβασιμότητας του nextcloud.",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Προσφέρει πολλαπλές επιλογές προσβασιμότητας γιανα διευκολύνουν τη χρήση του Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ένα θέμα με υψηλή αντίθεση γιανα διευκολύνει την πλοήγηση σας. Η οπτική ποιότητα θα είναι μειωμένη αλλά θα έχετε υψηλότερη ευκρίνεια.",
"Dark theme (beta)":"Σκοτεινό θέμα (δοκιμαστική έκδοση)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"Η OpenDyslexic είναι μια ελεύθερη γραμματοσειρά που έχει σχεδιαστεί γιανα μετριάζει μερικά από τα κοινά σφάλματα ανάγνωσης που προκαλούνται από δυσλεξία. Η γραμματοσειρά δημιουργήθηκε από τον Abelardo Gonzalez, ο οποίος την κυκλοφόρησε με χρήση άδειας ανοικτού κώδικα.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Προσφέρει πολλαπλές επιλογές προσβασιμότητας γιανα διευκολύνει τη χρήση του Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ένα σκοτεινό θέμα που διευκολύνει τα μάτια σας μειώνοντας την συνολική ακτινοβολία και φωτεινότητα. Είναι ακόμη υπό δοκιμή, οπότε θα σας παρακαλούσαμε να αναφέρετε οποιαδήποτε προβλήματα παρατηρηθούν.",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Λειτουργία με υψηλή αντίθεση γιανα διευκολύνει την πλοήγηση σας. Η οπτική ποιότητα θα είναι μειωμένη αλλά θα έχετε υψηλότερη ευκρίνεια.",
"Dyslexia font":"Γραμματοσειρά για δυσλεκτικούς",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"Η OpenDyslexic είναι μία δωρεάν γραμματοσειρά σχεδιασμένη ώστε να περιορίζει ορισμένα από τα πιο συνήθη προβλήματα που προκαλεί η δυσλεξία στην ανάγνωση",
"Accessibility":"Προσβασιμότητα",
"Accessibility options for nextcloud":"Ρυθμίσεις προσβασιμότητας του nextcloud.",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Προσφέρει πολλαπλές επιλογές προσβασιμότητας γιανα διευκολύνουν τη χρήση του Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ένα θέμα με υψηλή αντίθεση γιανα διευκολύνει την πλοήγηση σας. Η οπτική ποιότητα θα είναι μειωμένη αλλά θα έχετε υψηλότερη ευκρίνεια.",
"Dark theme (beta)":"Σκοτεινό θέμα (δοκιμαστική έκδοση)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"Η OpenDyslexic είναι μια ελεύθερη γραμματοσειρά που έχει σχεδιαστεί γιανα μετριάζει μερικά από τα κοινά σφάλματα ανάγνωσης που προκαλούνται από δυσλεξία. Η γραμματοσειρά δημιουργήθηκε από τον Abelardo Gonzalez, ο οποίος την κυκλοφόρησε με χρήση άδειας ανοικτού κώδικα.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Προσφέρει πολλαπλές επιλογές προσβασιμότητας γιανα διευκολύνει τη χρήση του Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Malhela etoso, kiu helpas viajn okulojn per limigo de heleco kaj brileco. Ĝi ankoraŭ ellaboriĝas, do ne hezitu raporti problemon.",
"High contrast mode":"Altkontrasta reĝimo",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Altkontrasta reĝimo, kiu faciligas vian navigadon. Vida kvalito malpliiĝos, sed klareco pliiĝos.",
"Dyslexia font":"Tiparo por limigi vortblindecon",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic estas tiparo kreita por malpliigi legajn erarojn kaŭzitajn de vortblindeco (medicine „disleksio“).",
"Accessibility":"Alirebleco",
"Accessibility options for nextcloud":"Alireblecaj opcioj por Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Provizas plurajn alireblecajn opciojn por faciligi vian uzon de Nextcloud.",
"Web Content Accessibility Guidelines":"gvidnormoj pri alirebleco de la TTT-enhavo",
"our issue tracker":"problem-spuradilo",
"our design team":"nian teamon de fasonistoj",
"Enable":"Ŝalti la opcion",
"High contrast theme":"Altkontrasta etoso",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Altkontrasta etoso, kiu faciligas vian navigadon. Vida kvalito malpliiĝos, sed klareco pliiĝos.",
"Dark theme (beta)":"Malhela etoso (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic estas tiparo kreita por malpliigi legajn erarojn kaŭzitajn de vortblindeco (medicine „disleksio“). La tiparon kreis Abelardo Gonzalez, kiu eldonis ĝin kun malfermitkoda permesilo.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Provizas plurajn alireblecajn opciojn por faciligi vian uzon de Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Malhela etoso, kiu helpas viajn okulojn per limigo de heleco kaj brileco. Ĝi ankoraŭ ellaboriĝas, do ne hezitu raporti problemon.",
"High contrast mode":"Altkontrasta reĝimo",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Altkontrasta reĝimo, kiu faciligas vian navigadon. Vida kvalito malpliiĝos, sed klareco pliiĝos.",
"Dyslexia font":"Tiparo por limigi vortblindecon",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic estas tiparo kreita por malpliigi legajn erarojn kaŭzitajn de vortblindeco (medicine „disleksio“).",
"Accessibility":"Alirebleco",
"Accessibility options for nextcloud":"Alireblecaj opcioj por Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Provizas plurajn alireblecajn opciojn por faciligi vian uzon de Nextcloud.",
"Web Content Accessibility Guidelines":"gvidnormoj pri alirebleco de la TTT-enhavo",
"our issue tracker":"problem-spuradilo",
"our design team":"nian teamon de fasonistoj",
"Enable":"Ŝalti la opcion",
"High contrast theme":"Altkontrasta etoso",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Altkontrasta etoso, kiu faciligas vian navigadon. Vida kvalito malpliiĝos, sed klareco pliiĝos.",
"Dark theme (beta)":"Malhela etoso (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic estas tiparo kreita por malpliigi legajn erarojn kaŭzitajn de vortblindeco (medicine „disleksio“). La tiparon kreis Abelardo Gonzalez, kiu eldonis ĝin kun malfermitkoda permesilo.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Provizas plurajn alireblecajn opciojn por faciligi vian uzon de Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tema oscuro para facilitar la navegación reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que por favor, comunique cualquier problema que encuentre.",
"High contrast mode":"Modo de alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un modo de alto contraste para facilitar la navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dyslexia font":"Tipo de letra para dislexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic es un tipo de letra/fuente libre diseñado para reducir algunos de los errores de lectura comunes causados por la dislexia.",
"Accessibility":"Accesibilidad",
"Accessibility options for nextcloud":"Opciones de accesibilidad para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ofrece múltiples opciones de accesibilidad para facilitarte el uso de Nextcloud",
"Web Content Accessibility Guidelines":"Guía de accesibilidad para contenido web",
"our issue tracker":"nuestro rastreador de problemas",
"our design team":"nuestro equipo de diseño",
"Enable":"Activa",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema de alto contraste para facilitar la navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dark theme (beta)":"Tema oscuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic es un tipo de letra/fuente libre diseñada para reducir algunos de los errores de lectura más comunes causados por la dislexia. Este tipo de letra lo creó Abelardo González, que lo liberó con una licencia de código abierto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Proporciona múltiples opciones de accesibilidad para facilitar el uso de nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tema oscuro para facilitar la navegación reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que por favor, comunique cualquier problema que encuentre.",
"High contrast mode":"Modo de alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un modo de alto contraste para facilitar la navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dyslexia font":"Tipo de letra para dislexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic es un tipo de letra/fuente libre diseñado para reducir algunos de los errores de lectura comunes causados por la dislexia.",
"Accessibility":"Accesibilidad",
"Accessibility options for nextcloud":"Opciones de accesibilidad para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ofrece múltiples opciones de accesibilidad para facilitarte el uso de Nextcloud",
"Web Content Accessibility Guidelines":"Guía de accesibilidad para contenido web",
"our issue tracker":"nuestro rastreador de problemas",
"our design team":"nuestro equipo de diseño",
"Enable":"Activa",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema de alto contraste para facilitar la navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dark theme (beta)":"Tema oscuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic es un tipo de letra/fuente libre diseñada para reducir algunos de los errores de lectura más comunes causados por la dislexia. Este tipo de letra lo creó Abelardo González, que lo liberó con una licencia de código abierto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Proporciona múltiples opciones de accesibilidad para facilitar el uso de nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema oscuro para facilitar la vista al reducir la luminosidad y el brillo general. Todavía está en desarrollo, por lo tanto, informe cualquier problema que pueda encontrar.",
"High contrast mode":"Modo alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un modo de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dyslexia font":"Dislexia fuente",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic es un tipo de letra/fuente gratuita diseñada para mitigar algunos de los errores comunes de lectura causados por la dislexia.",
"Accessibility":"Accesibilidad",
"Accessibility options for nextcloud":"Opciones de accesibilidad para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Proporciona múltiples opciones de accesibilidad para facilitar el uso de Nextcloud",
"Web Content Accessibility Guidelines":"Pautas de accesibilidad de contenido web",
"our issue tracker":"nuestro rastreador de problemas",
"our design team":"nuestro equipo de diseño",
"Enable":"Habilitar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dark theme (beta)":"Tema oscuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic es un tipo de letra/fuente gratuito diseñado para mitigar algunos de los errores de lectura comunes causados por la dislexia. El tipo de letra fue creado por Abelardo González, quien lo lanzó a través de una licencia de código abierto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Proporciona múltiples opciones de accesibilidad para facilitar su uso de nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema oscuro para facilitar la vista al reducir la luminosidad y el brillo general. Todavía está en desarrollo, por lo tanto, informe cualquier problema que pueda encontrar.",
"High contrast mode":"Modo alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un modo de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dyslexia font":"Dislexia fuente",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic es un tipo de letra/fuente gratuita diseñada para mitigar algunos de los errores comunes de lectura causados por la dislexia.",
"Accessibility":"Accesibilidad",
"Accessibility options for nextcloud":"Opciones de accesibilidad para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Proporciona múltiples opciones de accesibilidad para facilitar el uso de Nextcloud",
"Web Content Accessibility Guidelines":"Pautas de accesibilidad de contenido web",
"our issue tracker":"nuestro rastreador de problemas",
"our design team":"nuestro equipo de diseño",
"Enable":"Habilitar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.",
"Dark theme (beta)":"Tema oscuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic es un tipo de letra/fuente gratuito diseñado para mitigar algunos de los errores de lectura comunes causados por la dislexia. El tipo de letra fue creado por Abelardo González, quien lo lanzó a través de una licencia de código abierto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Proporciona múltiples opciones de accesibilidad para facilitar su uso de nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Murriztu begietan kalte egitea gai ilunarekin: argitasun orokorra eta distira jaisten ditu. Garapenean dagoen aukera da, beraz jakinarazi aurkitzen dituzun arazoak.",
"High contrast mode":"Kontraste altuko modua",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Kontraste altuko modua zuri nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.",
"Dyslexia font":"Dislexia letra-tipoa",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic letra-tipo librea da dislexiak eragindako ohiko irakurketa akats batzuk leuntzeko diseinatua.",
"Accessibility":"Erabilerraztasuna",
"Accessibility options for nextcloud":"Erabilerraztasun aukerak nextcloudentzat",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nextcloud-en erabilera errazteko hainbat aukera eskaintzen ditu.",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Kontraste altuko gaia nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.",
"Dark theme (beta)":"Gai beltza (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic dislexia eragindako ohiko irakurketa akats batzuk arintzeko diseinatuta dagoen tipografia/letra mota librea. Abelardo Gonzalezek sortu zuen tipografia hau eta kode irekiko lizentzia baten bidez kaleratu zuen.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Hainbat irisgarritasun aukera eskaintzen ditu nextclouden erabilera errazteko",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Murriztu begietan kalte egitea gai ilunarekin: argitasun orokorra eta distira jaisten ditu. Garapenean dagoen aukera da, beraz jakinarazi aurkitzen dituzun arazoak.",
"High contrast mode":"Kontraste altuko modua",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Kontraste altuko modua zuri nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.",
"Dyslexia font":"Dislexia letra-tipoa",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic letra-tipo librea da dislexiak eragindako ohiko irakurketa akats batzuk leuntzeko diseinatua.",
"Accessibility":"Erabilerraztasuna",
"Accessibility options for nextcloud":"Erabilerraztasun aukerak nextcloudentzat",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nextcloud-en erabilera errazteko hainbat aukera eskaintzen ditu.",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Kontraste altuko gaia nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.",
"Dark theme (beta)":"Gai beltza (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic dislexia eragindako ohiko irakurketa akats batzuk arintzeko diseinatuta dagoen tipografia/letra mota librea. Abelardo Gonzalezek sortu zuen tipografia hau eta kode irekiko lizentzia baten bidez kaleratu zuen.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Hainbat irisgarritasun aukera eskaintzen ditu nextclouden erabilera errazteko",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"تم تاریک برای با کاهش نور و نیز شفافیت برای راحتی بیشتر چشمان شما در استفاده از نکست کلود تعبیه دیده شده است و این امکان در حال توسعه می باشد،به همین دلیل هرگونه ایراد پیش آمده را گزارش دهید.",
"High contrast mode":"حالت کنتراست بالا",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"یک حالت کنتراست بالا برای سهولت در پیمایش. کیفیت بصری کاهش می یابد اما وضوح افزایش می یابد.",
"Dyslexia font":"فونت Dyslexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"اپن دیسلکسیک یک فونت و نمایه رایگان است که طراحی شده برای خواندن بعضی ایراد های دیسلکسیا",
"Accessibility":"در دسترس بودن",
"Accessibility options for nextcloud":"امکان در دسترس بودن برای نکس کلود",
"Provides multiple accessibilities options to ease your use of Nextcloud":"امکان دسترسی امکانات از چند مسیر برای کار کردن راحت تر شما با نکست کلود قرارداده شده است.",
"Web Content Accessibility Guidelines":"راهنمای در دسترس بودن محتوا وب",
"our issue tracker":"دنبال کننده مساله ها",
"our design team":"تیم طراحی ما",
"Enable":"فعال",
"High contrast theme":"تم با وضوح بالا",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"یک تم با وضوح بالا برای آسان نمودن راهبری شما\nکیفیت بصری کاهش خاهد یافت تا وضوح افزایش یابد.",
"Dark theme (beta)":"تم تاریک (بتا)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDuslexis یک فونت رایگان است که طراحی شده برای کم کردن زحمت خواندن خطاهای معمول رخ داده توسط duslexia. طرح حروف بوسیله آبرلاردو گنزالز Abelardo Gonzalez ایجاد شده است که به صورت متن باز منتشر گریده است.",
"Provides multiple accessibilities options to ease your use of nextcloud":"فراهم کردن چندین گزینه دسترسی را، برای سهولت استفاده ی شما در nextcloud.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"تم تاریک برای با کاهش نور و نیز شفافیت برای راحتی بیشتر چشمان شما در استفاده از نکست کلود تعبیه دیده شده است و این امکان در حال توسعه می باشد،به همین دلیل هرگونه ایراد پیش آمده را گزارش دهید.",
"High contrast mode":"حالت کنتراست بالا",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"یک حالت کنتراست بالا برای سهولت در پیمایش. کیفیت بصری کاهش می یابد اما وضوح افزایش می یابد.",
"Dyslexia font":"فونت Dyslexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"اپن دیسلکسیک یک فونت و نمایه رایگان است که طراحی شده برای خواندن بعضی ایراد های دیسلکسیا",
"Accessibility":"در دسترس بودن",
"Accessibility options for nextcloud":"امکان در دسترس بودن برای نکس کلود",
"Provides multiple accessibilities options to ease your use of Nextcloud":"امکان دسترسی امکانات از چند مسیر برای کار کردن راحت تر شما با نکست کلود قرارداده شده است.",
"Web Content Accessibility Guidelines":"راهنمای در دسترس بودن محتوا وب",
"our issue tracker":"دنبال کننده مساله ها",
"our design team":"تیم طراحی ما",
"Enable":"فعال",
"High contrast theme":"تم با وضوح بالا",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"یک تم با وضوح بالا برای آسان نمودن راهبری شما\nکیفیت بصری کاهش خاهد یافت تا وضوح افزایش یابد.",
"Dark theme (beta)":"تم تاریک (بتا)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDuslexis یک فونت رایگان است که طراحی شده برای کم کردن زحمت خواندن خطاهای معمول رخ داده توسط duslexia. طرح حروف بوسیله آبرلاردو گنزالز Abelardo Gonzalez ایجاد شده است که به صورت متن باز منتشر گریده است.",
"Provides multiple accessibilities options to ease your use of nextcloud":"فراهم کردن چندین گزینه دسترسی را، برای سهولت استفاده ی شما در nextcloud.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tumma teema helpottaa silmien rasitusta vähentämällä kokonaiskirkkautta. Teemaa kehitetään edelleen, joten ilmoitathan mahdollisesti kohtaamasi ongelmat.",
"High contrast mode":"Suuren kontrastin tila",
"Dyslexia font":"Lukihäiriökirjasin",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic on ilmainen kirjasin, joka on suunniteltu lieventämään lukihäiriön aiheuttamia lukuvirheitä.",
"Accessibility":"Saavutettavuus",
"Accessibility options for nextcloud":"Saavutettavuusvaihtoehdot Nextcloudille",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Tarjoaa monia saavutettavuusvaihtoehtoja helpottamaan Nexcloudin käyttöä.",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Suuren kontrastin teema helpottaa navigointiasi. Visuaalinen laatu on heikompi, mutta selkeys paranee.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tumma teema helpottaa silmien rasitusta vähentämällä kokonaiskirkkautta. Teemaa kehitetään edelleen, joten ilmoitathan mahdollisesti kohtaamasi ongelmat.",
"High contrast mode":"Suuren kontrastin tila",
"Dyslexia font":"Lukihäiriökirjasin",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic on ilmainen kirjasin, joka on suunniteltu lieventämään lukihäiriön aiheuttamia lukuvirheitä.",
"Accessibility":"Saavutettavuus",
"Accessibility options for nextcloud":"Saavutettavuusvaihtoehdot Nextcloudille",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Tarjoaa monia saavutettavuusvaihtoehtoja helpottamaan Nexcloudin käyttöä.",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Suuren kontrastin teema helpottaa navigointiasi. Visuaalinen laatu on heikompi, mutta selkeys paranee.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Eitt myrkt tema fyri at gera tað lættari fyri eyguni við at minka um bjartleikan á skerminum. Temaði er enn undir menning, so vinarliga sig frá um trupulleikar tú møguliga finnur.",
"Dyslexia font":"Stavsnið fyri orðblind",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er eitt frítt stavsnið sniðgivið fyri at lætta um vanlig lesið feilir orsaka orðblindni.",
"Accessibility":"Atkomuligt",
"Accessibility options for nextcloud":"Atkomulig møguleikar fyri Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bjóðar fleiri atkomulig møguleikar fyri at gera tað lættari at brúka Nextcloud",
"Web Content Accessibility Guidelines":"Leiðbeining fyri atkomiligt innihald á netinum",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Eitt myrkt tema fyri at gera tað lættari fyri eyguni við at minka um bjartleikan á skerminum. Temaði er enn undir menning, so vinarliga sig frá um trupulleikar tú møguliga finnur.",
"Dyslexia font":"Stavsnið fyri orðblind",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er eitt frítt stavsnið sniðgivið fyri at lætta um vanlig lesið feilir orsaka orðblindni.",
"Accessibility":"Atkomuligt",
"Accessibility options for nextcloud":"Atkomulig møguleikar fyri Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Bjóðar fleiri atkomulig møguleikar fyri at gera tað lættari at brúka Nextcloud",
"Web Content Accessibility Guidelines":"Leiðbeining fyri atkomiligt innihald á netinum",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un thème sombre pour apaiser vos yeux en réduisant la luminosité et la clarté générales. Il est toujours en cours de développement, merci de signaler tout problème que vous rencontrez.",
"High contrast mode":"Thème à contraste élevé",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un thème au contraste élevé pour faciliter votre navigation. La qualité visuelle sera réduite, mais la clarté sera améliorée.",
"Dyslexia font":"Police pour dyslexiques",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic est une police de caractères libre conçue pour atténuer certains problèmes de lecture causés par la dyslexie.",
"Accessibility":"Accessibilité",
"Accessibility options for nextcloud":"Options d'accessibilité pour Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fournit de nombreuses options d'accessibilité pour faciliter votre utilisation de Nextcloud",
"Web Content Accessibility Guidelines":"Règles pour l'accessibilité des contenus Web",
"our issue tracker":"notre outil de suivi des problèmes",
"our design team":"notre équipe de conception",
"Enable":"Activer",
"High contrast theme":"Thème à contraste élevé",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un thème au contraste élevé pour faciliter votre navigation. La qualité visuelle sera réduite, mais la clarté sera améliorée.",
"Dark theme (beta)":"Thème sombre (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic est une police de caractères libre conçue pour atténuer certains problèmes de lecture causés par la dyslexie. La police a été créée par Alberto Gonzalez sous licence open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Fournit de nombreuses options d'accessibilité pour faciliter votre utilisation de Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un thème sombre pour apaiser vos yeux en réduisant la luminosité et la clarté générales. Il est toujours en cours de développement, merci de signaler tout problème que vous rencontrez.",
"High contrast mode":"Thème à contraste élevé",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un thème au contraste élevé pour faciliter votre navigation. La qualité visuelle sera réduite, mais la clarté sera améliorée.",
"Dyslexia font":"Police pour dyslexiques",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic est une police de caractères libre conçue pour atténuer certains problèmes de lecture causés par la dyslexie.",
"Accessibility":"Accessibilité",
"Accessibility options for nextcloud":"Options d'accessibilité pour Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fournit de nombreuses options d'accessibilité pour faciliter votre utilisation de Nextcloud",
"Web Content Accessibility Guidelines":"Règles pour l'accessibilité des contenus Web",
"our issue tracker":"notre outil de suivi des problèmes",
"our design team":"notre équipe de conception",
"Enable":"Activer",
"High contrast theme":"Thème à contraste élevé",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un thème au contraste élevé pour faciliter votre navigation. La qualité visuelle sera réduite, mais la clarté sera améliorée.",
"Dark theme (beta)":"Thème sombre (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic est une police de caractères libre conçue pour atténuer certains problèmes de lecture causés par la dyslexie. La police a été créée par Alberto Gonzalez sous licence open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Fournit de nombreuses options d'accessibilité pour faciliter votre utilisation de Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema escuro para descansar a vista reducindo a luminosidade e o brillo. Aínda está en desenvolvemento, así que informe de calquera incidencia que poida atopar.",
"High contrast mode":"Modo de alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un modo de alto contraste para facilitar a navegación. A calidade visual será reducida, mais a claridade aumentará.",
"Dyslexia font":"Tipo de letra para disléxicos",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic é un tipo de letra libre deseñada para mitigar algúns dos erros comúns de lectura causados pola dislexia.",
"Accessibility":"Accesibilidade",
"Accessibility options for nextcloud":"Opcións de accesibilidade para o Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ofrece múltiples opcións de accesibilidade para facilitar o uso do Nextcloud",
"Web Content Accessibility Guidelines":"Pautas de accesibilidade ao contido web",
"our issue tracker":"o noso seguidor de incidencias",
"our design team":"o noso equipo de deseño",
"Enable":"Activar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema de alto contraste para facilitar a navegación. A calidade visual será reducida, mais a claridade aumentará.",
"Dark theme (beta)":"Tema escuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic é un tipo de letra libre deseñada para mitigar algúns dos erros comúns de lectura causados pola dislexia. O tipo de letra foi creado por Abelardo González, quen o publicou mediante unha licenza de código aberto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Ofrece múltiples opcións de accesibilidade para facilitar o uso do Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema escuro para descansar a vista reducindo a luminosidade e o brillo. Aínda está en desenvolvemento, así que informe de calquera incidencia que poida atopar.",
"High contrast mode":"Modo de alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un modo de alto contraste para facilitar a navegación. A calidade visual será reducida, mais a claridade aumentará.",
"Dyslexia font":"Tipo de letra para disléxicos",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic é un tipo de letra libre deseñada para mitigar algúns dos erros comúns de lectura causados pola dislexia.",
"Accessibility":"Accesibilidade",
"Accessibility options for nextcloud":"Opcións de accesibilidade para o Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ofrece múltiples opcións de accesibilidade para facilitar o uso do Nextcloud",
"Web Content Accessibility Guidelines":"Pautas de accesibilidade ao contido web",
"our issue tracker":"o noso seguidor de incidencias",
"our design team":"o noso equipo de deseño",
"Enable":"Activar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema de alto contraste para facilitar a navegación. A calidade visual será reducida, mais a claridade aumentará.",
"Dark theme (beta)":"Tema escuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic é un tipo de letra libre deseñada para mitigar algúns dos erros comúns de lectura causados pola dislexia. O tipo de letra foi creado por Abelardo González, quen o publicou mediante unha licenza de código aberto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Ofrece múltiples opcións de accesibilidade para facilitar o uso do Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"ערכת נושא כהה מפחיתה את התאורה והבהירות. ערכה זו עדיין בהליכי פיתוח, לכן מומלץ לדווח על תקלות אם יש כאלו.",
"Dyslexia font":"גופן דיסלקציה",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic הוא גופן חופשי שתוכנן לפתור חלק משגיאות הקריאה הנפוצות שנגרמות עקב דיסלקציה.",
"Accessibility":"נגישות",
"Accessibility options for nextcloud":"אפשרויות נגישות ל־Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"מספק מגוון אפשרויות נגישות כדי להקל את השימוש שלך ב־Nextcloud",
"High contrast theme":"ערכת נושא עם ניגודיות גבוהה",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"ערכת נושא עם צבעים מנוגדים להקלה על הניווט שלך. האיכות החזותית תיפגע אך השימוש יהפוך ברור יותר.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"ערכת נושא כהה מפחיתה את התאורה והבהירות. ערכה זו עדיין בהליכי פיתוח, לכן מומלץ לדווח על תקלות אם יש כאלו.",
"Dyslexia font":"גופן דיסלקציה",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic הוא גופן חופשי שתוכנן לפתור חלק משגיאות הקריאה הנפוצות שנגרמות עקב דיסלקציה.",
"Accessibility":"נגישות",
"Accessibility options for nextcloud":"אפשרויות נגישות ל־Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"מספק מגוון אפשרויות נגישות כדי להקל את השימוש שלך ב־Nextcloud",
"High contrast theme":"ערכת נושא עם ניגודיות גבוהה",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"ערכת נושא עם צבעים מנוגדים להקלה על הניווט שלך. האיכות החזותית תיפגע אך השימוש יהפוך ברור יותר.",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"अपने नेविगेशन को आसान बनाने के लिए एक उच्च विपरीत थीम। दृश्य गुणवत्ता कम हो जाएगी लेकिन स्पष्टता बढ़ जाएगी।",
"Dark theme":"डार्क थीम",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"समग्र चमक और चमक को कम करके अपनी आंखों को आराम देने के लिए एक अंधेरे विषय। यह अभी भी विकास के अधीन है, इसलिए कृपया कोई भी समस्या की रिपोर्ट करें।",
"Dyslexia font":"डिस्लेक्सिया फ़ॉन्ट",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic एक फ्री टाइपफेस / फॉन्ट है जिसे डिस्लेक्सिया के कारण पढ़ने वाली कुछ सामान्य त्रुटियों को कम करने के लिए डिज़ाइन किया गया है।",
"Accessibility":"सरल उपयोग",
"Accessibility options for nextcloud":"Nextcloud के लिए पहुंच विकल्प",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nextcloud के अपने उपयोग को आसान बनाने के लिए कई पहुँच विकल्प प्रदान करता है",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"अपने नेविगेशन को आसान बनाने के लिए एक उच्च विपरीत थीम। दृश्य गुणवत्ता कम हो जाएगी लेकिन स्पष्टता बढ़ जाएगी।",
"Dark theme":"डार्क थीम",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"समग्र चमक और चमक को कम करके अपनी आंखों को आराम देने के लिए एक अंधेरे विषय। यह अभी भी विकास के अधीन है, इसलिए कृपया कोई भी समस्या की रिपोर्ट करें।",
"Dyslexia font":"डिस्लेक्सिया फ़ॉन्ट",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic एक फ्री टाइपफेस / फॉन्ट है जिसे डिस्लेक्सिया के कारण पढ़ने वाली कुछ सामान्य त्रुटियों को कम करने के लिए डिज़ाइन किया गया है।",
"Accessibility":"सरल उपयोग",
"Accessibility options for nextcloud":"Nextcloud के लिए पहुंच विकल्प",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nextcloud के अपने उपयोग को आसान बनाने के लिए कई पहुँच विकल्प प्रदान करता है",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tamna tema ublažava naprezanje očiju smanjujući ukupnu luminoznost i svjetlinu. Tema je i dalje u izradi pa nam prijavite bilo kakve probleme s korištenjem.",
"High contrast mode":"Način jakog kontrasta",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Način jakog kontrasta olakšava navigaciju. Smanjuje vizualnu kvalitetu, ali povećava jasnoću prikaza.",
"Dyslexia font":"Font za osobe s disleksijom",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic je besplatan font/izgled slova posebno osmišljen za ublažavanje nekih uobičajenih pogrešaka pri čitanju uzrokovanih disleksijom.",
"Accessibility":"Pristupačnost",
"Accessibility options for nextcloud":"Mogućnosti pristupačnosti za Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Pruža višestruke mogućnosti pristupačnosti za jednostavniju upotrebu Nextclouda",
"our issue tracker":"naš alat za praćenje problema",
"our design team":"naš dizajnerski tim",
"Enable":"Omogući",
"High contrast theme":"Tema jakog kontrasta",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema jakog kontrasta olakšava navigaciju. Smanjuje vizualnu kvalitetu, ali povećava jasnoću prikaza.",
"Dark theme (beta)":"Tamna tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic je besplatan font/izgled slova posebno osmišljen za ublažavanje nekih uobičajenih pogrešaka pri čitanju uzrokovanih disleksijom. Izgled slova izradio je Abelardo Gonzalez i objavio pod licencom otvorenog koda.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Pruža višestruke mogućnosti pristupačnosti za jednostavniju upotrebu Nextclouda",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tamna tema ublažava naprezanje očiju smanjujući ukupnu luminoznost i svjetlinu. Tema je i dalje u izradi pa nam prijavite bilo kakve probleme s korištenjem.",
"High contrast mode":"Način jakog kontrasta",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Način jakog kontrasta olakšava navigaciju. Smanjuje vizualnu kvalitetu, ali povećava jasnoću prikaza.",
"Dyslexia font":"Font za osobe s disleksijom",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic je besplatan font/izgled slova posebno osmišljen za ublažavanje nekih uobičajenih pogrešaka pri čitanju uzrokovanih disleksijom.",
"Accessibility":"Pristupačnost",
"Accessibility options for nextcloud":"Mogućnosti pristupačnosti za Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Pruža višestruke mogućnosti pristupačnosti za jednostavniju upotrebu Nextclouda",
"our issue tracker":"naš alat za praćenje problema",
"our design team":"naš dizajnerski tim",
"Enable":"Omogući",
"High contrast theme":"Tema jakog kontrasta",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema jakog kontrasta olakšava navigaciju. Smanjuje vizualnu kvalitetu, ali povećava jasnoću prikaza.",
"Dark theme (beta)":"Tamna tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic je besplatan font/izgled slova posebno osmišljen za ublažavanje nekih uobičajenih pogrešaka pri čitanju uzrokovanih disleksijom. Izgled slova izradio je Abelardo Gonzalez i objavio pod licencom otvorenog koda.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Pruža višestruke mogućnosti pristupačnosti za jednostavniju upotrebu Nextclouda",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"A sötét téma csökkenti a szemek terhelését az átlagos fényesség és fényerő csökkentésével. Még mindig fejlesztés alatt áll, így jelentse ha problémát talál.",
"High contrast mode":"Magas kontrasztú mód",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"A magas kontrasztú téma megkönnyíti a navigációt. A képi minőség csökken, de az olvashatóság javul.",
"Dyslexia font":"Diszlexia betűkészlet",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"Az OpenDyslexic egy szabad betűkészlet, amely egyes, diszlexia által okozott, gyakori olvasási hibák csökkentésére lett tervezve.",
"Accessibility":"Akadálymentesítés",
"Accessibility options for nextcloud":"Akadálymentesítési lehetőségek a Nextcloudhoz",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Több akadálymentesítési lehetőséget biztosít, hogy megkönnyítse a Nextcloud használatát",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"A magas kontrasztú téma megkönnyíti a navigációt. A képi minőség csökken, de az olvashatóság javul.",
"Dark theme (beta)":"Sötét téma (béta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"Az OpenDyslexic egy szabad betűkészlet, amely egyes, diszlexia által okozott, gyakori olvasási hibák csökkentésére lett tervezve. A betűkészletet Abelardo Gonzalez tervezte, aki nyílt forráskódú licenc alatt adta közre.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Több akadálymentesítési lehetőséget biztosít, hogy megkönnyítse a Nextcloud használatát",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"A sötét téma csökkenti a szemek terhelését az átlagos fényesség és fényerő csökkentésével. Még mindig fejlesztés alatt áll, így jelentse ha problémát talál.",
"High contrast mode":"Magas kontrasztú mód",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"A magas kontrasztú téma megkönnyíti a navigációt. A képi minőség csökken, de az olvashatóság javul.",
"Dyslexia font":"Diszlexia betűkészlet",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"Az OpenDyslexic egy szabad betűkészlet, amely egyes, diszlexia által okozott, gyakori olvasási hibák csökkentésére lett tervezve.",
"Accessibility":"Akadálymentesítés",
"Accessibility options for nextcloud":"Akadálymentesítési lehetőségek a Nextcloudhoz",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Több akadálymentesítési lehetőséget biztosít, hogy megkönnyítse a Nextcloud használatát",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"A magas kontrasztú téma megkönnyíti a navigációt. A képi minőség csökken, de az olvashatóság javul.",
"Dark theme (beta)":"Sötét téma (béta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"Az OpenDyslexic egy szabad betűkészlet, amely egyes, diszlexia által okozott, gyakori olvasási hibák csökkentésére lett tervezve. A betűkészletet Abelardo Gonzalez tervezte, aki nyílt forráskódú licenc alatt adta közre.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Több akadálymentesítési lehetőséget biztosít, hogy megkönnyítse a Nextcloud használatát",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tema gelap dapat membuat mata anda tidak cepat lelah dengan mengurangi tingkat kecerahan dan banyaknya cahaya. Fitur ini masih dalam tahap pengembangan, tolong laporkan masalah yang anda temui.",
"High contrast mode":"Mode kontras tinggi",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Mode kontras tinggi untuk memudahkan navigasi Anda. Kualitas visual akan berkurang tetapi kejelasan akan meningkat.",
"Dyslexia font":"Font disleksia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic adalah typeface/font gratis yang didesain untuk mengurangi kesalahan membaca oleh penderita disleksia",
"Accessibility":"aksesbilitas",
"Accessibility options for nextcloud":"Opsi aksesibilitas untuk nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Menyediakan beberapa opsi aksesibilitas untuk memudahkan Anda menggunakan Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema kontras tinggi untuk memudahkan navigasi Anda. Kualitas visual akan berkurang tetapi kejelasan akan meningkat.",
"Dark theme (beta)":"Tema gelap (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic adalah jenis huruf / font gratis yang dirancang untuk mengurangi beberapa kesalahan pembacaan umum yang disebabkan oleh disleksia. Jenis huruf ini dibuat oleh Abelardo Gonzalez, yang merilisnya melalui lisensi open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"72/5000\n\n\n\nMenyediakan beberapa opsi aksesibilitas untuk memudahkan Anda menggunakan nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tema gelap dapat membuat mata anda tidak cepat lelah dengan mengurangi tingkat kecerahan dan banyaknya cahaya. Fitur ini masih dalam tahap pengembangan, tolong laporkan masalah yang anda temui.",
"High contrast mode":"Mode kontras tinggi",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Mode kontras tinggi untuk memudahkan navigasi Anda. Kualitas visual akan berkurang tetapi kejelasan akan meningkat.",
"Dyslexia font":"Font disleksia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic adalah typeface/font gratis yang didesain untuk mengurangi kesalahan membaca oleh penderita disleksia",
"Accessibility":"aksesbilitas",
"Accessibility options for nextcloud":"Opsi aksesibilitas untuk nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Menyediakan beberapa opsi aksesibilitas untuk memudahkan Anda menggunakan Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema kontras tinggi untuk memudahkan navigasi Anda. Kualitas visual akan berkurang tetapi kejelasan akan meningkat.",
"Dark theme (beta)":"Tema gelap (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic adalah jenis huruf / font gratis yang dirancang untuk mengurangi beberapa kesalahan pembacaan umum yang disebabkan oleh disleksia. Jenis huruf ini dibuat oleh Abelardo Gonzalez, yang merilisnya melalui lisensi open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"72/5000\n\n\n\nMenyediakan beberapa opsi aksesibilitas untuk memudahkan Anda menggunakan nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Dökkt þema til að minnka álag á augun meðal annars með því að minnka heildarljósmagn og birtustig. Þetta er enn í þróun þannig að gott væri ef þú tilkynntir alla galla sem þú rekst á.",
"High contrast mode":"Mikil birtuskil",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Þema með mikil birtuskil til að auðvelda vafur. Sjónræn gæði minnka en skýrleiki eykst",
"Dyslexia font":"Dyslexia letur",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic eru frjálsar leturgerðir sem eru hannaðar til að ráða bug á eða minnka vægi ýmissa villna sem stafa af lesblindu (dyslexia).",
"Accessibility":"Aukið aðgengi",
"Accessibility options for nextcloud":"Valkostir fyrir auðveldað aðgengi í Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Býður upp á marga valkosti fyrir auðveldað aðgengi í Nextcloud",
"Web Content Accessibility Guidelines":"Leiðbeiningar fyrir aukið aðgengi vefefnis",
"our issue tracker":"villuskráningin okkar",
"our design team":"hönnunarteymið okkar",
"Enable":"Virkja",
"High contrast theme":"Þema með mikil birtuskil",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Þema með mikil birtuskil til að auðvelda vafur. Sjónræn gæði minnka en skýrleiki eykst",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic eru frjálsar leturgerðir sem eru hannaðar til að ráða bug á eða minnka vægi ýmissa villna sem stafa af lesblindu (dyslexia). Letrið var hannað afAbelardo Gonzalez, sem gaf það út undir frjálsu notkunarleyfi.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Býður upp á marga valkosti fyrir auðveldað aðgengi í Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Dökkt þema til að minnka álag á augun meðal annars með því að minnka heildarljósmagn og birtustig. Þetta er enn í þróun þannig að gott væri ef þú tilkynntir alla galla sem þú rekst á.",
"High contrast mode":"Mikil birtuskil",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Þema með mikil birtuskil til að auðvelda vafur. Sjónræn gæði minnka en skýrleiki eykst",
"Dyslexia font":"Dyslexia letur",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic eru frjálsar leturgerðir sem eru hannaðar til að ráða bug á eða minnka vægi ýmissa villna sem stafa af lesblindu (dyslexia).",
"Accessibility":"Aukið aðgengi",
"Accessibility options for nextcloud":"Valkostir fyrir auðveldað aðgengi í Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Býður upp á marga valkosti fyrir auðveldað aðgengi í Nextcloud",
"Web Content Accessibility Guidelines":"Leiðbeiningar fyrir aukið aðgengi vefefnis",
"our issue tracker":"villuskráningin okkar",
"our design team":"hönnunarteymið okkar",
"Enable":"Virkja",
"High contrast theme":"Þema með mikil birtuskil",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Þema með mikil birtuskil til að auðvelda vafur. Sjónræn gæði minnka en skýrleiki eykst",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic eru frjálsar leturgerðir sem eru hannaðar til að ráða bug á eða minnka vægi ýmissa villna sem stafa af lesblindu (dyslexia). Letrið var hannað afAbelardo Gonzalez, sem gaf það út undir frjálsu notkunarleyfi.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Býður upp á marga valkosti fyrir auðveldað aðgengi í Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema scuro per facilitare i tuoi occhi riducendo la luminosità complessiva. È ancora in fase di sviluppo, per cui ti chiediamo di segnalare qualsiasi problema tu possa trovare.",
"High contrast mode":"Modalità ad alto contrasto",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Una modalità ad alto contrasto per semplificare la tua navigazione. La qualità visiva sarà ridotta per incrementare la chiarezza.",
"Dyslexia font":"Carattere per dislessici",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic è un carattere libero progettato per mitigare alcuni dei comuni errori di lettura causati dalla dislessia.",
"Accessibility":"Accessibilità",
"Accessibility options for nextcloud":"Opzioni di accessibilità per Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fornisce diverse opzioni di accessibilità per semplificare il tuo utilizzo di Nextcloud",
"Web Content Accessibility Guidelines":"Linee guida di accessibilità ai contenuti web",
"our issue tracker":"il nostro sistema di tracciamento dei problemi",
"our design team":"la nostra squadra di progetto",
"Enable":"Abilita",
"High contrast theme":"Tema ad alto contrasto",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema ad alto contrasto per semplificare la tua navigazione. La qualità visiva sarà ridotta per incrementare la chiarezza.",
"Dark theme (beta)":"Tema scuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic è un carattere libero progettato per mitigare alcuni dei comuni errori di lettura causati dalla dislessia. Il carattere è stato creato da Abelardo Gonzalez, che lo ha rilasciato con licenza open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Fornisce diverse opzioni di accessibilità per semplificare il tuo utilizzo di Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Un tema scuro per facilitare i tuoi occhi riducendo la luminosità complessiva. È ancora in fase di sviluppo, per cui ti chiediamo di segnalare qualsiasi problema tu possa trovare.",
"High contrast mode":"Modalità ad alto contrasto",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Una modalità ad alto contrasto per semplificare la tua navigazione. La qualità visiva sarà ridotta per incrementare la chiarezza.",
"Dyslexia font":"Carattere per dislessici",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic è un carattere libero progettato per mitigare alcuni dei comuni errori di lettura causati dalla dislessia.",
"Accessibility":"Accessibilità",
"Accessibility options for nextcloud":"Opzioni di accessibilità per Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fornisce diverse opzioni di accessibilità per semplificare il tuo utilizzo di Nextcloud",
"Web Content Accessibility Guidelines":"Linee guida di accessibilità ai contenuti web",
"our issue tracker":"il nostro sistema di tracciamento dei problemi",
"our design team":"la nostra squadra di progetto",
"Enable":"Abilita",
"High contrast theme":"Tema ad alto contrasto",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un tema ad alto contrasto per semplificare la tua navigazione. La qualità visiva sarà ridotta per incrementare la chiarezza.",
"Dark theme (beta)":"Tema scuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic è un carattere libero progettato per mitigare alcuni dei comuni errori di lettura causati dalla dislessia. Il carattere è stato creato da Abelardo Gonzalez, che lo ha rilasciato con licenza open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Fornisce diverse opzioni di accessibilità per semplificare il tuo utilizzo di Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"ダークテーマは目の負担になりにくいです。このテーマは開発中のためバグを見つけたら報告してください。",
"High contrast mode":"ハイ・コントラストモード",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"操作をわかりやすくするためのハイ・コントラストモード。\n見た目の美しさは低下しますが、明確さが向上します。",
"Dyslexia font":"Dyslexia フォント",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexicは、ディスレクシアによって引き起こされる一般的な読み間違いの一部を軽減するためにデザインされた、無料で利用できる書体/フォントです。",
"Accessibility":"アクセシビリティ",
"Accessibility options for nextcloud":"nextcloudのアクセシビリティオプション",
"Provides multiple accessibilities options to ease your use of Nextcloud":"あなたのNextcloudの利用を簡単にするための複数のユーザー補助のオプションを提供します。",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"ハイコントラストテーマは表示の質は下がりますが、見やすさは上がります。",
"Dark theme (beta)":"ダークテーマ (ベータ版)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexicは、失読症に起因する一般的な読み間違いを軽減するためにデザインされた無料の書体/フォントです。この書体はAbelardo Gonzalez氏が作成したもので、オープンソースライセンスで公開されています。",
"Provides multiple accessibilities options to ease your use of nextcloud":"Nextcloudの利用を簡単にするための複数のユーザー補助のオプションを提供する",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"ダークテーマは目の負担になりにくいです。このテーマは開発中のためバグを見つけたら報告してください。",
"High contrast mode":"ハイ・コントラストモード",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"操作をわかりやすくするためのハイ・コントラストモード。\n見た目の美しさは低下しますが、明確さが向上します。",
"Dyslexia font":"Dyslexia フォント",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexicは、ディスレクシアによって引き起こされる一般的な読み間違いの一部を軽減するためにデザインされた、無料で利用できる書体/フォントです。",
"Accessibility":"アクセシビリティ",
"Accessibility options for nextcloud":"nextcloudのアクセシビリティオプション",
"Provides multiple accessibilities options to ease your use of Nextcloud":"あなたのNextcloudの利用を簡単にするための複数のユーザー補助のオプションを提供します。",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"ハイコントラストテーマは表示の質は下がりますが、見やすさは上がります。",
"Dark theme (beta)":"ダークテーマ (ベータ版)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexicは、失読症に起因する一般的な読み間違いを軽減するためにデザインされた無料の書体/フォントです。この書体はAbelardo Gonzalez氏が作成したもので、オープンソースライセンスで公開されています。",
"Provides multiple accessibilities options to ease your use of nextcloud":"Nextcloudの利用を簡単にするための複数のユーザー補助のオプションを提供する",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"어두운 테마는 전체적인 밝기를 낮춰 눈을 편안하게 해 줍니다. 아직 개발 중인 기능이니 문제가 있다면 보고해 주세요.",
"High contrast mode":"고대비 모드",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"쉬운 탐색을 위한 고대비 테마입니다. 색감이 나빠지지만 더 선명해집니다.",
"Dyslexia font":"난독증용 글꼴",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic은 난독증 때문에 읽기에 문제가 있는 사람들을 위해 디자인된 자유 글꼴입니다.",
"Accessibility":"접근성",
"Accessibility options for nextcloud":"Nextcloud 접근성 옵션",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nextcloud 사용을 편리하게 하는 여러 접근성 옵션",
"Web Content Accessibility Guidelines":"웹 콘텐츠 접근성 가이드라인",
"our issue tracker":"우리의 이슈 트래커",
"our design team":"우리의 디자인 팀",
"Enable":"활성화",
"High contrast theme":"고대비 테마",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"쉬운 탐색을 위한 고대비 테마입니다. 색감이 나빠지지만 더 선명해집니다.",
"Dark theme (beta)":"어두운 테마(베타)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic은 난독증 때문에 읽기에 문제가 있는 사람들을 위해 디자인된 자유 글꼴입니다.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Nextcloud 사용을 편리하게 하는 여러 접근성 옵션",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"어두운 테마는 전체적인 밝기를 낮춰 눈을 편안하게 해 줍니다. 아직 개발 중인 기능이니 문제가 있다면 보고해 주세요.",
"High contrast mode":"고대비 모드",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"쉬운 탐색을 위한 고대비 테마입니다. 색감이 나빠지지만 더 선명해집니다.",
"Dyslexia font":"난독증용 글꼴",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic은 난독증 때문에 읽기에 문제가 있는 사람들을 위해 디자인된 자유 글꼴입니다.",
"Accessibility":"접근성",
"Accessibility options for nextcloud":"Nextcloud 접근성 옵션",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nextcloud 사용을 편리하게 하는 여러 접근성 옵션",
"Web Content Accessibility Guidelines":"웹 콘텐츠 접근성 가이드라인",
"our issue tracker":"우리의 이슈 트래커",
"our design team":"우리의 디자인 팀",
"Enable":"활성화",
"High contrast theme":"고대비 테마",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"쉬운 탐색을 위한 고대비 테마입니다. 색감이 나빠지지만 더 선명해집니다.",
"Dark theme (beta)":"어두운 테마(베타)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic은 난독증 때문에 읽기에 문제가 있는 사람들을 위해 디자인된 자유 글꼴입니다.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Nextcloud 사용을 편리하게 하는 여러 접근성 옵션",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tamsus apipavidalinimas, skirtas nuraminti jūsų akis, sumažinant bendrą šviesingumą ir skaistį. Jis yra vis dar kuriamas, todėl prašome pranešti apie bet kokias randamas klaidas.",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Didelio kontrasto veiksena, skirta palengvinti jūsų naršymą. Vaizdinė kokybė bus sumažinta, tačiau aiškumas bus padidintas.",
"Dyslexia font":"Disleksijos šriftas",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic yra laisvas šriftas, sukurtas sumažinti kai kurias dažniausias disleksijos sukeltas skaitymo klaidas.",
"Accessibility":"Prieinamumas",
"Accessibility options for nextcloud":"Nextcloud prieinamumo parinktys",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Pateikia kelias prieinamumo parinktis, skirtas palengvinti jūsų naudojimąsi Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Didelio kontrasto apipavidalinimas, skirtas palengvinti jūsų naršymą. Vaizdinė kokybė bus sumažinta, tačiau aiškumas bus padidintas.",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic yra laisvas šriftas, sukurtas sumažinti kai kurias dažniausias disleksijos sukeltas skaitymo klaidas. Šriftą sukūrė Abelardo Gonzalez, kuris šriftą išleido per atvirojo kodo licenciją.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Pateikia kelias prieinamumo parinktis, skirtas palengvinti jūsų naudojimąsi Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tamsus apipavidalinimas, skirtas nuraminti jūsų akis, sumažinant bendrą šviesingumą ir skaistį. Jis yra vis dar kuriamas, todėl prašome pranešti apie bet kokias randamas klaidas.",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Didelio kontrasto veiksena, skirta palengvinti jūsų naršymą. Vaizdinė kokybė bus sumažinta, tačiau aiškumas bus padidintas.",
"Dyslexia font":"Disleksijos šriftas",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic yra laisvas šriftas, sukurtas sumažinti kai kurias dažniausias disleksijos sukeltas skaitymo klaidas.",
"Accessibility":"Prieinamumas",
"Accessibility options for nextcloud":"Nextcloud prieinamumo parinktys",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Pateikia kelias prieinamumo parinktis, skirtas palengvinti jūsų naudojimąsi Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Didelio kontrasto apipavidalinimas, skirtas palengvinti jūsų naršymą. Vaizdinė kokybė bus sumažinta, tačiau aiškumas bus padidintas.",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic yra laisvas šriftas, sukurtas sumažinti kai kurias dažniausias disleksijos sukeltas skaitymo klaidas. Šriftą sukūrė Abelardo Gonzalez, kuris šriftą išleido per atvirojo kodo licenciją.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Pateikia kelias prieinamumo parinktis, skirtas palengvinti jūsų naudojimąsi Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tumšais motīvs atslogo Tavas acis samazinot kopējo atspīdumu un spilgtumu. Tas joprojām atrodas izstrādes režīmā, tādēļ dod ziņu par jebkurām atrastajām problēmām.",
"High contrast mode":"Augsta kontrasta režīms",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Augsta kontrasta režīms atvieglo navigāciju. Vizuālā kvalitāte tiks samazināta, bet skaidrība paaugstināsies.",
"Dyslexia font":"Dislektisks fonts",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic ir bezmaksas fonts, kas veidots, lai mazinātu tipiskākos lasīšanas traucējumus, ko izraisa disleksija.",
"Accessibility":"Pieejamība",
"Accessibility options for nextcloud":"nextcloud Pieejamības uzstādījumi",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Piedāvā vairākus pieejamības uzstādījumus, kas atvieglo Nextcloud lietošanu.",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Augsta kontrasta režīms atvieglo navigāciju. Vizuālā kvalitāte tiks samazināta, bet skaidrība paaugstināsies.",
"Dark theme (beta)":"Tumšs motīvs (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic ir bezmaksas fonts, kas veidots, lai mazinātu tipiskākos lasīšanas traucējumus, ko izraisa disleksija. Fontu radīja Abelardo Gonzalez, kurš to publicēja ar atvērtā koda licences starpniecību.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Piedāvā vairākus pieejamības uzstādījumus, kas atvieglo nextcloud lietošanu.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tumšais motīvs atslogo Tavas acis samazinot kopējo atspīdumu un spilgtumu. Tas joprojām atrodas izstrādes režīmā, tādēļ dod ziņu par jebkurām atrastajām problēmām.",
"High contrast mode":"Augsta kontrasta režīms",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Augsta kontrasta režīms atvieglo navigāciju. Vizuālā kvalitāte tiks samazināta, bet skaidrība paaugstināsies.",
"Dyslexia font":"Dislektisks fonts",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic ir bezmaksas fonts, kas veidots, lai mazinātu tipiskākos lasīšanas traucējumus, ko izraisa disleksija.",
"Accessibility":"Pieejamība",
"Accessibility options for nextcloud":"nextcloud Pieejamības uzstādījumi",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Piedāvā vairākus pieejamības uzstādījumus, kas atvieglo Nextcloud lietošanu.",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Augsta kontrasta režīms atvieglo navigāciju. Vizuālā kvalitāte tiks samazināta, bet skaidrība paaugstināsies.",
"Dark theme (beta)":"Tumšs motīvs (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic ir bezmaksas fonts, kas veidots, lai mazinātu tipiskākos lasīšanas traucējumus, ko izraisa disleksija. Fontu radīja Abelardo Gonzalez, kurš to publicēja ar atvērtā koda licences starpniecību.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Piedāvā vairākus pieejamības uzstādījumus, kas atvieglo nextcloud lietošanu.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Темна тема за да ви го олесни гледањето преку намалување на вкупната осветленост. Сеуште е во развој, затоа ве молиме пријавете ги сите проблеми кои ќе ги најдете.",
"High contrast mode":"Режим на висок контраст",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Режим со висок контраст за олеснување на навигацијата. Визуелниот квалитет ќе се намали, но јасноста ќе се зголеми.",
"Dyslexia font":"Фонт за дислексија",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic е бесплатен фонт дизајниран за ублажување на некои од честите грешки во читањето предизвикани од дислексија.",
"Accessibility":"Достапност",
"Accessibility options for nextcloud":"Опции за пристапност на Nextcloud. ",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Овозможува повеќе опции за пристапност за да се олесни употребата на Nextcloud",
"Web Content Accessibility Guidelines":"Упатства за пристапност на веб содржини",
"our issue tracker":"нашиот следач на проблеми",
"our design team":"нашиот тим за дизајн",
"Enable":"овозможи",
"High contrast theme":"Тема со висок контраст",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Тема со висок контраст за да ја олесни навигацијата. Визуелниот квалитет ќе се намали, но јасноста ќе се зголеми.",
"Dark theme (beta)":"Темна тема (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic е бесплатна форма / фонт дизајниран да ги ублажи некои од вообичаените грешки при читање предизвикани од дислексија. Типчето е креирано од Абелардо Гонзалез, кој го објави преку лиценца со отворен извор.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Овозможува повеќекратни опции за пристапност за да ја олесни употребата на nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Темна тема за да ви го олесни гледањето преку намалување на вкупната осветленост. Сеуште е во развој, затоа ве молиме пријавете ги сите проблеми кои ќе ги најдете.",
"High contrast mode":"Режим на висок контраст",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Режим со висок контраст за олеснување на навигацијата. Визуелниот квалитет ќе се намали, но јасноста ќе се зголеми.",
"Dyslexia font":"Фонт за дислексија",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic е бесплатен фонт дизајниран за ублажување на некои од честите грешки во читањето предизвикани од дислексија.",
"Accessibility":"Достапност",
"Accessibility options for nextcloud":"Опции за пристапност на Nextcloud. ",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Овозможува повеќе опции за пристапност за да се олесни употребата на Nextcloud",
"Web Content Accessibility Guidelines":"Упатства за пристапност на веб содржини",
"our issue tracker":"нашиот следач на проблеми",
"our design team":"нашиот тим за дизајн",
"Enable":"овозможи",
"High contrast theme":"Тема со висок контраст",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Тема со висок контраст за да ја олесни навигацијата. Визуелниот квалитет ќе се намали, но јасноста ќе се зголеми.",
"Dark theme (beta)":"Темна тема (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic е бесплатна форма / фонт дизајниран да ги ублажи некои од вообичаените грешки при читање предизвикани од дислексија. Типчето е креирано од Абелардо Гонзалез, кој го објави преку лиценца со отворен извор.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Овозможува повеќекратни опции за пристапност за да ја олесни употребата на nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Et mørkt tema for å lette på øynene ved å redusere lysstyrken. Den er fortsatt under utvikling, vennligst rapporter feilene som du finner.",
"High contrast mode":"Høykontrast-modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"En høykontrast modus for å få en lettere navigasjon. Den visuelle kvaliteten vil bli reusert men klarheten vil bli økt.",
"Dyslexia font":"Dysleksi skrifttype",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er en gratis skrifttype egnet for å minske de mest vanligste lesefeilene som dysleksi forårsaker.",
"Accessibility":"Tilgjengelighet",
"Accessibility options for nextcloud":"Tilgjengelighetsvalg for nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Gir muligheten for flere tilgjengelighetsvalg for å gjøre det lettere å bruke Nextcloud",
"Web Content Accessibility Guidelines":"Retningslinjer for tilgjengelighet på nettsider",
"our issue tracker":"vår problemsporer",
"our design team":"vårt designteam",
"Enable":"Aktiver",
"High contrast theme":"Høykontrast-tema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"En høykontrast tema for å få en lettere navigasjon. Den visuelle kvaliteten vil bli reusert men klarheten vil bli økt.",
"Dark theme (beta)":"Mørkt tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic er en gratis skrifttype egnet for å minske de mest vanligste lesefeilene som dysleksi forårsaker. Fonten var laget av Abelardo Gonzalez, som publiserte den gjennom en \"Åpen kildekode\" lisens.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Gir muligheten for flere tilgjengelighetsvalg for å gjøre det lettere å bruke Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Et mørkt tema for å lette på øynene ved å redusere lysstyrken. Den er fortsatt under utvikling, vennligst rapporter feilene som du finner.",
"High contrast mode":"Høykontrast-modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"En høykontrast modus for å få en lettere navigasjon. Den visuelle kvaliteten vil bli reusert men klarheten vil bli økt.",
"Dyslexia font":"Dysleksi skrifttype",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er en gratis skrifttype egnet for å minske de mest vanligste lesefeilene som dysleksi forårsaker.",
"Accessibility":"Tilgjengelighet",
"Accessibility options for nextcloud":"Tilgjengelighetsvalg for nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Gir muligheten for flere tilgjengelighetsvalg for å gjøre det lettere å bruke Nextcloud",
"Web Content Accessibility Guidelines":"Retningslinjer for tilgjengelighet på nettsider",
"our issue tracker":"vår problemsporer",
"our design team":"vårt designteam",
"Enable":"Aktiver",
"High contrast theme":"Høykontrast-tema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"En høykontrast tema for å få en lettere navigasjon. Den visuelle kvaliteten vil bli reusert men klarheten vil bli økt.",
"Dark theme (beta)":"Mørkt tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic er en gratis skrifttype egnet for å minske de mest vanligste lesefeilene som dysleksi forårsaker. Fonten var laget av Abelardo Gonzalez, som publiserte den gjennom en \"Åpen kildekode\" lisens.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Gir muligheten for flere tilgjengelighetsvalg for å gjøre det lettere å bruke Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Een donker thema dat minder licht op je ogen is door de lichtsterkte en helderheid te verminderen. Dit thema is nog in ontwikkeling, dus we horen graag van je als je fouten tegenkomt.",
"High contrast mode":"Hoog contrast modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Een thema met hoog contrast dat de navigatie vergemakkelijkt. De visuele kwaliteit vermindert, maar de duidelijkheid neemt toe.",
"Dyslexia font":"Dyslexie-lettertype",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic is een open source lettertype dat is ontwikkeld om de meest voorkomende leesfouten die worden veroorzaakt door dyslexie te voorkomen.",
"Accessibility":"Toegankelijkheid",
"Accessibility options for nextcloud":"Toegankelijkheidsopties voor Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Biedt verschillende opties om de toegankelijkheid van Nextcloud te verbeteren",
"Web Content Accessibility Guidelines":"Richtlijnen voor Toegankelijkheid van Webcontent (WCAG)",
"our issue tracker":"onze issue tracker",
"our design team":"ons ontwerpteam",
"Enable":"Inschakelen",
"High contrast theme":"Hoog contrast-thema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Een thema met hoog contrast dat de navigatie vergemakkelijkt. De visuele kwaliteit vermindert, maar de duidelijkheid neemt toe.",
"Dark theme (beta)":"Donker thema (bèta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic is een open source lettertype dat is ontwikkeld om de meest voorkomende leesfouten die worden veroorzaakt door dyslexie te voorkomen. Dit lettertype is gemaakt door Abelardo Gonzalez.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Biedt verschillende opties om de toegankelijkheid van Nextcloud te verbeteren",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Een donker thema dat minder licht op je ogen is door de lichtsterkte en helderheid te verminderen. Dit thema is nog in ontwikkeling, dus we horen graag van je als je fouten tegenkomt.",
"High contrast mode":"Hoog contrast modus",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Een thema met hoog contrast dat de navigatie vergemakkelijkt. De visuele kwaliteit vermindert, maar de duidelijkheid neemt toe.",
"Dyslexia font":"Dyslexie-lettertype",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic is een open source lettertype dat is ontwikkeld om de meest voorkomende leesfouten die worden veroorzaakt door dyslexie te voorkomen.",
"Accessibility":"Toegankelijkheid",
"Accessibility options for nextcloud":"Toegankelijkheidsopties voor Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Biedt verschillende opties om de toegankelijkheid van Nextcloud te verbeteren",
"Web Content Accessibility Guidelines":"Richtlijnen voor Toegankelijkheid van Webcontent (WCAG)",
"our issue tracker":"onze issue tracker",
"our design team":"ons ontwerpteam",
"Enable":"Inschakelen",
"High contrast theme":"Hoog contrast-thema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Een thema met hoog contrast dat de navigatie vergemakkelijkt. De visuele kwaliteit vermindert, maar de duidelijkheid neemt toe.",
"Dark theme (beta)":"Donker thema (bèta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic is een open source lettertype dat is ontwikkeld om de meest voorkomende leesfouten die worden veroorzaakt door dyslexie te voorkomen. Dit lettertype is gemaakt door Abelardo Gonzalez.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Biedt verschillende opties om de toegankelijkheid van Nextcloud te verbeteren",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ei mørk drakt som er mildare mot augo ved å redusera utstråling og lysstyrke. Drakta vert framleis utvikla, så sei gjerne ifrå dersom du får vanskar.",
"Dyslexia font":"Dysleksi-skrifttype",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er ein gratis skrifttype som er laga for å redusera nokre vanlege lesefeil som kjem av dysleksi.",
"Accessibility":"Tilgjenge",
"Accessibility options for nextcloud":"Brukarval for tilgjenge i Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ulike innstillingar for å gjera Nextcloud lettare å bruka for funksjonshemma",
"Web Content Accessibility Guidelines":"Retningsliner for tilgjenge i vev-innhald",
"our issue tracker":"feilsporings-systemet vårt",
"our design team":"utformingsgruppa vår",
"Enable":"Slå på",
"High contrast theme":"Høgkontrast-drakt",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ei drakt med høg kontrast som gjer det lettare å navigera. Den visuelle kvaliteten er redusert, men innhaldet er klårare.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ei mørk drakt som er mildare mot augo ved å redusera utstråling og lysstyrke. Drakta vert framleis utvikla, så sei gjerne ifrå dersom du får vanskar.",
"Dyslexia font":"Dysleksi-skrifttype",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic er ein gratis skrifttype som er laga for å redusera nokre vanlege lesefeil som kjem av dysleksi.",
"Accessibility":"Tilgjenge",
"Accessibility options for nextcloud":"Brukarval for tilgjenge i Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ulike innstillingar for å gjera Nextcloud lettare å bruka for funksjonshemma",
"Web Content Accessibility Guidelines":"Retningsliner for tilgjenge i vev-innhald",
"our issue tracker":"feilsporings-systemet vårt",
"our design team":"utformingsgruppa vår",
"Enable":"Slå på",
"High contrast theme":"Høgkontrast-drakt",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ei drakt med høg kontrast som gjer det lettare å navigera. Den visuelle kvaliteten er redusert, men innhaldet er klårare.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ciemny motyw, który łagodzi zmęczenie oczu, zmniejszając ogólną jasność. Nadal jest w fazie rozwoju, więc proszę zgłaszać wszelkie zauważone błędy.",
"High contrast mode":"Tryb dużego kontrastu",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tryb o dużym kontraście ułatwiający nawigację. Jakość obrazu jest zmniejszona, ale za to poprawiona przejrzystość.",
"Dyslexia font":"Czcionka dla dyslektyków",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic to darmowa czcionka zaprojektowana w celu zmniejszenia niektórych typowych błędów w czytaniu spowodowanych dysleksją.",
"Accessibility":"Dostępność",
"Accessibility options for nextcloud":"Opcje dostępności dla Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Zapewnia wiele opcji dostępu, aby ułatwić korzystanie z Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Motyw o dużym kontraście ułatwiający nawigację. Jakość obrazu jest zmniejszona, ale za to poprawiona przejrzystość.",
"Dark theme (beta)":"Ciemny motyw (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic to darmowa czcionka zaprojektowana w celu zmniejszenia niektórych typowych błędów w czytaniu spowodowanych dysleksją. Czcionka została stworzona przez Abelardo Gonzaleza, który wydał ją na licencji open source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Zapewnia wiele opcji dostępu, aby ułatwić korzystanie z Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ciemny motyw, który łagodzi zmęczenie oczu, zmniejszając ogólną jasność. Nadal jest w fazie rozwoju, więc proszę zgłaszać wszelkie zauważone błędy.",
"High contrast mode":"Tryb dużego kontrastu",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tryb o dużym kontraście ułatwiający nawigację. Jakość obrazu jest zmniejszona, ale za to poprawiona przejrzystość.",
"Dyslexia font":"Czcionka dla dyslektyków",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic to darmowa czcionka zaprojektowana w celu zmniejszenia niektórych typowych błędów w czytaniu spowodowanych dysleksją.",
"Accessibility":"Dostępność",
"Accessibility options for nextcloud":"Opcje dostępności dla Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Zapewnia wiele opcji dostępu, aby ułatwić korzystanie z Nextcloud",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Motyw o dużym kontraście ułatwiający nawigację. Jakość obrazu jest zmniejszona, ale za to poprawiona przejrzystość.",
"Dark theme (beta)":"Ciemny motyw (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic to darmowa czcionka zaprojektowana w celu zmniejszenia niektórych typowych błędów w czytaniu spowodowanych dysleksją. Czcionka została stworzona przez Abelardo Gonzaleza, który wydał ją na licencji open source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Zapewnia wiele opcji dostępu, aby ułatwić korzystanie z Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Um tema escuro para aliviar os olhos, reduzindo a luminosidade e brilho geral. Ainda está em desenvolvimento, por isso, informe qualquer problema encontrado.",
"High contrast mode":"Modo de alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"O modo de alto contraste facilita a navegação. A qualidade visual será reduzida, mas a clareza será aumentada.",
"Dyslexia font":"Fonte de dislexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic é um tipo de letra/fonte grátis concebida para atenuar alguns dos erros comuns de leitura causados pela dislexia.",
"Accessibility":"Acessibilidade",
"Accessibility options for nextcloud":"Opções de acessibilidade para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fornece várias opções de acessibilidade para facilitar o uso do Nextcloud",
"Web Content Accessibility Guidelines":"Diretrizes de Acessibilidade ao Conteúdo da Web",
"our issue tracker":"nosso rastreador de problemas",
"our design team":"nossa equipe de design",
"Enable":"Ativar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Um tema de alto contraste para facilitar a navegação. A qualidade visual será reduzida, mas a clareza aumentada.",
"Dark theme (beta)":"Tema escuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"O OpenDyslexic é um tipo de letra/fonte livre concebido para atenuar alguns dos erros comuns de leitura causados pela dislexia. O tipo de letra foi criado por Abelardo Gonzalez, que o lançou através de uma licença de código aberto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Fornece várias opções de acessibilidade para facilitar o uso do nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Um tema escuro para aliviar os olhos, reduzindo a luminosidade e brilho geral. Ainda está em desenvolvimento, por isso, informe qualquer problema encontrado.",
"High contrast mode":"Modo de alto contraste",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"O modo de alto contraste facilita a navegação. A qualidade visual será reduzida, mas a clareza será aumentada.",
"Dyslexia font":"Fonte de dislexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic é um tipo de letra/fonte grátis concebida para atenuar alguns dos erros comuns de leitura causados pela dislexia.",
"Accessibility":"Acessibilidade",
"Accessibility options for nextcloud":"Opções de acessibilidade para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fornece várias opções de acessibilidade para facilitar o uso do Nextcloud",
"Web Content Accessibility Guidelines":"Diretrizes de Acessibilidade ao Conteúdo da Web",
"our issue tracker":"nosso rastreador de problemas",
"our design team":"nossa equipe de design",
"Enable":"Ativar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Um tema de alto contraste para facilitar a navegação. A qualidade visual será reduzida, mas a clareza aumentada.",
"Dark theme (beta)":"Tema escuro (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"O OpenDyslexic é um tipo de letra/fonte livre concebido para atenuar alguns dos erros comuns de leitura causados pela dislexia. O tipo de letra foi criado por Abelardo Gonzalez, que o lançou através de uma licença de código aberto.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Fornece várias opções de acessibilidade para facilitar o uso do nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Um tema escuro para descansar os olhos reduzindo a luminosidade e o brilho. Ainda está em desenvolvimento, pelo que tenha a gentileza de reportar quaisquer erros que encontre.",
"High contrast mode":"Modo de alto contraste",
"Dyslexia font":"Fonte de texto \"Dyslexia\"",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic é uma fonte de texto gratuita, desenhada para mitigar alguns dos problemas causados pela dislexia.",
"Accessibility":"Acessibilidade",
"Accessibility options for nextcloud":"Opções de acessibilidade para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fornece várias opções de acessibilidade para facilitar a sua utilização do Nextcloud",
"Web Content Accessibility Guidelines":"Recomendações de Acessibilidade de Conteúdo da Web",
"our issue tracker":"o nosso registo de erros",
"our design team":"a nossa equipa de desenho",
"Enable":"Ativar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Um tema de alto contraste para facilitar a sua navegação. A qualidade visual será reduzida, mas a claridade será aumentada.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Um tema escuro para descansar os olhos reduzindo a luminosidade e o brilho. Ainda está em desenvolvimento, pelo que tenha a gentileza de reportar quaisquer erros que encontre.",
"High contrast mode":"Modo de alto contraste",
"Dyslexia font":"Fonte de texto \"Dyslexia\"",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic é uma fonte de texto gratuita, desenhada para mitigar alguns dos problemas causados pela dislexia.",
"Accessibility":"Acessibilidade",
"Accessibility options for nextcloud":"Opções de acessibilidade para nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Fornece várias opções de acessibilidade para facilitar a sua utilização do Nextcloud",
"Web Content Accessibility Guidelines":"Recomendações de Acessibilidade de Conteúdo da Web",
"our issue tracker":"o nosso registo de erros",
"our design team":"a nossa equipa de desenho",
"Enable":"Ativar",
"High contrast theme":"Tema de alto contraste",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Um tema de alto contraste para facilitar a sua navegação. A qualidade visual será reduzida, mas a claridade será aumentada.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Temă întunecată pentru ușurarea ochilor prin reducerea generală a luminozității. Temă în curs de dezvoltare deci vă rugăm să raportați orice problemă găsită.",
"High contrast mode":"Modul contrast puternic.",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un contrast puternic poate ușura utilizarea. Calitatea vizuală va fi redusă, dar claritatea va fi ridicată.",
"Dyslexia font":"Font dislexic",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic este un tip de caractere / font gratuit destinat să atenueze unele erori comune de citire cauzate de dislexie.",
"Accessibility":"Accesibilitate",
"Accessibility options for nextcloud":"Opțiuni de accesibilitate pentru nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Vă oferă opțiuni multiple de accesibilitate pentru a simplifica utilizarea Nextcloud",
"Web Content Accessibility Guidelines":"Instrucțiuni privind accesibilitatea conținutului web",
"our issue tracker":"instrumentul nostru de urmărire a problemelor",
"our design team":"echipa noastră de design",
"Enable":"Activează",
"High contrast theme":"Temă cu contrast înalt",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Temă cu contrast înalt pentru ușurarea navigării. Calitatea visuală va fi redusă dar claritatea va fi mărită.",
"Dark theme (beta)":"Temă întunecată (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic este un set de caractere / font gratuit destinat să atenueze unele erori comune de citire cauzate de dislexie. Setul de caractere a fost creat de Abelardo Gonzalez, care a fost publicat sub o licență open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Oferă mai multe opțiuni de accesibilitate pentru a ușura utilizarea Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Temă întunecată pentru ușurarea ochilor prin reducerea generală a luminozității. Temă în curs de dezvoltare deci vă rugăm să raportați orice problemă găsită.",
"High contrast mode":"Modul contrast puternic.",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Un contrast puternic poate ușura utilizarea. Calitatea vizuală va fi redusă, dar claritatea va fi ridicată.",
"Dyslexia font":"Font dislexic",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic este un tip de caractere / font gratuit destinat să atenueze unele erori comune de citire cauzate de dislexie.",
"Accessibility":"Accesibilitate",
"Accessibility options for nextcloud":"Opțiuni de accesibilitate pentru nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Vă oferă opțiuni multiple de accesibilitate pentru a simplifica utilizarea Nextcloud",
"Web Content Accessibility Guidelines":"Instrucțiuni privind accesibilitatea conținutului web",
"our issue tracker":"instrumentul nostru de urmărire a problemelor",
"our design team":"echipa noastră de design",
"Enable":"Activează",
"High contrast theme":"Temă cu contrast înalt",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Temă cu contrast înalt pentru ușurarea navigării. Calitatea visuală va fi redusă dar claritatea va fi mărită.",
"Dark theme (beta)":"Temă întunecată (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic este un set de caractere / font gratuit destinat să atenueze unele erori comune de citire cauzate de dislexie. Setul de caractere a fost creat de Abelardo Gonzalez, care a fost publicat sub o licență open-source.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Oferă mai multe opțiuni de accesibilitate pentru a ușura utilizarea Nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Тёмное оформление снижает напряжение глаз за счёт уменьшения общей яркости. Тема находится в разработке. Сообщайте о всех найденных ошибках и недочётах.",
"High contrast mode":"Режим высокой контрастности",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Этот высококонтрастный режим упрощает навигацию по сайту. Качество изображения будет уменьшено за счёт увеличения чёткости.",
"Dyslexia font":"Шрифт Dyslexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic — бесплатный шрифт, который смягчает некоторые распространённые ошибки чтения, вызываемые дислексией.",
"Accessibility":"Доступность",
"Accessibility options for nextcloud":"Настройки доступности для Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Предоставляет несколько вариантов доступности, чтобы облегчить использование Nextcloud",
"Web Content Accessibility Guidelines":"Руководство по обеспечению доступности Web-контента WGAG",
"our issue tracker":"Сообщить об ошибке",
"our design team":"Команда разработчиков",
"Enable":"Включить",
"High contrast theme":"Режим высокой контрастности",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Это высококонтрастное оформление упрощает навигацию по сайту. Качество изображения будет уменьшено за счёт увеличения чёткости.",
"Dark theme (beta)":"Тёмное оформление (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic — это бесплатный шрифт, разработанный для облегчения восприятия текста людьми, которые страдают дислексией. Шрифт был создан Абелардо Гонсалесом (ориг. Abelardo Gonzalez), на правах лицензии с открытым исходным кодом (SIL Open Font License).",
"Provides multiple accessibilities options to ease your use of nextcloud":"Предоставляет расширенный вариант настройки nextcloud, для более комфортного использования",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Тёмное оформление снижает напряжение глаз за счёт уменьшения общей яркости. Тема находится в разработке. Сообщайте о всех найденных ошибках и недочётах.",
"High contrast mode":"Режим высокой контрастности",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Этот высококонтрастный режим упрощает навигацию по сайту. Качество изображения будет уменьшено за счёт увеличения чёткости.",
"Dyslexia font":"Шрифт Dyslexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic — бесплатный шрифт, который смягчает некоторые распространённые ошибки чтения, вызываемые дислексией.",
"Accessibility":"Доступность",
"Accessibility options for nextcloud":"Настройки доступности для Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Предоставляет несколько вариантов доступности, чтобы облегчить использование Nextcloud",
"Web Content Accessibility Guidelines":"Руководство по обеспечению доступности Web-контента WGAG",
"our issue tracker":"Сообщить об ошибке",
"our design team":"Команда разработчиков",
"Enable":"Включить",
"High contrast theme":"Режим высокой контрастности",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Это высококонтрастное оформление упрощает навигацию по сайту. Качество изображения будет уменьшено за счёт увеличения чёткости.",
"Dark theme (beta)":"Тёмное оформление (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic — это бесплатный шрифт, разработанный для облегчения восприятия текста людьми, которые страдают дислексией. Шрифт был создан Абелардо Гонсалесом (ориг. Abelardo Gonzalez), на правах лицензии с открытым исходным кодом (SIL Open Font License).",
"Provides multiple accessibilities options to ease your use of nextcloud":"Предоставляет расширенный вариант настройки nextcloud, для более комфортного использования",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tmavý motív vzhľadu pre úľavu vašim očiam znížením celkovej svietivosti a jasu. Je ešte stále vo vývoji, ak náhodou narazíte na nejaký problém, tak nám ho prosím nahláste.",
"High contrast mode":"Režim vysokého kontrastu",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Mód s vysokým kontrastom pre uľahčenie navigácie. Zníži sa síce vizuálna kvalita, ale zvýši sa čitateľnosť.",
"Dyslexia font":"Písmo pre dyslektikov",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic je slobodný typ písma navrhnutý priamo pre obmedzenie vplyvu niektorých bežných porúch čítania spôsobených dyslexiou.",
"Accessibility":"Prístupnosť",
"Accessibility options for nextcloud":"Možnosti prístupnosti pre Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Poskytuje viac možností prístupnosti pre uľahčenie používania Nextcloud",
"Web Content Accessibility Guidelines":"Usmernenia o prístupnosti webového obsahu",
"our issue tracker":"náš systém evidencie hlásenia chýb",
"our design team":"náš tím dizajnérov",
"Enable":"Zapnúť",
"High contrast theme":"Motív vzhľadu s vysokým kontrastom",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Motív vzhľadu s vysokým kontrastom pre uľahčenie navigácie. Zníži sa síce vizuálna kvalita, ale zvýši sa čitateľnosť.",
"Dark theme (beta)":"Tmavý motív vzhľadu (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic je slobodný typ písma navrhnutý priamo pre obmedzenie vplyvu niektorých bežných porúch čítania spôsobených dyslexiou. Typ písma bol vytvorený autorom Abelardo Gonzalez, ktorý ho zverejnil pomocou open-source licencie.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Poskytuje viac možností prístupnosti pre uľahčenie používania Nextcloud",
"Themes":"Vzhľady tém",
"Fonts":"Druhy písma",
"enabled":"povolené"
},
"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);");
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tmavý motív vzhľadu pre úľavu vašim očiam znížením celkovej svietivosti a jasu. Je ešte stále vo vývoji, ak náhodou narazíte na nejaký problém, tak nám ho prosím nahláste.",
"High contrast mode":"Režim vysokého kontrastu",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Mód s vysokým kontrastom pre uľahčenie navigácie. Zníži sa síce vizuálna kvalita, ale zvýši sa čitateľnosť.",
"Dyslexia font":"Písmo pre dyslektikov",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic je slobodný typ písma navrhnutý priamo pre obmedzenie vplyvu niektorých bežných porúch čítania spôsobených dyslexiou.",
"Accessibility":"Prístupnosť",
"Accessibility options for nextcloud":"Možnosti prístupnosti pre Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Poskytuje viac možností prístupnosti pre uľahčenie používania Nextcloud",
"Web Content Accessibility Guidelines":"Usmernenia o prístupnosti webového obsahu",
"our issue tracker":"náš systém evidencie hlásenia chýb",
"our design team":"náš tím dizajnérov",
"Enable":"Zapnúť",
"High contrast theme":"Motív vzhľadu s vysokým kontrastom",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Motív vzhľadu s vysokým kontrastom pre uľahčenie navigácie. Zníži sa síce vizuálna kvalita, ale zvýši sa čitateľnosť.",
"Dark theme (beta)":"Tmavý motív vzhľadu (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic je slobodný typ písma navrhnutý priamo pre obmedzenie vplyvu niektorých bežných porúch čítania spôsobených dyslexiou. Typ písma bol vytvorený autorom Abelardo Gonzalez, ktorý ho zverejnil pomocou open-source licencie.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Poskytuje viac možností prístupnosti pre uľahčenie používania Nextcloud",
"Themes":"Vzhľady tém",
"Fonts":"Druhy písma",
"enabled":"povolené"
},"pluralForm":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Temna tema zmanjša splošno svetlost vmesnika. Tema je še v razvoju, zato je priporočljivo poslati tudi poročila o napakah, ki jih opazite.",
"High contrast mode":"Visoko kontrastna tema",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Visoko kontrastna tema omogoča nazornejši prikaz vmesnika. Pogled se poenostavi, poveča pa se jasnost prikaza.",
"Dyslexia font":"Pisava za posameznike z disleksijo",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"Pisava OpenDyslexic je brezplačna pisava, zasnovana in oblikovana po priporočilih za posameznike z disleksijo. Zmanjša nekatere splošne težave pri branju.",
"Accessibility":"Dostopnost",
"Accessibility options for nextcloud":"Možnosti dostopnosti za okolje Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Omogoča več možnosti dostopnosti za lažje delo v okolju Nextcloud.",
"Web Content Accessibility Guidelines":"Priporočila dostopnosti za spletno vsebino",
"our issue tracker":"sledilnik napak",
"our design team":"oblikovalska skupina",
"Enable":"Omogoči",
"High contrast theme":"Visoko kontrastna tema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Visoko kontrastna tema omogoča nazornejši prikaz vmesnika. Pogled se poenostavi, povečajo pa se možnosti hitre uporabe.",
"Dark theme (beta)":"Temna tema (preizkusno)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"Pisava OpenDyslexic je brezplačna pisava, zasnovana za lajšanje nekaterih težav z branjem, ki so najpogosteje značilne za dislektike. Pisavo je zasnoval Abelardo Gonzalez in jo objavil z odprtokodnim dovoljenjem.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Omogoča številne možnosti dostopnosti za enostavnejšo uporabo oblaka nextcloud.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Temna tema zmanjša splošno svetlost vmesnika. Tema je še v razvoju, zato je priporočljivo poslati tudi poročila o napakah, ki jih opazite.",
"High contrast mode":"Visoko kontrastna tema",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Visoko kontrastna tema omogoča nazornejši prikaz vmesnika. Pogled se poenostavi, poveča pa se jasnost prikaza.",
"Dyslexia font":"Pisava za posameznike z disleksijo",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"Pisava OpenDyslexic je brezplačna pisava, zasnovana in oblikovana po priporočilih za posameznike z disleksijo. Zmanjša nekatere splošne težave pri branju.",
"Accessibility":"Dostopnost",
"Accessibility options for nextcloud":"Možnosti dostopnosti za okolje Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Omogoča več možnosti dostopnosti za lažje delo v okolju Nextcloud.",
"Web Content Accessibility Guidelines":"Priporočila dostopnosti za spletno vsebino",
"our issue tracker":"sledilnik napak",
"our design team":"oblikovalska skupina",
"Enable":"Omogoči",
"High contrast theme":"Visoko kontrastna tema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Visoko kontrastna tema omogoča nazornejši prikaz vmesnika. Pogled se poenostavi, povečajo pa se možnosti hitre uporabe.",
"Dark theme (beta)":"Temna tema (preizkusno)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"Pisava OpenDyslexic je brezplačna pisava, zasnovana za lajšanje nekaterih težav z branjem, ki so najpogosteje značilne za dislektike. Pisavo je zasnoval Abelardo Gonzalez in jo objavil z odprtokodnim dovoljenjem.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Omogoča številne možnosti dostopnosti za enostavnejšo uporabo oblaka nextcloud.",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Një temë e errët për të lehtësuar sytë duke ulur shkëlqimin dhe ndritshmërinë e përgjithshme. Është ende në zhvillim, prandaj ju lutemi raportoni çdo çështje që mund të gjeni.",
"High contrast mode":"Modalitet me kontrast të lartë",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Një modalitet me kontrast të lartë për të lehtësuar lundrimin. Cilësia vizuale do të reduktohet por qartësia do të rritet",
"Dyslexia font":"Fonti Dyslexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic është një font / karakter tipografik i lirë i dizajnuar për të zbutur disa nga gabimet e zakonshme të leximit të shkaktuara nga disleksija.",
"Accessibility":"Aksesueshmëria",
"Accessibility options for nextcloud":"Opsionet e aksesueshmërisë për nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Mundëson shumë opsione të aksesueshmërisë që t'ju lehtësojë përdorimin e Nextcloud",
"Web Content Accessibility Guidelines":"Udhëzimet për Aksesueshmërinë e Përmbajtjes së Rrjetit",
"our issue tracker":"gjurmuesi ynë i çështjeve",
"our design team":"ekipi jonë i dizajnit",
"Enable":"Aktivizo",
"High contrast theme":"Temë me kontrast të lartë",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Një temë e kontrastit të lartë për të lehtësuar navigimin tuaj. Cilësia vizuale do të reduktohet, por qartësia do të rritet.",
"Dark theme (beta)":"Tema e errët (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic eshte nje font falas, dizenjuar per te zvogeluar disa gabime te zakonshme te leximit te shkaktuara nga Dyslexia. ",
"Provides multiple accessibilities options to ease your use of nextcloud":"Mundeson opsione te shumta aksesi per te fshire perdorimin tuaj te nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Një temë e errët për të lehtësuar sytë duke ulur shkëlqimin dhe ndritshmërinë e përgjithshme. Është ende në zhvillim, prandaj ju lutemi raportoni çdo çështje që mund të gjeni.",
"High contrast mode":"Modalitet me kontrast të lartë",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Një modalitet me kontrast të lartë për të lehtësuar lundrimin. Cilësia vizuale do të reduktohet por qartësia do të rritet",
"Dyslexia font":"Fonti Dyslexia",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic është një font / karakter tipografik i lirë i dizajnuar për të zbutur disa nga gabimet e zakonshme të leximit të shkaktuara nga disleksija.",
"Accessibility":"Aksesueshmëria",
"Accessibility options for nextcloud":"Opsionet e aksesueshmërisë për nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Mundëson shumë opsione të aksesueshmërisë që t'ju lehtësojë përdorimin e Nextcloud",
"Web Content Accessibility Guidelines":"Udhëzimet për Aksesueshmërinë e Përmbajtjes së Rrjetit",
"our issue tracker":"gjurmuesi ynë i çështjeve",
"our design team":"ekipi jonë i dizajnit",
"Enable":"Aktivizo",
"High contrast theme":"Temë me kontrast të lartë",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Një temë e kontrastit të lartë për të lehtësuar navigimin tuaj. Cilësia vizuale do të reduktohet, por qartësia do të rritet.",
"Dark theme (beta)":"Tema e errët (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic eshte nje font falas, dizenjuar per te zvogeluar disa gabime te zakonshme te leximit te shkaktuara nga Dyslexia. ",
"Provides multiple accessibilities options to ease your use of nextcloud":"Mundeson opsione te shumta aksesi per te fshire perdorimin tuaj te nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Тамна тема олакшава очима смањујући укупну осветљеност. Још јеу развоју, па пријавите све грешке, уколико их нађете.",
"High contrast mode":"Режим високог контраста",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Режим високог контраста за лакшу навигацију. Визуелни доживљај биће лошији али ће јасноћа бити боља.",
"Dyslexia font":"Фонт Дислексија",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"„OpenDyslexic“ је бесплатни фонт дизајниран да умањи честе грешке у читању изазване дислексијом.",
"Accessibility":"Приступачност",
"Accessibility options for nextcloud":"Опције приступачности за Некстлауд",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Нуди више опција за приступачност да олакша употребу Некстклауда",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Тема високог контраста олакшава навигацију. Биће мање лепа али јаснија и читљивија.",
"Dark theme (beta)":"Тамна тема (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"„OpenDyslexic“ је бесплатни фонт дизајниран да умањи честе грешке у читању изазване дислексијом. Направио гаје Абелардо Гонзалес, који гаје издао под лиценцом отвореног кода.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Нуди више опција за приступачност да олакша употребу Некстклауда",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Тамна тема олакшава очима смањујући укупну осветљеност. Још јеу развоју, па пријавите све грешке, уколико их нађете.",
"High contrast mode":"Режим високог контраста",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Режим високог контраста за лакшу навигацију. Визуелни доживљај биће лошији али ће јасноћа бити боља.",
"Dyslexia font":"Фонт Дислексија",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"„OpenDyslexic“ је бесплатни фонт дизајниран да умањи честе грешке у читању изазване дислексијом.",
"Accessibility":"Приступачност",
"Accessibility options for nextcloud":"Опције приступачности за Некстлауд",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Нуди више опција за приступачност да олакша употребу Некстклауда",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Тема високог контраста олакшава навигацију. Биће мање лепа али јаснија и читљивија.",
"Dark theme (beta)":"Тамна тема (бета)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"„OpenDyslexic“ је бесплатни фонт дизајниран да умањи честе грешке у читању изазване дислексијом. Направио гаје Абелардо Гонзалес, који гаје издао под лиценцом отвореног кода.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Нуди више опција за приступачност да олакша употребу Некстклауда",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tamna tema olakšava očima smanjujući ukupnu osvetljenost. Još je u razvoju, pa prijavite sve greške, ukoliko ih nađete.",
"High contrast mode":"Režim visokog kontrasta",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Režim visokog kontrasta da olakša navigaciju. Vizuelni kvalitet će biti smanjen, ali će se poboljšati jasnost.",
"Dyslexia font":"Font Disleksija",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"„OpenDyslexic“ je besplatni font dizajniran da umanji česte greške u čitanju izazvane disleksijom.",
"Accessibility":"Pristupačnost",
"Accessibility options for nextcloud":"Opcije pristupačnosti za Nekstlaud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nudi više opcija za pristupačnost da olakša upotrebu Nekstklauda",
"Web Content Accessibility Guidelines":"Smernice pristupačnosti veb sadržaja",
"our issue tracker":"naš pratilac problema",
"our design team":"naši tim dizajnera",
"Enable":"Uključi",
"High contrast theme":"Tema visokog kontrasta",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema visokog kontrasta olakšava navigaciju. Biće manje lepa ali jasnija i čitljivija.",
"Dark theme (beta)":"Tamna tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"„OpenDyslexic“ je besplatni slovni lik/font dizajniran da umanji česte greške u čitanju izazvane disleksijom. Slovni lik je napravio Abelardo Gonzalez, koji ga je dao pod licencom otvorenog koda.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Nudi više opcija za pristupačnost da olakša upotrebu Nekstklauda",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Tamna tema olakšava očima smanjujući ukupnu osvetljenost. Još je u razvoju, pa prijavite sve greške, ukoliko ih nađete.",
"High contrast mode":"Režim visokog kontrasta",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Režim visokog kontrasta da olakša navigaciju. Vizuelni kvalitet će biti smanjen, ali će se poboljšati jasnost.",
"Dyslexia font":"Font Disleksija",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"„OpenDyslexic“ je besplatni font dizajniran da umanji česte greške u čitanju izazvane disleksijom.",
"Accessibility":"Pristupačnost",
"Accessibility options for nextcloud":"Opcije pristupačnosti za Nekstlaud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nudi više opcija za pristupačnost da olakša upotrebu Nekstklauda",
"Web Content Accessibility Guidelines":"Smernice pristupačnosti veb sadržaja",
"our issue tracker":"naš pratilac problema",
"our design team":"naši tim dizajnera",
"Enable":"Uključi",
"High contrast theme":"Tema visokog kontrasta",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Tema visokog kontrasta olakšava navigaciju. Biće manje lepa ali jasnija i čitljivija.",
"Dark theme (beta)":"Tamna tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"„OpenDyslexic“ je besplatni slovni lik/font dizajniran da umanji česte greške u čitanju izazvane disleksijom. Slovni lik je napravio Abelardo Gonzalez, koji ga je dao pod licencom otvorenog koda.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Nudi više opcija za pristupačnost da olakša upotrebu Nekstklauda",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ett mörkt tema för att lätta dina ögon genom att minska den allmänna ljusstyrkan. Det är fortfarande under utveckling, så rapportera gärna eventuella problem ni hittar.",
"High contrast mode":"Läge med hög kontrast",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ett läge med hög kontrast för att underlätta din navigering. Visuell kvalitet kommer att minska men tydligheten ökar.",
"Dyslexia font":"Dyslexi-typsnitt",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic är ett fritt typsnitt/font som är utformat för att mildra några av de vanligaste lässvårigheterna som orsakas av dyslexi.",
"Accessibility":"Tillgänglighet",
"Accessibility options for nextcloud":"Tillgänglighetsalternativ för Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ger flera tillgänglighetsalternativ för att underlätta din användning av Nextcloud",
"Web Content Accessibility Guidelines":"Riktlinjer för webbinnehåll ur tillgänglighetssynpunkt",
"our issue tracker":"vår felrapportering",
"our design team":"vårt designteam",
"Enable":"Aktivera",
"High contrast theme":"Högkontrasttema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ett tema med hög kontrast för att underlätta din navigering. Visuell kvalitet kommer att minskas men klarhet kommer att ökas.",
"Dark theme (beta)":"Mörkt tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic är en fri typsnitt/font som är utformad för att mildra några av de vanliga läsfel som orsakas av dyslexi. Typsnittet skapades av Abelardo Gonzalez, som släppte det som öppen källkod.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Ger flera åtkomstalternativ för att underlätta din användning av nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Ett mörkt tema för att lätta dina ögon genom att minska den allmänna ljusstyrkan. Det är fortfarande under utveckling, så rapportera gärna eventuella problem ni hittar.",
"High contrast mode":"Läge med hög kontrast",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ett läge med hög kontrast för att underlätta din navigering. Visuell kvalitet kommer att minska men tydligheten ökar.",
"Dyslexia font":"Dyslexi-typsnitt",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic är ett fritt typsnitt/font som är utformat för att mildra några av de vanligaste lässvårigheterna som orsakas av dyslexi.",
"Accessibility":"Tillgänglighet",
"Accessibility options for nextcloud":"Tillgänglighetsalternativ för Nextcloud",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Ger flera tillgänglighetsalternativ för att underlätta din användning av Nextcloud",
"Web Content Accessibility Guidelines":"Riktlinjer för webbinnehåll ur tillgänglighetssynpunkt",
"our issue tracker":"vår felrapportering",
"our design team":"vårt designteam",
"Enable":"Aktivera",
"High contrast theme":"Högkontrasttema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Ett tema med hög kontrast för att underlätta din navigering. Visuell kvalitet kommer att minskas men klarhet kommer att ökas.",
"Dark theme (beta)":"Mörkt tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic är en fri typsnitt/font som är utformad för att mildra några av de vanliga läsfel som orsakas av dyslexi. Typsnittet skapades av Abelardo Gonzalez, som släppte det som öppen källkod.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Ger flera åtkomstalternativ för att underlätta din användning av nextcloud",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.":"Koyu tema genel parlaklık ve canlılığı zayıflatarak göz yorgunluğunu azaltır. Bu tema henüz geliştirme aşamasında olduğundan karşılaşabileceğiniz sorunları bize iletmenizi rica ediyoruz.",
"High contrast mode":"Yüksek renk karşıtlığı kipi",
"A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Yüksek renk karşıtlığı kipi gezinmeyi kolaylaştırır. Görsel kalite azalır ancak netlik artar.",
"Dyslexia font":"Disleksik yazı türü",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.":"OpenDyslexic, disleksi nedeniyle sık karşılaşılan sorunları aşmak için geliştirilmiş ücretsiz bir yazı türüdür.",
"Accessibility":"Erişilebilirlik",
"Accessibility options for nextcloud":"Nextcloud erişebilirlik ayarları",
"Provides multiple accessibilities options to ease your use of Nextcloud":"Nextcloud kullanımınızı kolaylaştıracak çeşitli erişebilirlik seçenekleri sunar",
"High contrast theme":"Yüksek renk karşıtlıklı tema",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.":"Yüksek renk karşıtlıklı tema gezinmeyi kolaylaştırır. Görsel kalite azalır ancak netlik artar.",
"Dark theme (beta)":"Koyu tema (beta)",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia. The typeface was created by Abelardo Gonzalez, who released it through an open-source license.":"OpenDyslexic, disleksi nedeniyle sık karşılaşılan sorunları aşmak için geliştirilmiş ücretsiz bir yazı türüdür. Bu yazı türü Abelardo Gonzalez tarafından oluşturulmuş ve açık kaynak lisansı ile yayınlanmıştır.",
"Provides multiple accessibilities options to ease your use of nextcloud":"Nextcloud kullanımınızı kolaylaştıracak çeşitli erişebilirlik seçenekleri sunar",
"Themes":"Temalar",
"Fonts":"Yazı Türleri",
"enabled":"etkin"
},
"nplurals=2; plural=(n > 1);");
Some files were not shown because too many files have changed in this diff
Show More