This check will skip the background scan for the root storage
because there is nothing in the root storage that isn't already
in another (mostly user-) storage.
Fixes#22501
Whenever a remote fed share's shareinfo call returns a 404, don't
directly assume the storage is not available by throwing
StorageNotAvailableException. We need to properly throw
NotFoundException to trigger the later logic that calls testRemote()
that verifies that the 404 is not from a broken server but really from
an obsolete share.
Whenever duplicates are removed from the array, the indices are not in
sequence. This seems to cause trouble with opendir/the dir wrapper and
make it skip valid entries.
This fix reindexes the array to make it work.
* This means all the shares directly shared with them
* Or all group shares having a special share with them
This patch fixes the operator precedece (AND before OR).
So before this patch:
(share_with = <deleted user> AND share_type = 0) OR share_type=2
So it deleted all user specific shares
Now:
share_with = <deleted user> AND (share_type = 0 OR (share_type=2)
When sorting, some browsers like Chrome will lose the scroll position,
possibly because the sorting code is touching the DOM elements.
This fix saves the scroll position before sorting and sets it back
afterwards.
* versionSize is calculated anyway in the expire job - > dropped
* offset/neededSpace was needed for expiry before the file is moved to the versions -> now this is included already in the currently used space because the expiry job is defered to a point in time after the version creation
* fixes#21108
Fixes#20769
When I receive a share and move a share of myself into that share (which
is allowed currently) I effectively hand over ownership of the files I
move. So we need to update the share I move to have as a parent the
share I move it into. Else our mounting system gets confused.
Added in isSharable() in incoming remote share.
Added in isSharable() in regular incoming share.
Added in FileInfo to make sure the proper attributes are returned to the
clients.
* fixes#20425
* this removes the argument trashbin size from the expire job - it is now
calculated in the expire job
* the queue now detects properly that the job is already queue and doesn't
add it again
We cannot rely on the extension as the file may also be a valid TAR or ZIP file without such content. Especially when getting resources from the ownCloud appstore.
Forcing the approval of app permissions makes sure that the GDrive API
will always return a refresh_token.
In the case of apps that were already authorized for the current user/domain,
the API doesn't return the refresh_token which causes expiration issues.
Steps to reproduce:
* having an unknown language set in oc_preferences
* browse the personal settings
* only get listed the first letter of this language in the language chooser
It is already not allowed to share a folder containing mount points /
incoming shares.
This fixes an issue that made it possible to bypass the check by moving
the incoming share mount point into an existing outgoing share folder.
* setup LDAP users
* share from an LDAP user
* delete that LDAP user
* log in as share recipient
* before: unhandled NoUserException
* after: NoUserEception is logged and share is not shown anymore
read all relevant user attributes on login and user search, in one query. saves us some.
Conflicts:
apps/user_ldap/user_ldap.php
adjust to nested group fix
do not throw exception when no attribute is specified
When a public link password has been input, its auth is stored in the
session.
This fix makes it possible to recognize the session when using public
webdav from the files UI.
Fix regression that makes PROPPATCH of mtime work like it did in OC <=
8.0.
The PROPPATCH must be done on the "lastmodified" property.
The "getlastmodified" now return 403 again.
In case of an error the error message often contains sensitive data such as the full path which potentially leads to a full path disclosure.
Thus the error message should not directly get displayed to the user and instead be logged.
Some folders might have an extension like "test.conf".
This fix prevents to overwrite the folder's mime type with another mime
type while running the mimetype repair step.
This disables the app store for EE versions by default to address some problems caused by the wrong assumption that "Official" means supported by ownCloud Inc.
Administrators can still enable the app store by setting `appstoreenabled` to true in the config file.
Added new annotations for the externalsharescontroller class
* @NoOutgoingFederatedSharingRequired
* @NoIncomingFederatedSharingRequired
By default both are required for all functions in the
externalSharesController.
A proper exception is thrown and then a 405 is returned instead of the
default error page. Since it is only an API endpoint this makes more
sense.
Unit tests added and updated
Since for external shares there is no need for link shares to be enabled
we should check which controller is actually being called.
This makes sure that in all cases we verify that the files_sharing app
is enabled. But only for the share controller (public shares) we check
if the API is enabled and if links are enabled.
TODO: add checks for federated sharing as well
The sharing backend may throw another exception for example when the activity app encounters a problem. Previously this just triggered a 404 error page and the exception got not logged at all. With this change such exceptions get not intercepted and regularly handled as exceptions so that we have meaningful log data. Also the user will be shown a window informing him that an error happened.
Helps to debug cases such as https://github.com/owncloud/core/issues/19465
If the sharing API setting is disabled that sharing check middle ware
should block the request. Thus making link shares unavailable.
Fixes#18970
* Unit test added
* Unit tests updated
version.php now contains the previous ownCloud version from which
upgrades are allowed. Any other upgrades will show a message that the
upgrade/downgrade is not supported.
Conflicts:
version.php
The default content-security-policy of ownCloud forbids inline
JavaScript for security reasons. IE starting on Windows 10 will
however also obey the CSP which will break the event source fallback.
As a workaround thus we set a custom policy which allows the execution
of inline JavaScript.
This fixes https://github.com/owncloud/core/issues/14286
Newer Memcached's do not support the underlying protocol commands that
getAllKeys() is implemented with. We should fallback to clearing
everything in that case, as causing (temporary) performance problems for
other applications on the server is better than having stale cached data.
This shoudl have been adjusted as well, now it's consistent with `setMagicInCookie`. While it does not have a security impact directly some automated scanners reported this all the time.
The problem is the UI used a different default than the capabilities.
So when you never touched the config, the setting in admins said "disabled"
while the capabilities said "enabled".
add colon to translated string
use placeholder in t()
Adding a size limitation for avatar upload
Unit test for file size
Fix typo & display server side error message
Previously the regex was only matching on single characters. Meaning that file names such as "👍.txt" where possible while "👍" alone never was. This check apparently never worked as expected.
In some cases the ajax/share.php will return the share time as string.
If this is the case it would get parsed completely wrong and cause the
share dropdown to not work anymore. This change will properly cast the
string to an interger and also fallback if this is not possible.
refactor integration tests to make it easier to add new ones
add integration tests for avatar update
fix uncaught exception on not permitted file types when setting avatar, fixes#17232
fix test after rebasing
In case encryption was not enabled, we accidently set encrypted = 1 for
files inside mount points, since 8.1.0. This breaks opening the files in
8.1.1 because we fixed the code that checks if a file is encrypted.
In order to fix the file, we need to reset the flag of the file. However,
the flag might be set because the file is in fact encrypted because it was
uploaded at a time where encryption was enabled.
So we can only do this when:
- Current version of ownCloud before the update is 8.1.0 or 8.2.0.(0-2)
- Encryption is disabled
- files_encryption is not known in the app config
If the first two are not the case, we are save. However, if files_encryption
values exist in the config, we might have a false negative here.
Now if there is no file with unencrypted size greater 0, that means there are
no files that are still encrypted with "files_encryption" encryption. So we
can also safely reset the flag here.
If this is not the case, we go with "better save then sorry" and don't change
the flag but write a message to the ownCloud log file.
Previously something like `<h2 class="inlineblock"><?php p($l->t('Some title')) ?></h2>` was shown as `<h2 class="inlineblock">Some title` within the sidebar instead as `Some Title` due to the fact that the regex was catching these classes but was not properly running the string replace function.
To be consistent with other logic the app id from the database needs to be prefered. Especially when it comes to be able to replace an outdated OCS id.
There is the case where OCs IDs might become outdated such as it has been with the calendar and contacts app which refer to the old dummy entry. This means that users with the old OCS id can't update updates as well will receive invalid state flags. (e.g. "experimental" instead of "approved")
To allow instances to properly update the applications in the future we need to migrate the OCS IDs for now manually.
In some corner cases, an outgoing share exists but sharing is not
allowed for the current user. This would cause the file list to break
because the static text could not be rendered as the owner was
undefined.
Most of the time it doesn't make sense to forward Guzzle's
RequestException, so we convert it to StorageNotAvailable instead.
This prevents unpredictable error codes to block access to unrelated
folders needlessly.
Added unit tests for checking for stray part files.
Convert exception to sabre exception in upload put method.
Also added unit test for exception mapping, which also indirectly tests
that the part file is being deleted on exception.
This applies to both chunking and non-chunking mode.
Added some unit tests for chunk upload.
This adds a OCS provider list at `ocs-provider/` to enable a somewhat autodiscovery of services.
In the moment it is not possible for applications to add own entries and it is basically hard-coded in the controller. I'm aware that this is not an optimal solution and I'm happy for any pragmatic input that won't pollute our public API too much. (and is not a big super hack, this is already hacky enough ;-))
That said, I'd consider it as a first step also feasible to go with this somewhat hard-coded list and see if this gets adopted...
If no array of arrays is submitted make sure we still keep $sharedUsers
and $sharedGroups as arrays so the rest of the code keeps functioning as
it should.
Instead of unlocking after the file operation, change exclusive locks
back to shared locks during post hooks, and unlock after that.
Also added unit tests to test locking in pre-hooks, during operation and
post-hooks.
When moving a mount point directly, the lock must be applied on the
local mount point path instead of the attached storage root.
Other operations will still lock the attached storage root.
Type hints such as `@param bool $doSomething` will now correctly get
parsed, allowing for alignment of docblock parameters if the app developer so
wishes.
In case an application gets disabled the level is set to "experimental" if it does not contain a `shipped` tag. This can for example be reproduced by installing the documents app from the appstore and then disabling it. Or cloning an app from git.
With this change the controller will now load the level of the application from the appstore if a valid OCSID has been provided.
Fixes https://github.com/owncloud/core/issues/17003
* gets executed in autotest.sh and fails if some PHPDoc is missing
* doesn't check classes/methods that are marked as @deprecated
* iterates over all .php files in lib/public
Explicitly clear the stat cache after deleting an empty folder to make
sure it is properly detected as deleted in subsequent requests.
This works around a problem with phpseclib where the folder is properly
deleted remotely but the stat cache was not updated.
The code was missing the "MetadataDirective".
Once added, some other parts of the code failed because the format of mtime was wrong.
So this PR uses the RFC format that the S3 library already uses.
Additionally, the code path where mtime is null was missing. Now defaulting to
the current time.
This aligns the recommended setting with the max-age of `15768000` as described in our documentation. Furthermore it fixes some logical problems with the code, unit tests has been added as well.
Fixes https://github.com/owncloud/core/issues/16673
Fixed code path for Webdav PUT of small files to use shared locks during
hook execution, and exclusive during the file operation
This makes it possible for versions to be copied by accessing the file
in a post_write hook.
We need to set the size of the preview using the devicePixelRatio and use that as arguments when using the preview endpoint or that endpoint will use the default 36x36 and thumbnails will be blurry on high DPI devices
* introduces a method in OC_Image which doesn't stretch images when trying to make them fit in a box
* adds the method to all key providers so that they can do their job, as expected by the Preview class
* improves the caching mechanism of Preview in order to reduce I/O and to avoid filling the available disk space
* fixes some long standing issues
* **contains mostly tests**
- rely on a mock subfolder instead of the root
- remove obsolete "Shared" limitation tests which did pass but not for the right
reasons
- added test for the prevention of root deletion
The original owner could not be resolved because the original file was
already deleted, so no versions were retained.
This fix passes the owner and path to retainVersions() since it was
already resolved before the file deletion. This reactivates the versions
logic and creates a copy of the versions in each trashbin.
We do have a work around meanwhile and for CLI this is not relevant at all. Can be removedWe do have a work around meanwhile and for CLI this is not relevant at all. Can be removed.
For Sabre to be able to return the proper error code instead of 500, the
LockedException is now rethrown as FileLocked exception in the Sabre
connector
When renaming over the web UI, check early that the target name is
valid.
This prevents nonsensical error messages when renaming to a name with a
trailing backslash.
Sometimes a background job for versions expiration was scheduled for a
file that has been moved or deleted since.
This prevents showing useless warnings in the log and simply bail out.
IE 9 and below do not provide window.btoa and there is currently no way
to generate base64 strings without introducting further dependencies.
So for now the solution is to fall back to the ugly picture mode for
text files whenever IE <= 9 is used.
* A list of recipients can now be properly formatted with remote shares.
Before the shares where simply shown in full in the "Shared with others"
section.
* Unit tests updated and added
FIX for webdav.mediencenter.t-online.de
https://webdav.mediencenter.t-online.de returns invalid response code.
e.g.
{"reqId":"f9a1c394b98108e4e5ca62bf47829c64","remoteAddr":"81.189.45.224","app":"PHP","message":"Undefined offset: 2 at \/var\/www\/owncloud\/3rdparty\/sabre\/dav\/lib\/Sabre\/DAV\/Client.php#569","level":3,"time":"2015-03-25T18:25:48+00:00","method":"GET","url":"\/index.php\/apps\/files\/ajax\/getstoragestats.php?dir=External%2FT-Cloud%2FTests"}
e.g.
{"reqId":"3407d66672b3cef206b0af883e49bff4","remoteAddr":"46.74.125.245","app":"PHP","message":"Undefined index: {DAV:}getlastmodified at \/var\/www\/owncloud\/lib\/private\/files\/storage\/dav.php#563","level":3,"time":"2015-03-25T16:33:21+00:00"}
Without /dev/urandom being available to read the medium RNG will rely only on the following components on a Linux system:
1. MicroTime: microtime() . memory_get_usage() as seed and then a garbage collected microtime for loop
2. MTRand: chr((mt_rand() ^ mt_rand()) % 256)
3. Rand: chr((rand() ^ rand()) % 256)
4. UniqId: Plain uniqid()
An adversary with the possibility to predict the seed used by the PHP process may thus be able to predict future tokens which is an unwanted behaviour.
One should note that this behaviour is documented in our documentation to ensure that users get aware of this even without reading our documentation this will add a post setup check to the administrative interface.
Thanks to David Black from d1b.org for bringing this again to our attention.
We have to end the processing when a file is not found or otherwise the method is proceeding and even sending invalid file paths to the sendfile methods.
Due to nginx preventing directory traversals this is luckily not immediately exploitable. We should for hardening purposes however quit the script execution just as we do for 403 cases and others as well.
Fixes issue when restoring folders from trash cross-storage, as such
folders have an extension ".d12345678".
Fixes issue when moving folders between storages and at the same time
changing their extension.
For enhanced security it is important that there is also a way to disallow domains, including the default ones.
With this commit every method gets added a new "disallow" function.
This did not happen correctly when the password was enforced since a
different code path was taken.
* moved generation of the default date string to separate function
* added unit test
When restoring a file, a unique name needs to be generated if a file
with the same name already exists.
Also fixed the restore() method to return false if the file to restore
does not exist.
Added unit tests to cover restore cases.
Older versions of cURL that are unfortunately still bundled by distributors don't support these features which will result in errors and other possibly unpredictable behaviour.
Fixes https://github.com/owncloud/core/issues/16179 for master – stable8 requires another patch.
This makes sure that folders are moved to trash when deleted with
rmdir() instead of unlink().
This happens for example when deleting a folder over WebDAV.
The web UI uses unlink() so it wasn't affected.
Calculating the URL is error-prone as it doesn't work when for example `public.php` is requested and might even be harmful as it could leak sensitive information.
Since `oc.js` is even available when maintenance mode is available it is better to use the global `OC.webroot` that is not controlled by any user.
* Corrected "… if the user forgets their password." to "… if the user forgets his or her password" in line 17.
* Removed line break from line 17 to line 18.
In regard to a recent rant on social media where users complained about us to have broken the command line tool. Guess reading the documentation is hard…
* Log condition for log level increase based on conditions. Once one of these
conditions is met, the required log level is set to debug. This allows to
debug specific requests, users or apps
* Supported conditions (setting `log_condition` in `config.php`):
- `shared_secret`: if a request parameter with the name `log_secret` is set to
this value the condition is met
- `users`: if the current request is done by one of the specified users,
this condition is met
- `apps`: if the log message is invoked by one of the specified apps,
this condition is met
* fix unit test and add app log condition test
This removes the hard-dependency on output buffering as requested at https://github.com/owncloud/core/issues/16013 since a lot of distributions such as Debian and Ubuntu decided to use `4096` instead of the PHP recommended and documented default value of `off`.
However, we still should encourage disabling this setting for improved performance and reliability thus the setting switches in `.user.ini` and `.htaccess` are remaining there. It is very likely that we in other cases also should disable the output buffering but aren't doing it everywhere and thus causing memory problems.
Fixes https://github.com/owncloud/core/issues/16013
* instead of a static rendering inside PHP use the
JS OC.Notification.showTemporary to hide the
notification after 7 seconds automatically
* fixes#14811
Rework of stream_seek handling; there where basically two bugs: 1. seeking to the end of the current file would fail (with SEEK_SET); and 2. if seeking to an undefined position (outside 0,unencryptedSize) then newPosition was not defined. I used the opportunity to simplify the code.
* this is the preparation for some upcoming logger related changes
* also fixes an issue in the public interface where we request
an internal class as parameter
Owncloud complains if the user runs a shell script with a user other than the user that owns `config/config.php`. The error message does not reflect this, and instead speaks about the web server user. Related issue: #15920 .
When moving back the pointer to position 0 (using stream_seek), the pointer on the encrypted stream will be moved to the position immediately after the header. Reading the header again (invoked by stream_read) will cause an error, writing the header again (invoked by stream_write) will corrupt the file. Reading/writing the header should therefore happen when opening the file rather than upon read or write. Note that a side-effect of this PR is that empty files will still get an encryption header; I think that is OK, but it is different from how it was originally implemented.
This changeset hardens the temporary file and directory creation to address multiple problems that may lead to exposure of files to other users, data loss or other unexpected behaviour that is impossible to debug.
**[CWE-668: Exposure of Resource to Wrong Sphere](https://cwe.mitre.org/data/definitions/668.html)**
The temporary file and folder handling as implemented in ownCloud is performed using a MD5 hash over `time()` concatenated with `rand()`. This is insufficiently and leads to the following security problems:
The generated filename could already be used by another user. It is not verified whether the file is already used and thus temporary files might be used for another user as well resulting in all possible stuff such as "user has file of other user".
Effectively this leaves us with:
1. A timestamp based on seconds (no entropy at all)
2. `rand()` which returns usually a number between 0 and 2,147,483,647
Considering the birthday paradox and that we use this method quite often (especially when handling external storage) this is quite error prone and needs to get addressed.
This behaviour has been fixed by using `tempnam` instead for single temporary files. For creating temporary directories an additional postfix will be appended, the solution is for directories still not absolutely bulletproof but the best I can think about at the moment. Improvement suggestions are welcome.
**[CWE-378: Creation of Temporary File With Insecure Permissions](https://cwe.mitre.org/data/definitions/378.html)**
Files were created using `touch()` which defaults to a permission of 0644. Thus other users on the machine may read potentially sensitive information as `/tmp/` is world-readable. However, ownCloud always encourages users to use a dedicated machine to run the ownCloud instance and thus this is no a high severe issue. Permissions have been adjusted to 0600.
**[CWE-379: Creation of Temporary File in Directory with Incorrect Permissions](https://cwe.mitre.org/data/definitions/379.html)**
Files were created using `mkdir()` which defaults to a permission of 0777. Thus other users on the machine may read potentially sensitive information as `/tmp/` is world-readable. However, ownCloud always encourages users to use a dedicated machine to run the ownCloud instance and thus this is no a high severe issue. Permissions have been adjusted to 0700.Please enter the commit message for your changes.
Updated texts and changed the variable name to match the query
Updated text + info which path for php config is used
removed the term ownCloud and squashed the commits
Updated text
This is because stream_read will pre-cache the next block which causes
feof($this->source) to return true prematurely. So we cannot rely on it.
Fixed encryption stream wrapper unit tests to actually simulate 6k/8k
blocks to make sure we cover the matching logic.
Added two data files with 8192 and 8193 bytes.
This Pull Request introduces a SabreDAV plugin that will block all older clients than 1.6.1 to connect and sync with the ownCloud instance.
This has multiple reasons:
1. Old ownCloud client versions before 1.6.0 are not properly working with sticky cookies for load balancers and thus generating sessions en masse
2. Old ownCloud client versions tend to be horrible buggy
In some cases we had in 80minutes about 10'000 sessions created by a single user. While this change set does not really "fix" the problem as 3rdparty legacy clients are affected as well, it is a good work-around and hopefully should force users to update their client
Make the call compatible with future Symfony version, and avoid
E_USER_DEPRECATED as thrown by the current 2.7.0-beta1:
The "_method" requirement is deprecated since version 2.2 and will be
removed in 3.0. Use getMethods() instead. at
…/Symfony/Component/Routing/Route.php#554
The "_method" requirement is deprecated since version 2.2 and will be
removed in 3.0. Use the setMethods() method instead or the "methods"
option in the route definition. at
…/Symfony/Component/Routing/Route.php#662
* enhance the app development experience - you can look up the
method introduction right inside the code without searching
via git blame
* easier to write apps for multiple versions
If the provisioning api is used to make a user subadmin of a group that user
is already a subadmin just return success.
Added unit test to ensure things keep working.
The UPDATE oc_filecache statement blindly overwrites identical data.
Databases like Postgres that create a new row on an update
and mark the old one as dead will suffer from the previous
behaviour, as millions of "new" rows are created in the database.
This patch changes the WHERE clause to test for identical
values and not updating if the values in the DB are identical
to the ones being passed.
Added InvalidArgumentException to catch HTML parsing errors when XML was
expected.
Made convertSabreException more generic to be able to handle more
exception cases.
The share entries will be linked with the fileid while they are kept in
the trashbin.
In the future a background just will scrape orphaned shares and delete
them.
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
* fix XMLHttpRequest - send after callback is registered
* check for correct type of value - it's a boolean
* return correct content-type in status.php
The purpose of $originalStorage in unit tests was to remount the old
root.
However that storage itself is already wrapped by storage wrapper, so
remounting it would rewrap the storage several times.
This fix makes use of "loginAsUser()" and "logout()" from the TestCase
class to properly initialize and cleanup the FS as expected.
The first time we're asked to generate a preview we'll generate one of the maximum dimension indicated in the configuration and all future resizing requests will be done on that preview in order to not waste time converting the same file over and over.
One of the fixes required for #12465
This commit adds the --password-from-env switch to the `occ user:add` and
`occ user:resetpassword` commands. When this parameter is given, Owncloud
will use the password specified in environment variable OC_PASS. This
is safer than using command line parameters, as those can be read by any
process.
When using open_basedir, commands such as `which`or `command`can fail
because they might try to look outside of the restricted perimeter.
Symfony's ExecutableFinder can be used instead to look in standard
locations and we can use `find` as a last resort
A better solution would be to adopt a mechanism similar to what has
been done for office documents where a configuration parameter is used
to indicate the path where the executable is to be found.
* the placeholder is in IE 8 and 9 just set as text and
styled a bit grey. If the form is then serialized without
typing something in the placeholder is sent as value
* this fixes that behaviour for the password field and
properly detects empyt passwords
* fixes#14912
As an additional security hardening it's sensible to serve these files with a Content-Disposition of 'attachment'. Currently they are served 'inline' and get a "secure mimetype" assigned in case of potential dangerous files.
To test this change ensure that:
- [ ] Syncing with the Desktop client still works
- [ ] Syncing with the Android client still works
- [ ] Syncing with the iOS client still works
I verified that the 1.8 OS X and iOS client still work with this change.
str_replace for $user substitution was converting the data type of
mountOptions to string. This fix prevents this to happen by making sure
only strings are processed by substitution.
Also added a int conversion when reading the watcher policy
Do not send Content-Length headers with a value larger than PHP_INT_MAX
(2147483647) on Apache PHP SAPI 32-bit. PHP will eat them and send 2147483647
instead.
When X-Sendfile is enabled, Apache will send a correct Content-Length header,
even for files larger than 2147483647 bytes. When X-Sendfile is not enabled,
ownCloud will not send a Content-Length header. This prevents progress bars
from working, but allows the actual transfer to work properly.
Added option to disable autoscan of external storages
Mount option file system scan is now an int
Move priority field to avoid undefined field in storage options
All input elements inside the storage options block get parsed into
storage options.
Moving the priority field outside prevents it to appear in the storage
config, as expected. It is still parsed by special code.
FIX for webdav.mediencenter.t-online.de
https://webdav.mediencenter.t-online.de returns invalid response code.
e.g.
{"reqId":"f9a1c394b98108e4e5ca62bf47829c64","remoteAddr":"81.189.45.224","app":"PHP","message":"Undefined offset: 2 at \/var\/www\/owncloud\/3rdparty\/sabre\/dav\/lib\/Sabre\/DAV\/Client.php#569","level":3,"time":"2015-03-25T18:25:48+00:00","method":"GET","url":"\/index.php\/apps\/files\/ajax\/getstoragestats.php?dir=External%2FT-Cloud%2FTests"}
e.g.
{"reqId":"3407d66672b3cef206b0af883e49bff4","remoteAddr":"46.74.125.245","app":"PHP","message":"Undefined index: {DAV:}getlastmodified at \/var\/www\/owncloud\/lib\/private\/files\/storage\/dav.php#563","level":3,"time":"2015-03-25T16:33:21+00:00"}
https://webdav.mediencenter.t-online.de returns invalid response code.
e.g.
{"reqId":"f9a1c394b98108e4e5ca62bf47829c64","remoteAddr":"81.189.45.224","app":"PHP","message":"Undefined offset: 2 at \/var\/www\/owncloud\/3rdparty\/sabre\/dav\/lib\/Sabre\/DAV\/Client.php#569","level":3,"time":"2015-03-25T18:25:48+00:00","method":"GET","url":"\/index.php\/apps\/files\/ajax\/getstoragestats.php?dir=External%2FT-Cloud%2FTests"}
e.g.
{"reqId":"3407d66672b3cef206b0af883e49bff4","remoteAddr":"46.74.125.245","app":"PHP","message":"Undefined index: {DAV:}getlastmodified at \/var\/www\/owncloud\/lib\/private\/files\/storage\/dav.php#563","level":3,"time":"2015-03-25T16:33:21+00:00"}
Despite it's PHPDoc the function might return `null` which was not properly catched and thus in some situations the share was resolved to the sharing users root directory.
To test this perform the following steps:
* Share file in owncloud 7 (7.0.4.2)
* Delete the parent folder of the shared file
* The share stays is in the DB and the share via the sharelink is inaccessible. (which is good)
* Upgrade to owncloud 8 (8.0.2) (This step is crucial. The bug is not reproduceable without upgrading from 7 to 8. It seems like the old tokens are handled different than the newer ones)
* Optional Step: Logout, Reset Browser Session, etc.
* Access the share via the old share url: almost empty page, but there is a dowload button which adds a "/download" to the URL.
* Upon clicking, a download.zip is downloaded which contains EVERYTHING from the owncloud directory (of the user who shared the file)
* No exception is thrown and no error is logged.
This will add a check whether the share is a valid one and also adds unit tests to prevent further regressions in the future. Needs to be backported to ownCloud 8.
Adding a proper clean-up of the orphaned shares is out-of-scope and would probably require some kind of FK or so.
Fixes https://github.com/owncloud/core/issues/15097
In the past it seems the update permission was needed to be able to
rename shared mounts, but it doesn't seem to be the case any more.
Removing the "update" permission that used to be added automatically
fixes the read-only permission check when trying to overwrite a
read-only file over WebDAV.
The office converter already replaces the original extension with '.pdf', so we need to switch the extensions of the tmp file instead of appending '.pdf' to it
After a failed rename, the post_rename hook is not called.
This quickfix makes sure the trashbin storage logic is reenabled
also after a failed rename.
Without this files with a ` (backtick) in the beginning of the filenames where simply not correctly referenced as the ` got removed. This can lead to all possible havoc situations.
Should get backported to stable8 and in future we might consider if it is really worth to backport such changes when it is just for SQLite 🙈
Regression of https://github.com/owncloud/core/pull/14734
If ownCloud has not been installed yet the prefix might otherwise change at this point quite some time and thus the cache runs havoc.
This made installing ownCloud impossible on systems where APCu or so was available. However, I was not able to reproduce the same problem for application upgrades so this patch seems to work fine for this situation as well.
Fixes itself.
Previously the mount name was checked for uniqueness prior to inserting the
share. This caused problems, when two shares with the same name where done
or folder, mount point, local share with the same name was done, between
sending and accepting of the remote share
Prevents to have the cache reused by other instances on the server which have possible the same instance ID and also invalidates older cache entries after an upgrade which can cause unwanted side-effects.
Impact for deployment: The same cache will only get used if ownCloud is installed with the same version and under the same path. But this should be a basic requirement anyways.
If the asset is, for example, in an apps directory that is
outside the $SERVERROOT, we won't be able to get a relative
path. We shouldn't just fail hard in this case. Fall back to
using the absolute path instead (as we used to).
This speeds up all pages that don't use the navigation by 0.04sec per app,
because we don't need to create the routing anymore, unless we really need to.
Replaces the OC_Mail and phpmailer with SwiftMail allowing us to mock it properly.
Fixes the unit test execution on master on local machines and https://github.com/owncloud/core/issues/12014
Conflicts:
3rdparty
lib/private/server.php
lib/public/iservercontainer.php
tests/lib/mail.php
tests/settings/controller/mailsettingscontrollertest.php
Conflicts:
3rdparty
lib/private/mail.php
lib/private/server.php
lib/public/iservercontainer.php
settings/ajax/lostpassword.php
settings/application.php
When reading in old mount.json files, they do not contain config ids.
Since these are needed to be able to use the UI and the new service
classes, these will be generated automatically.
The config grouping is based on a config hash.
Whenever a chunk is being written, it is now written to a part file
first. This is to avoid a concurrent chunk upload to believe that the
former chunk already exists, even though it's not fully written.
This makes sure that the final file assembly is only done when all
chunks were successfully written.
Also added an extra unique id to chunk parts in case the same chunk is
uploaded twice concurrently.
The mount options are now passed to the UI and stored in a hidden field.
The ext storage controllers and services also know how to load/save them
from the legacy config.
- Added StorageConfig class to replace ugly arrays
- Implemented StorageService and StorageController for Global and User
storages
- Async status checking for storages (from Xenopathic)
- Auto-generate id for external storage configs (not the same as
storage_id)
- Refactor JS classes for external storage settings, this mostly
moves/encapsulated existing global event handlers into the
MountConfigListView class.
- Added some JS unit tests for the external storage UI
* Original avatarcontroller migrated to the appframework
* Added DataDisplayResponse that show data inline in the browser (used
to retrun the image)
* Removed some unneeded code
* Added unit tests for the avatarcontroller
This is required because the PDF Viewer itself is embedded using an iframe from the same domain. The default policy is blocking this.
Going on further, we have to come up with a solution in the future how to handle previews by applications, one example might be that they call their own endpoint and not the generic share page to allow applications to have full control over how to display previews.
Anyways, to test this behaviour use a decent newer browser (such as Chrome 41) and share a PDF file, obviously the PDF viewer needs to be enabled as well. Without this patch publicly shared PDF files should not get previewed and an error is thrown. (if it isn't then your browser is probably not obeying our Content-Security-Policy and you might consider switching to another one ;))
Issue report:
> Hum, well I upgraded the package then visited the web interface to
trigger the update and it failed; the UI would say there was a
possible CSRF attack and after that it'd be stuck in maintenance mode.
Tried a few times (by editing maintenance to false in owncloud.conf)
and same result each time.
That smells partially like an issue caused by our EventSource implementation, due to legacy concerns the CSRF verification happens within the EventSource handling and not when the actual endpoint is called, what happens here then is:
1. User has somehow an invalid CSRF token in session (or none at all)
2. User clicks the update button
3. Invalid CSRF token is sent to update.php - no CSRF check there => Instance gets set in maintenance mode
4. Invalid CSRF token is processed by the EventSource code => Code Execution is stopped and ownCloud is stuck in maintenance mode
I have a work-around for this problem, basically it verifies the CSRF token already in step 3 and cancels execution then. The same error will be shown to the user however he can work around it by refreshing the page – as stated by the error. I think that’s an acceptable behaviour for now: INSERT LINK
To verify this test:
1. Delete your ownCloud cookies
2. Increment the version in version.php
3. Try to upgrade
=> Before the patch: Instance shows an error, is set to upgrade mode and a refresh does not help
=> After the patch: Instance shows an error, a refresh helps though.
This is not really the best fix as a better solution would be to catch such situations when bootstrapping ownCloud, however, I don’t dare to touch base.php for this sake only, you never know what breaks then…
That said: There might be other bugs as well, especially the stacktrace is somewhat confusing but then again it installing ownCloud under /usr/share/owncloud/ and I bet that is part of the whole issue ;-)
As it turned out the AppStore code was completely broken when it came from apps delivered from the appstore, this meant:
1. You could not disable and then re-enable an application that was installed from the AppStore. It simply failed hard.
2. You could not disable apps from the categories but only from the "Activated" page
3. It did not show the activation state from any category page
This code is completely static and thus testing it is impossible. We really have to stop with "let's add yet another feature in already existing static code". Such stuff has to get refactored first.
That said, this code works from what I can say when clicking around in the AppStore page GUI. However, it may easily be that it does not work with updates or whatsever as I have no chance to test that since the AppStore code is not open-source and it is impossible to write unit-tests for that.
Fixes https://github.com/owncloud/core/issues/14711
Caches divided up into two groups: distributed and local. 'Low latency' is an
alias for local caches, while the standard `create()` call tries to get
distributed caches first, then local caches.
Memcache backend is set in `config.php`, with the keys `memcache.local` and
`memcache.distributed`. If not set, `memcache.distributed` defaults to the value
of `memcache.local`.
* Avatar for "xxxx share with you..." to the left
* Avatars for groups and remote shares (use default placeholder)
* Modified and added unit tests
* Use the same css for all the avatars in the dropdown
We were using the SMB and SFTP backends, which since Icewind's new SMB library
results in an actual attempted connection just by constructing the storage.
This commit replaces all references to real storages (except when necessary)
with a dummy storage class.
Doing this in the PHP code is not the right approach for multiple reasons:
1. A bug in the PHP code prevents them from being added to the response.
2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud)
3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations.
This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.
This is required when working with stuff such as PDF.js in the files_pdfviewer application. Opt-in only.
Master change only because the stable CSP policies has a failback that allows nearly anything 🙈
This change will log all failures that prevent the CLI cronjob from happening to the database and display a warning to administrators when an error happened.
To test:
1. Configure some invalid CLI php.ini settings
2. Enable the CLI cronjob and run php cron.php
3. See the errors printed and also in the admin page
4. Configure the CLI settings correctly
5. Errors should be gone.
Fixes https://github.com/owncloud/core/issues/13994
First stab at the StreamResponse, see #12988
The idea is to use an interface ICallbackResponse (I'm not 100% happy with the name yet, suggestions?) that allow the response to output things in its own way, for instance stream the file using readfile
Unittests are atm lacking, plan is to
check if a mock of ICallbackResponse will be used by calling its callback (also unhappy with this name) method
Usage is:
$response = new StreamResponse('path/to/file');
rename io to output, add additional methods and handle error and not modified cases when using StreamResponse
fix indention and uppercasing, also handle forbidden cases
fix indention
fix indention
no forbidden, figuring out if a file is really readable is too complicated to get to work across OSes and streams
remove useless import
remove useless import
fix intendation
Reasoning:
- a WebDAV server is not required to implement locking support
- WebDAV Locking is know to break the sync algorithm
- the current lock implementation is known to be broken (locks are not moved if a file is moved, locks on shared files don't work)
Nobody reads the warnings anyways and so we should enforce it at installation time... Also allows us to get rid of some duplicated code.
To test change the `default_charset` to something other than `utf-8` or `UTF-8`, both should work fine with that change here. An error should then get shown.
We already set those default charsets in the shipped .user.ini and .htaccess
The current code path may trigger situations where the LDAP application is not yet loaded and thus problems with the authentication appeared.
In previous versions of ownCloud the authentication mechanism manually loaded these apps which is why this affects ownCloud 8 and master only for my knowledge. (certainly not 6, maybe 7)
Backport to 8 might be something to consider.
Fixes https://github.com/owncloud/core/issues/14469
X-Forwarded-Proto contains a list of protocols if ownCloud is behind multiple reverse proxies.
This is a revival of https://github.com/owncloud/core/pull/11157 using the new IRequest public API.
Breaking change for 8.1 wiki (Security > Administrators):
The log format for failed logins has changed and uses now the remote address and is considering reverse proxies for such scenarios when configured correctly.
The encryption webdav tests are too broad and do not qualify as unit
test. Also, since the sabre upgrade they are not fixable.
The matching functionality is already tested in other classes on a
smaller scale.
- VObject fixes for Sabre\VObject 3.3
- Remove VObject property workarounds
- Added prefetching for tags in sabre tags plugin
- Moved oc_properties logic to separate PropertyStorage backend (WIP)
- Fixed Sabre connector namespaces
- Improved files plugin to handle props on-demand
- Moved allowed props from server class to files plugin
- Fixed tags caching for files that are known to have no tags
(less queries)
- Added/fixed unit tests for Sabre FilesPlugin, TagsPlugin
- Replace OC\Connector\Sabre\Request with direct call to
httpRequest->setUrl()
- Fix exception detection in DAV client when using Sabre\DAV\Client
- Added setETag() on Node instead of using the static FileSystem
- Also preload tags/props when depth is infinity
`server` is completely wrong here and this will not work on master. With `getParam` it will work fine though.
Testplan:
- [ ] Without patch: Share a file and try to access `http://localhost/public.php?service=files&t=THESHAREDTOKEN` => Fails
- [ ] With patch: Try the same => Works
Master only.
The js and php code of n() has fallbacks for when the key is missing.
However there is no fallback, when the key is defined with an array of empty
strings. So we just don't extract them anymore and use the english language.
Somehow they got messed up. Because PHP does automatic type juggling this has worked before as well however it's not guaranteed that this might work in the future as well.
Due to a security hardening in 8.1 a missing value of empty trusted domains in the config would provoke an error as this was misused by a lot of users.
This caused a problem where the initial installation happened from another domain than 127.0.0.1 as in this case the domain was considered untrusted as no value was defined. However, this special case should not get intercepted.
To test:
- [ ] Installing ownCloud on 127.0.0.1 works
- [ ] Installing ownCloud on another domain / IP works
- [ ] When setting up ownCloud from 127.0.0.1 and accessing it from the domain above the trusted domain error should be shown if not specified in the config
Fixes https://github.com/owncloud/core/issues/14320
**Changes:**
* In line 103, the middle "c" of "owncloud" is capitalised to "ownCloud".
* A space is inserted between value and unit in lines 177 and 187 ("4 GB" instead of "4GB").
This checks if the offset exists before accessing it and also adds unit tests to this function which would have catched this before 🙈
Fixes https://github.com/owncloud/core/issues/14277
Fixes new avatar selection in master half, other half will work when https://github.com/owncloud/core/pull/14266 has get merged.
Shocking to see how much places in our code do it wrong 🔫
This function is often used in a wrong and potential dangerous way... Thus we should escape the URL per default and offer developers to disable the automatic escaping via an option parameter if they really want that behaviour.
Might break some things, however, those things are then easy to fix and we really have a ton of bugs caused by this...
Fixes https://github.com/owncloud/core/issues/14228
APCu before 4.0.6 is unbelievable buggy and tend to segfault the PHP process (i.e. the whole webserver)
This potentially fixes https://github.com/owncloud/core/issues/14175
Requires a backport to stable8
This changeset removes the static class `OC_Request` and moves the functions either into `IRequest` which is accessible via `\OC::$server::->getRequest()` or into a separated `TrustedDomainHelper` class for some helper methods which should not be publicly exposed.
This changes only internal methods and nothing on the public API. Some public functions in `util.php` have been deprecated though in favour of the new non-static functions.
Unfortunately some part of this code uses things like `__DIR__` and thus is not completely unit-testable. Where tests where possible they ahve been added though.
Fixes https://github.com/owncloud/core/issues/13976 which was requested in https://github.com/owncloud/core/pull/13973#issuecomment-73492969
This change allows AppFramework applications to specify a custom CSP header for example when the default policy is too strict. Furthermore this allows us to partially migrate away from CSS and allowed eval() in our JavaScript components.
Legacy ownCloud components will still use the previous policy. Application developers can use this as following in their controllers:
```php
$response = new TemplateResponse('activity', 'list', []);
$cspHelper = new ContentSecurityPolicyHelper();
$cspHelper->addAllowedScriptDomain('www.owncloud.org');
$response->addHeader('Content-Security-Policy', $cspHelper->getPolicy());
return $response;
```
Fixes https://github.com/owncloud/core/issues/11857 which is a pre-requisite for https://github.com/owncloud/core/issues/13458 and https://github.com/owncloud/core/issues/11925
*Changes:*
* "… is not yet properly setup" in line 24 is changed to " … is not yet set up properly" (better word order and space in the middle of "set up", as it is a participle of the verb "to set up").
* "internet" is corrected to "Internet" with a capitalized "I" in lines 54 and 59.
* Also in line 54: "3rd party" is changed to "third-party" to for a more coherent spelling across the different ownCloud components.
* "… apps don´t work" is corrected to "… apps won't work" (with a proper (and hopefully correctly escaped) (apostrophe)[http://en.wikipedia.org/wiki/Apostrophe#Typographic_form] instead of the (acute accent)[http://en.wikipedia.org/wiki/Acute_accent]).
* Still in line 54: The negation is corrected from "… might also not work" to "… might not work, either".
This enforces proper types on POST and GET arguments where I considered it sensible. I didn't update some as I don't know what kind of values they would support 🙈
Fixes https://github.com/owncloud/core/issues/14196 for core
Some code paths called the `normalizePath` functionality with types other than a string which resulted in unexpected behaviour.
Thus the function is now manually casting the type to a string and I corrected the usage in list.php as well.
This deprecates – but not removes – those two classes and all functions in it. There is no reason that new developments should use those methods as with the AppFramework there is a replacement that allows testable code.
With the `@deprecated` annotation IDEs like PHPStorm will point out to the developer that a functionality is deprecated and that there is a better suited replacement.
This file is unused and has been last modified two years ago. Furthermore it won't evne work anymore properly because it uses things like `CONFIG_DATEFORMAT` which are gone a long time ago...
When `mod_unique_id` is enabled the ID generated by it will be used for logging. This allows for correlation of the Apache logs and the ownCloud logs.
Testplan:
- [ ] When `mod_unique_id` is enabled the request ID equals the one generated by `mod_unique_id`.
- [ ] When `mod_unique_id` is not available the request ID is a 20 character long random string
- [ ] The generated Id is stable over the lifespan of one request
Changeset looks a little bit larger since I had to adjust every unit test using the HTTP\Request class for proper DI.
Fixes https://github.com/owncloud/core/issues/13366
* current firefox doesn't throw an exception anymore
* it just reads 0 bytes -> folder or empty file
* upload of folder or empty file isn't supported in every
browser except Chrome
* fixes#13940
While really nearly no modern browser cares about it anymore too much it's still not wrong to have it here (and also stops some automated scanners reporting this...)
`\OCA\Files\Helper::buildFileStorageStatistics` might throw an exception from `OC_Helper::getStorageInfo`, previously this lead to a uncatched exception being thrown when invoking this methods.
This was user triggable by for example calling `/index.php/apps/files/ajax/delete.php` with a not existing dir (for example `dir=asdf/../&allfiles=true`)
This will parse backslashes as directory separators in breadcrumbs. Thus when accessing something like `/index.php/apps/files?dir=foo\foo` the breadcrumb will properly resolve this instead of showing `foo\foo`
Fixes https://github.com/owncloud/core/issues/13643
Furthermore a not logged-in user was able to access this page before which resulted in a Fatal PHP error since the filesystem could not get setup properly.
Add support for external files accessed via SFTP using public key exchange authentication.
Keys are generated automatically when the configuration is added, or can be regenerated on demand if a key is compromised.
Creation of a new configuration row now triggers focus on that row. This is used to trigger auto-configuration for SFTP keys.
Generated public keys are saved in user's data directory for easy retrieval by an external application.
Add controller for SFTP key generation AJAX
SFTP class initialisation no longer produces a warning if the password field is missing.
Add unit tests for SFTP with key authentication backend
This has no other reason than preventing some insane automated scanners from reporting this as security bug (which it obviously isn't as the cookie contains nothing of value)
Thus it generally results in an happier Lukas and hopefully less reports to our support and security mail addresses...
Issue #9885 appears to be triggered by ownCloud invalidating the entire
PHP opcache. Testing indicates it can be avoided by only invalidating the
single file that was written from the opcache, instead of clearing the
whole thing. In general it is more efficient to invalidate only the single
file that was changed, rather than the whole cache.
This adds a deleteFromOpcodeCache() function which invalidates a single
file from the opcache if possible, returning true if the underlying
function returns true (which may mean 'success', or 'file does not exist',
or 'file exists but is not in opcache', all of which are OK to treat as
good for our purposes). It also changes writeData() in config.php to try
using deleteFromOpcodeCache() and only fall back on clearOpcodeCache() if
that fails.
The "git archive" operation will substitute the contents of this
file with the hash sum of the commit that this tar ball is based
on. This improves tracebility and allows to retrospectively set
tags. It has proven to be a valuable asset in mirall.
2014-06-14 17:40:32 +02:00
2909 changed files with 131119 additions and 55290 deletions
If you have questions about how to install or use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc].
### TL;DR
### Short version
* The [issue template can be found here][template] but be aware of the different repositories! See list below.
* The [**issue template can be found here**][template] but be aware of the different repositories! See list below. Please always use the issue template when reporting issues.
### Guidelines
* Please search the existing issues first, it's likely that your issue was already reported or even fixed.
@@ -12,29 +12,34 @@ If you have questions about how to install or use ownCloud, please direct these
- You can also filter by appending e. g. "state:open" to the search string.
- More info on [search syntax within github](https://help.github.com/articles/searching-issues)
* This repository ([core](https://github.com/owncloud/core/issues)) is *only* for issues within the ownCloud core code. This also includes the apps: files, encryption, external storage, sharing, deleted files, versions, LDAP, and WebDAV Auth
* __SECURITY__: Report any potential security bug to security@owncloud.com following our [security policy](https://owncloud.org/security/) instead of filing an issue in our bug tracker
* The issues in other components should be reported in their respective repositories:
@@ -48,8 +53,8 @@ In order to constantly increase the quality of our software we can no longer acc
It is a must have that changed and added code segments are unit tested.
In some areas unit testing is hard (aka almost impossible) as of today - in these areas refactoring WHILE fixing a bug is encouraged to enable unit testing.
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespaceOCA\Encryption\Controller;
useOCA\Encryption\Session;
useOCP\AppFramework\Controller;
useOCP\AppFramework\Http\DataResponse;
useOCP\IL10N;
useOCP\IRequest;
classStatusControllerextendsController{
/** @var IL10N */
private$l;
/** @var Session */
private$session;
/**
* @param string $AppName
* @param IRequest $request
* @param IL10N $l10n
* @param Session $session
*/
publicfunction__construct($AppName,
IRequest$request,
IL10N$l10n,
Session$session
){
parent::__construct($AppName,$request);
$this->l=$l10n;
$this->session=$session;
}
/**
* @NoAdminRequired
* @return DataResponse
*/
publicfunctiongetStatus(){
$status='error';
$message='no valid init status';
switch($this->session->getStatus()){
caseSession::RUN_MIGRATION:
$status='interactionNeeded';
$message=(string)$this->l->t(
'You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run \'occ encryption:migrate\' or contact your administrator'
);
break;
caseSession::INIT_EXECUTED:
$status='interactionNeeded';
$message=(string)$this->l->t(
'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.'
);
break;
caseSession::NOT_INITIALIZED:
$status='interactionNeeded';
$message=(string)$this->l->t(
'Encryption App is enabled but your keys are not initialized, please log-out and log-in again'
);
break;
caseSession::INIT_SUCCESSFUL:
$status='success';
$message=(string)$this->l->t('Encryption App is enabled and ready');
"Could not disable recovery key. Please check your recovery key password!":"لا يمكن تعطيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!",
"Password successfully changed.":"تم تغيير كلمة المرور بنجاح.",
"Could not change the password. Maybe the old password was not correct.":"تعذر تغيير كلمة المرور. من الممكن ان كلمة المرور القديمة غير صحيحة.",
"Private key password successfully updated.":"تم تحديث كلمة المرور للمفتاح الخاص بنجاح.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"لا يمكن فك التشفير من هذا الملف, من الممكن ان يكون هذا الملف مُشارك. يرجى سؤال صاحب الملف لإعادة مشاركتة معك.",
"Recovery key password":"استعادة كلمة مرور المفتاح",
"Change recovery key password:":"تعديل كلمة المرور استعادة المفتاح:",
"Change Password":"عدل كلمة السر",
" If you don't remember your old password you can ask your administrator to recover your files.":"اذا كنت لاتتذكر كلمة السر تستطيع ان تطلب من المدير ان يستعيد ملفاتك.",
"Old log-in password":"كلمة المرور القديمة الخاصة بالدخول",
"Current log-in password":"كلمة المرور الحالية الخاصة بالدخول",
"Update Private Key Password":"تحديث كلمة المرور لـ المفتاح الخاص",
"Enable password recovery:":"تفعيل استعادة كلمة المرور:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"تفعيل هذا الخيار يمكنك من اعادة الوصول الى ملفاتك المشفرة عند فقدان كلمة المرور",
"Could not disable recovery key. Please check your recovery key password!":"لا يمكن تعطيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!",
"Password successfully changed.":"تم تغيير كلمة المرور بنجاح.",
"Could not change the password. Maybe the old password was not correct.":"تعذر تغيير كلمة المرور. من الممكن ان كلمة المرور القديمة غير صحيحة.",
"Private key password successfully updated.":"تم تحديث كلمة المرور للمفتاح الخاص بنجاح.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"لا يمكن فك التشفير من هذا الملف, من الممكن ان يكون هذا الملف مُشارك. يرجى سؤال صاحب الملف لإعادة مشاركتة معك.",
"Recovery key password":"استعادة كلمة مرور المفتاح",
"Change recovery key password:":"تعديل كلمة المرور استعادة المفتاح:",
"Change Password":"عدل كلمة السر",
" If you don't remember your old password you can ask your administrator to recover your files.":"اذا كنت لاتتذكر كلمة السر تستطيع ان تطلب من المدير ان يستعيد ملفاتك.",
"Old log-in password":"كلمة المرور القديمة الخاصة بالدخول",
"Current log-in password":"كلمة المرور الحالية الخاصة بالدخول",
"Update Private Key Password":"تحديث كلمة المرور لـ المفتاح الخاص",
"Enable password recovery:":"تفعيل استعادة كلمة المرور:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"تفعيل هذا الخيار يمكنك من اعادة الوصول الى ملفاتك المشفرة عند فقدان كلمة المرور",
"Recovery key successfully enabled":"Habilitóse la recuperación de ficheros",
"Could not enable recovery key. Please check your recovery key password!":"Nun pudo habilitase la clave de recuperación. Por favor comprueba la contraseña.",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"Nun pudo deshabilitase la clave de recuperación. Por favor comprueba la contraseña!",
"Password successfully changed.":"Camudóse la contraseña",
"Could not change the password. Maybe the old password was not correct.":"Nun pudo camudase la contraseña. Comprueba que la contraseña actual seya correuta.",
"Private key password successfully updated.":"Contraseña de clave privada anovada correchamente.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Clave privada non válida pa Encryption. Por favor, anueva la to contraseña de clave nos tos axustes personales pa recuperar l'accesu a los tos ficheros cifraos.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'aplicación Encryption ta habilitada pero les tos claves nun s'aniciaron, por favor zarra sesión y aníciala de nueves",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Nun pudo descifrase esti ficheru, dablemente seya un ficheru compartíu. Solicita al propietariu del mesmu que vuelva a compartilu contigo.",
"Recovery key password":"Contraseña de clave de recuperación",
"Change recovery key password:":"Camudar la contraseña de la clave de recuperación",
"Change Password":"Camudar contraseña",
"Set your old private key password to your current log-in password:":"Afita la contraseña de clave privada vieya pa la to contraseña d'aniciu de sesión actual:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si nun recuerdes la contraseña vieya, pues pidir a alministrador que te recupere los ficheros.",
"Update Private Key Password":"Anovar Contraseña de Clave Privada",
"Enable password recovery:":"Habilitar la recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción va permitite volver a tener accesu a los ficheros cifraos en casu de perda de contraseña",
"Recovery key successfully enabled":"Habilitóse la recuperación de ficheros",
"Could not enable recovery key. Please check your recovery key password!":"Nun pudo habilitase la clave de recuperación. Por favor comprueba la contraseña.",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"Nun pudo deshabilitase la clave de recuperación. Por favor comprueba la contraseña!",
"Password successfully changed.":"Camudóse la contraseña",
"Could not change the password. Maybe the old password was not correct.":"Nun pudo camudase la contraseña. Comprueba que la contraseña actual seya correuta.",
"Private key password successfully updated.":"Contraseña de clave privada anovada correchamente.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Clave privada non válida pa Encryption. Por favor, anueva la to contraseña de clave nos tos axustes personales pa recuperar l'accesu a los tos ficheros cifraos.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'aplicación Encryption ta habilitada pero les tos claves nun s'aniciaron, por favor zarra sesión y aníciala de nueves",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Nun pudo descifrase esti ficheru, dablemente seya un ficheru compartíu. Solicita al propietariu del mesmu que vuelva a compartilu contigo.",
"Recovery key password":"Contraseña de clave de recuperación",
"Change recovery key password:":"Camudar la contraseña de la clave de recuperación",
"Change Password":"Camudar contraseña",
"Set your old private key password to your current log-in password:":"Afita la contraseña de clave privada vieya pa la to contraseña d'aniciu de sesión actual:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si nun recuerdes la contraseña vieya, pues pidir a alministrador que te recupere los ficheros.",
"Update Private Key Password":"Anovar Contraseña de Clave Privada",
"Enable password recovery:":"Habilitar la recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción va permitite volver a tener accesu a los ficheros cifraos en casu de perda de contraseña",
"Please repeat the recovery key password":"Xahiş olunur bərpa açarı şifrəsini təkrarlayasınız",
"Repeated recovery key password does not match the provided recovery key password":"Təkrar daxil edilən bərpa açarı şifrəsi, öncə daxil edilən bərpa açarı ilə üst-üstə düşmür ",
"Recovery key successfully enabled":"Bərpa açarı uğurla aktivləşdi",
"Could not enable recovery key. Please check your recovery key password!":"Geriqaytarılma açarının aktivləşdirilməsi mümkün olmadı. Xahiş olunur geriqaytarılma açarı üçün tələb edilən şifrəni yoxlayasınız.",
"Recovery key successfully disabled":"Bərpa açarı uğurla söndürüldü",
"Could not disable recovery key. Please check your recovery key password!":"Geriqaytarılma açarını sondürmək olmur. Xahiş edirik geriqaytarılma key açarınızı yoxlayın.",
"Please provide the old recovery password":"Xahiş olunur köhnə bərpa açarını daxil edəsiniz",
"Please provide a new recovery password":"Xahiş olunur yeni bərpa açarı şifrəsini daxil esəsiniz",
"Please repeat the new recovery password":"Xahiş olunur yeni bərpa açarını təkrarlayasınız",
"Password successfully changed.":"Şifrə uğurla dəyişdirildi.",
"Could not change the password. Maybe the old password was not correct.":"Şifrəni dəyişmək olmur, ola bilər ki, köhnə şifrə düzgün olmayıb.",
"Could not update the private key password.":"Gizli açarın şifrəsini yeniləmək mümkün olmadı.",
"The old password was not correct, please try again.":"Köhnə şifrə düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
"The current log-in password was not correct, please try again.":"Hal-hazırki istifadəçi şifrəsi düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
"Private key password successfully updated.":"Gizli aşar şifrəsi uğurla yeniləndi.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Şifrələnmə proqramı üçün yalnış şəxsi açar. Xahiş olunur öz şəxsi quraşdırmalarınızda şəxsi açarınızı yeniləyəsiniz ki, şifrələnmiş fayllara yetki ala biləsiniz. ",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Proqram şifrələnməsi işə salınıb ancaq, sizin açarlar inisializasiya edilməyib. Xahiş edilir çıxıb yenidən daxil olasınız",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Bu faylı deşifrə etmək olmur və ola bilər ki, bu paylaşımda olan fayldır. Xahiş olunur faylın sahibinə həmin faylı sizinlə yenidən paylaşım etməsini bildirəsiniz. ",
"Recovery key password":"Açar şifrənin bərpa edilməsi",
"Your private key password no longer matches your log-in password.":"Sizin gizli açar şifrəsi, artıq giriş adınızla uyğun gəlmir.",
"Set your old private key password to your current log-in password:":"Köhnə açar şifrənizi, sizin hal-hazırki giriş şifrənizə təyin edin: ",
" If you don't remember your old password you can ask your administrator to recover your files.":"Əgər siz köhnə şifrənizi xatırlamırsınızsa, öz inzibatçınızdan fayllarınızın bərpasını istəyə bilərsiniz.",
"Old log-in password":"Köhnə giriş şifrəsi",
"Current log-in password":"Hal-hazırki giriş şifrəsi",
"Enable password recovery:":"Şifrə bərpasını işə sal:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Bu opsiyanın aktiv edilməsi sizə, şifrənin itdiyi hallarda bütün şifrələnmiş fayllarınıza yetkinin yenidən əldə edilməsinə şərait yaradacaq",
"Please repeat the recovery key password":"Xahiş olunur bərpa açarı şifrəsini təkrarlayasınız",
"Repeated recovery key password does not match the provided recovery key password":"Təkrar daxil edilən bərpa açarı şifrəsi, öncə daxil edilən bərpa açarı ilə üst-üstə düşmür ",
"Recovery key successfully enabled":"Bərpa açarı uğurla aktivləşdi",
"Could not enable recovery key. Please check your recovery key password!":"Geriqaytarılma açarının aktivləşdirilməsi mümkün olmadı. Xahiş olunur geriqaytarılma açarı üçün tələb edilən şifrəni yoxlayasınız.",
"Recovery key successfully disabled":"Bərpa açarı uğurla söndürüldü",
"Could not disable recovery key. Please check your recovery key password!":"Geriqaytarılma açarını sondürmək olmur. Xahiş edirik geriqaytarılma key açarınızı yoxlayın.",
"Please provide the old recovery password":"Xahiş olunur köhnə bərpa açarını daxil edəsiniz",
"Please provide a new recovery password":"Xahiş olunur yeni bərpa açarı şifrəsini daxil esəsiniz",
"Please repeat the new recovery password":"Xahiş olunur yeni bərpa açarını təkrarlayasınız",
"Password successfully changed.":"Şifrə uğurla dəyişdirildi.",
"Could not change the password. Maybe the old password was not correct.":"Şifrəni dəyişmək olmur, ola bilər ki, köhnə şifrə düzgün olmayıb.",
"Could not update the private key password.":"Gizli açarın şifrəsini yeniləmək mümkün olmadı.",
"The old password was not correct, please try again.":"Köhnə şifrə düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
"The current log-in password was not correct, please try again.":"Hal-hazırki istifadəçi şifrəsi düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
"Private key password successfully updated.":"Gizli aşar şifrəsi uğurla yeniləndi.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Şifrələnmə proqramı üçün yalnış şəxsi açar. Xahiş olunur öz şəxsi quraşdırmalarınızda şəxsi açarınızı yeniləyəsiniz ki, şifrələnmiş fayllara yetki ala biləsiniz. ",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Proqram şifrələnməsi işə salınıb ancaq, sizin açarlar inisializasiya edilməyib. Xahiş edilir çıxıb yenidən daxil olasınız",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Bu faylı deşifrə etmək olmur və ola bilər ki, bu paylaşımda olan fayldır. Xahiş olunur faylın sahibinə həmin faylı sizinlə yenidən paylaşım etməsini bildirəsiniz. ",
"Recovery key password":"Açar şifrənin bərpa edilməsi",
"Your private key password no longer matches your log-in password.":"Sizin gizli açar şifrəsi, artıq giriş adınızla uyğun gəlmir.",
"Set your old private key password to your current log-in password:":"Köhnə açar şifrənizi, sizin hal-hazırki giriş şifrənizə təyin edin: ",
" If you don't remember your old password you can ask your administrator to recover your files.":"Əgər siz köhnə şifrənizi xatırlamırsınızsa, öz inzibatçınızdan fayllarınızın bərpasını istəyə bilərsiniz.",
"Old log-in password":"Köhnə giriş şifrəsi",
"Current log-in password":"Hal-hazırki giriş şifrəsi",
"Enable password recovery:":"Şifrə bərpasını işə sal:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Bu opsiyanın aktiv edilməsi sizə, şifrənin itdiyi hallarda bütün şifrələnmiş fayllarınıza yetkinin yenidən əldə edilməsinə şərait yaradacaq",
"Missing recovery key password":"Липсва парола за възстановяване",
"Please repeat the recovery key password":"Повтори новата парола за възстановяване",
"Repeated recovery key password does not match the provided recovery key password":"Повторената парола за възстановяване не съвпада със зададената парола за възстановяване",
"Recovery key successfully enabled":"Успешно включване на опцията ключ за възстановяване.",
"Could not disable recovery key. Please check your recovery key password!":"Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!",
"Could not enable recovery key. Please check your recovery key password!":"Неуспешно включване на опцията ключ за възстановяване. Моля, провери паролата за ключа за възстановяване.",
"Recovery key successfully disabled":"Успешно изключване на ключа за възстановяване.",
"Could not disable recovery key. Please check your recovery key password!":"Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!",
"Please provide the old recovery password":"Моля, въведи старата парола за възстановяване",
"Please provide a new recovery password":"Моля, задай нова парола за възстановяване",
"Please repeat the new recovery password":"Моля, въведи повторна новата парола за възстановяване",
@@ -17,29 +17,11 @@ OC.L10N.register(
"The old password was not correct, please try again.":"Старата парола е грешна, опитай отново.",
"The current log-in password was not correct, please try again.":"Грешна парола за вписване, опитай отново.",
"Private key password successfully updated.":"Успешно променена тайната парола за ключа.",
"File recovery settings updated":"Настройките за възстановяване на файлове са променени.",
"Could not update file recovery":"Неуспешна промяна на настройките за възстановяване на файлове.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Неуспешна инициализация на криптиращото приложение! Може би криптиращото приложение бе включено по време на твоята сесия. Отпиши се и се впиши обратно за да инциализираш криптиращото приложение.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Твоят таен ключ е невалиден! Вероятно твоята парола беше променена извън %s(пр. твоята корпоративна директория). Можеш да промениш своят таен ключ в Лични настройки, за да възстановиш достъпа до криптираните файлове.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб.",
"Unknown error. Please check your system settings or contact your administrator":"Непозната грешка. Моля, провери системните настройки или се свържи с администратора.",
"Initial encryption started... This can take some time. Please wait.":"Първоначалното криптиране започна... Това може да отнеме време. Моля изчакай.",
"Initial encryption running... Please try again later.":"Тече първоначално криптиране... Моля опитай по-късно.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Моля уверете се че OpenSSL заедно с PHP разширене са включени и конфигурирани правилно. За сега, криптиращото приложение е изключено.",
"Following users are not set up for encryption:":"Следните потребители не са настроени за криптиране:",
"Go directly to your %spersonal settings%s.":"Отиде направо към твоите %sлични настройки%s.",
"Server-side Encryption":"Криптиране от страна на сървъра",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Невалиден личен ключ за Криптиращата Програма. Моля, обнови личния си ключ в Лични настройки, за да възстановиш достъпа до криптираните си файловете.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Програмата за криптиране е включена, но твоите ключове не са зададени, моля отпиши си и се впиши отново.",
"Enable recovery key (allow to recover users files in case of password loss):":"Включи опцията възстановяване на ключ (разрешава да възстанови файловете на потребителите в случай на загубена парола):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб.",
"Recovery key password":"Парола за възстановяане на ключа",
"Repeat Recovery key password":"Повтори паролата за възстановяване на ключа",
"Enabled":"Включено",
"Disabled":"Изключено",
"Change recovery key password:":"Промени паролата за въстановяване на ключа:",
"Old Recovery key password":"Старата парола за въстановяване на ключа",
"New Recovery key password":"Новата парола за възстановяване на ключа",
"Repeat New Recovery key password":"Повтори новата паролза за възстановяване на ключа",
"Change Password":"Промени Паролата",
"Your private key password no longer matches your log-in password.":"Личният ти ключ не съвпада с паролата за вписване.",
"Set your old private key password to your current log-in password:":"Промени паролата за тайния ти включ на паролата за вписване:",
@@ -48,6 +30,8 @@ OC.L10N.register(
"Current log-in password":"Текуща парола за вписване",
"Update Private Key Password":"Промени Тайната Парола за Ключа",
"Enable password recovery:":"Включи опцията възстановяване на паролата:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола.",
"Missing recovery key password":"Липсва парола за възстановяване",
"Please repeat the recovery key password":"Повтори новата парола за възстановяване",
"Repeated recovery key password does not match the provided recovery key password":"Повторената парола за възстановяване не съвпада със зададената парола за възстановяване",
"Recovery key successfully enabled":"Успешно включване на опцията ключ за възстановяване.",
"Could not disable recovery key. Please check your recovery key password!":"Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!",
"Could not enable recovery key. Please check your recovery key password!":"Неуспешно включване на опцията ключ за възстановяване. Моля, провери паролата за ключа за възстановяване.",
"Recovery key successfully disabled":"Успешно изключване на ключа за възстановяване.",
"Could not disable recovery key. Please check your recovery key password!":"Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!",
"Please provide the old recovery password":"Моля, въведи старата парола за възстановяване",
"Please provide a new recovery password":"Моля, задай нова парола за възстановяване",
"Please repeat the new recovery password":"Моля, въведи повторна новата парола за възстановяване",
@@ -15,29 +15,11 @@
"The old password was not correct, please try again.":"Старата парола е грешна, опитай отново.",
"The current log-in password was not correct, please try again.":"Грешна парола за вписване, опитай отново.",
"Private key password successfully updated.":"Успешно променена тайната парола за ключа.",
"File recovery settings updated":"Настройките за възстановяване на файлове са променени.",
"Could not update file recovery":"Неуспешна промяна на настройките за възстановяване на файлове.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Неуспешна инициализация на криптиращото приложение! Може би криптиращото приложение бе включено по време на твоята сесия. Отпиши се и се впиши обратно за да инциализираш криптиращото приложение.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Твоят таен ключ е невалиден! Вероятно твоята парола беше променена извън %s(пр. твоята корпоративна директория). Можеш да промениш своят таен ключ в Лични настройки, за да възстановиш достъпа до криптираните файлове.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб.",
"Unknown error. Please check your system settings or contact your administrator":"Непозната грешка. Моля, провери системните настройки или се свържи с администратора.",
"Initial encryption started... This can take some time. Please wait.":"Първоначалното криптиране започна... Това може да отнеме време. Моля изчакай.",
"Initial encryption running... Please try again later.":"Тече първоначално криптиране... Моля опитай по-късно.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Моля уверете се че OpenSSL заедно с PHP разширене са включени и конфигурирани правилно. За сега, криптиращото приложение е изключено.",
"Following users are not set up for encryption:":"Следните потребители не са настроени за криптиране:",
"Go directly to your %spersonal settings%s.":"Отиде направо към твоите %sлични настройки%s.",
"Server-side Encryption":"Криптиране от страна на сървъра",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Невалиден личен ключ за Криптиращата Програма. Моля, обнови личния си ключ в Лични настройки, за да възстановиш достъпа до криптираните си файловете.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Програмата за криптиране е включена, но твоите ключове не са зададени, моля отпиши си и се впиши отново.",
"Enable recovery key (allow to recover users files in case of password loss):":"Включи опцията възстановяване на ключ (разрешава да възстанови файловете на потребителите в случай на загубена парола):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб.",
"Recovery key password":"Парола за възстановяане на ключа",
"Repeat Recovery key password":"Повтори паролата за възстановяване на ключа",
"Enabled":"Включено",
"Disabled":"Изключено",
"Change recovery key password:":"Промени паролата за въстановяване на ключа:",
"Old Recovery key password":"Старата парола за въстановяване на ключа",
"New Recovery key password":"Новата парола за възстановяване на ключа",
"Repeat New Recovery key password":"Повтори новата паролза за възстановяване на ключа",
"Change Password":"Промени Паролата",
"Your private key password no longer matches your log-in password.":"Личният ти ключ не съвпада с паролата за вписване.",
"Set your old private key password to your current log-in password:":"Промени паролата за тайния ти включ на паролата за вписване:",
@@ -46,6 +28,8 @@
"Current log-in password":"Текуща парола за вписване",
"Update Private Key Password":"Промени Тайната Парола за Ключа",
"Enable password recovery:":"Включи опцията възстановяване на паролата:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Neispravan privatni ključ za šifriranje. Molim ažurirajte lozinku svoga privatnog ključa u svojim osobnim postavkama da biste obnovili pristup svojim šifriranim datotekama.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikacija šifriranja je uključena, ali vaši ključevi nisu inicializirani, molim odjavite se i ponovno prijavite",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Neispravan privatni ključ za šifriranje. Molim ažurirajte lozinku svoga privatnog ključa u svojim osobnim postavkama da biste obnovili pristup svojim šifriranim datotekama.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikacija šifriranja je uključena, ali vaši ključevi nisu inicializirani, molim odjavite se i ponovno prijavite",
"Recovery key successfully enabled":"La clau de recuperació s'ha activat",
"Could not enable recovery key. Please check your recovery key password!":"No s'ha pogut activar la clau de recuperació. Comproveu contrasenya de la clau de recuperació!",
"Recovery key successfully disabled":"La clau de recuperació s'ha descativat",
"Could not disable recovery key. Please check your recovery key password!":"No s'ha pogut desactivar la calu de recuperació. Comproveu la contrasenya de la clau de recuperació!",
"Could not change the password. Maybe the old password was not correct.":"No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.",
"Private key password successfully updated.":"La contrasenya de la clau privada s'ha actualitzat.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.",
"Recovery key password":"Clau de recuperació de la contrasenya",
"Change recovery key password:":"Canvia la clau de recuperació de contrasenya:",
"Change Password":"Canvia la contrasenya",
"Your private key password no longer matches your log-in password.":"La clau privada ja no es correspon amb la contrasenya d'accés:",
"Set your old private key password to your current log-in password:":"Establiu la vostra antiga clau privada a l'actual contrasenya d'accés:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si no recordeu la contrasenya anterior podeu demanar a l'administrador que recuperi els vostres fitxers.",
"Update Private Key Password":"Actualitza la contrasenya de clau privada",
"Enable password recovery:":"Habilita la recuperació de contrasenya:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya",
"Recovery key successfully enabled":"La clau de recuperació s'ha activat",
"Could not disable recovery key. Please check your recovery key password!":"No s'ha pogut desactivar la calu de recuperació. Comproveu la contrasenya de la clau de recuperació!",
"Could not enable recovery key. Please check your recovery key password!":"No s'ha pogut activar la clau de recuperació. Comproveu contrasenya de la clau de recuperació!",
"Recovery key successfully disabled":"La clau de recuperació s'ha descativat",
"Could not disable recovery key. Please check your recovery key password!":"No s'ha pogut desactivar la calu de recuperació. Comproveu la contrasenya de la clau de recuperació!",
"Could not change the password. Maybe the old password was not correct.":"No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.",
"Private key password successfully updated.":"La contrasenya de la clau privada s'ha actualitzat.",
"File recovery settings updated":"S'han actualitzat els arranjaments de recuperació de fitxers",
"Could not update file recovery":"No s'ha pogut actualitzar la recuperació de fitxers",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"L'aplicació d'encriptació no està inicialitzada! Potser l'aplicació d'encriptació ha estat reiniciada durant la sessió. Intenteu sortir i acreditar-vos de nou per reinicialitzar l'aplicació d'encriptació.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora de %s (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.",
"Unknown error. Please check your system settings or contact your administrator":"Error desconegut. Comproveu l'arranjament del sistema o aviseu a l'administrador",
"Initial encryption started... This can take some time. Please wait.":"La encriptació inicial ha començat... Pot trigar una estona, espereu.",
"Initial encryption running... Please try again later.":"encriptació inicial en procés... Proveu-ho més tard.",
"Missing requirements.":"Manca de requisits.",
"Following users are not set up for encryption:":"Els usuaris següents no estan configurats per a l'encriptació:",
"Go directly to your %spersonal settings%s.":"Vés directament a l'%sarranjament personal%s.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.",
"Enable recovery key (allow to recover users files in case of password loss):":"Activa la clau de recuperació (permet recuperar fitxers d'usuaris en cas de pèrdua de contrasenya):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.",
"Recovery key password":"Clau de recuperació de la contrasenya",
"Repeat Recovery key password":"Repetiu la clau de recuperació de contrasenya",
"Enabled":"Activat",
"Disabled":"Desactivat",
"Change recovery key password:":"Canvia la clau de recuperació de contrasenya:",
"Old Recovery key password":"Antiga clau de recuperació de contrasenya",
"New Recovery key password":"Nova clau de recuperació de contrasenya",
"Repeat New Recovery key password":"Repetiu la nova clau de recuperació de contrasenya",
"Change Password":"Canvia la contrasenya",
"Your private key password no longer matches your log-in password.":"La clau privada ja no es correspon amb la contrasenya d'accés:",
"Set your old private key password to your current log-in password:":"Establiu la vostra antiga clau privada a l'actual contrasenya d'accés:",
"Update Private Key Password":"Actualitza la contrasenya de clau privada",
"Enable password recovery:":"Habilita la recuperació de contrasenya:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya",
"Missing recovery key password":"Chybí heslo klíče pro obnovu",
"Please repeat the recovery key password":"Zopakujte prosím heslo klíče pro obnovu",
"Repeated recovery key password does not match the provided recovery key password":"Opakované heslo pro obnovu nesouhlasí se zadaným heslem",
"Recovery key successfully enabled":"Záchranný klíč byl úspěšně povolen",
"Could not disable recovery key. Please check your recovery key password!":"Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče!",
"Could not enable recovery key. Please check your recovery key password!":"Nepodařilo se povolit záchranný klíč. Zkontrolujte prosím vaše heslo záchranného klíče!",
"Recovery key successfully disabled":"Záchranný klíč byl úspěšně zakázán",
"Could not disable recovery key. Please check your recovery key password!":"Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo svého záchranného klíče!",
"Missing parameters":"Chybějící parametry",
"Please provide the old recovery password":"Zadejte prosím staré heslo pro obnovu",
"Please provide a new recovery password":"Zadejte prosím nové heslo pro obnovu",
"Please repeat the new recovery password":"Zopakujte prosím nové heslo pro obnovu",
"Password successfully changed.":"Heslo bylo úspěšně změněno.",
"Could not change the password. Maybe the old password was not correct.":"Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.",
"Recovery Key disabled":"Záchranný klíč není povolen",
"Recovery Key enabled":"Záchranný klíč povolen",
"Could not enable the recovery key, please try again or contact your administrator":"Nelze povolit záchranný klíč. Zkuste to prosím znovu nebo kontaktujte svého správce.",
"Could not update the private key password.":"Nelze aktualizovat heslo soukromého klíče.",
"The old password was not correct, please try again.":"Staré heslo nebylo zadáno správně, zkuste to prosím znovu.",
"The current log-in password was not correct, please try again.":"Současné přihlašovací heslo nebylo zadáno správně, zkuste to prosím znovu.",
"Private key password successfully updated.":"Heslo soukromého klíče úspěšně aktualizováno.",
"Could not update file recovery":"Nelze nastavit záchranu souborů",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.",
"Unknown error. Please check your system settings or contact your administrator":"Neznámá chyba. Zkontrolujte nastavení systému nebo kontaktujte vašeho správce.",
"Initial encryption started... This can take some time. Please wait.":"Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím.",
"Initial encryption running... Please try again later.":"Probíhá počáteční šifrování... Zkuste to prosím znovu později.",
"Missing requirements.":"Nesplněné závislosti.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Ujistěte se prosím, že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Aplikace pro šifrování byla prozatím vypnuta.",
"Following users are not set up for encryption:":"Následující uživatelé nemají nastavené šifrování:",
"Go directly to your %spersonal settings%s.":"Přejít přímo do svého %sosobního nastavení%s.",
"Server-side Encryption":"Šifrování na serveru",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Spusťte příkaz 'occ encryption:migrate' nebo kontaktujte svého administrátora.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste",
"Enable recovery key (allow to recover users files in case of password loss):":"Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)",
"Encryption App is enabled and ready":"Aplikace šifrování je již povolena",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Soubor nelze načíst, pravděpodobně se jedná o sdílený soubor. Požádejte prosím vlastníka souboru, aby vám jej znovu sdílel.",
"Enable recovery key":"Povolit záchranný klíč",
"Disable recovery key":"Vypnout záchranný klíč",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Záchranný klíč je dodatečný šifrovací klíč použitý pro\nšifrování souborů. S jeho pomocí lze obnovit soubory uživatele při zapomenutí hesla.",
"Recovery key password":"Heslo klíče pro obnovu",
"Repeat Recovery key password":"Zopakujte heslo klíče pro obnovu",
"New recovery key password":"Nové heslo záchranného klíče",
"Repeat new recovery key password":"Zopakujte nové heslo záchranného klíče",
"Change Password":"Změnit heslo",
"ownCloud basic encryption module":"ownCloud základní šifrovací modul",
"Your private key password no longer matches your log-in password.":"Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem.",
"Set your old private key password to your current log-in password:":"Změňte vaše staré heslo soukromého klíče na stejné, jako je vaše současné přihlašovací heslo:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů.",
"Set your old private key password to your current log-in password:":"Změňte své staré heslo soukromého klíče na stejné, jako je vaše současné přihlašovací heslo:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Pokud si nepamatujete své původní heslo, můžete požádat správce o obnovu vašich souborů.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo",
"Missing recovery key password":"Chybí heslo klíče pro obnovu",
"Please repeat the recovery key password":"Zopakujte prosím heslo klíče pro obnovu",
"Repeated recovery key password does not match the provided recovery key password":"Opakované heslo pro obnovu nesouhlasí se zadaným heslem",
"Recovery key successfully enabled":"Záchranný klíč byl úspěšně povolen",
"Could not disable recovery key. Please check your recovery key password!":"Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče!",
"Could not enable recovery key. Please check your recovery key password!":"Nepodařilo se povolit záchranný klíč. Zkontrolujte prosím vaše heslo záchranného klíče!",
"Recovery key successfully disabled":"Záchranný klíč byl úspěšně zakázán",
"Could not disable recovery key. Please check your recovery key password!":"Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo svého záchranného klíče!",
"Missing parameters":"Chybějící parametry",
"Please provide the old recovery password":"Zadejte prosím staré heslo pro obnovu",
"Please provide a new recovery password":"Zadejte prosím nové heslo pro obnovu",
"Please repeat the new recovery password":"Zopakujte prosím nové heslo pro obnovu",
"Password successfully changed.":"Heslo bylo úspěšně změněno.",
"Could not change the password. Maybe the old password was not correct.":"Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.",
"Recovery Key disabled":"Záchranný klíč není povolen",
"Recovery Key enabled":"Záchranný klíč povolen",
"Could not enable the recovery key, please try again or contact your administrator":"Nelze povolit záchranný klíč. Zkuste to prosím znovu nebo kontaktujte svého správce.",
"Could not update the private key password.":"Nelze aktualizovat heslo soukromého klíče.",
"The old password was not correct, please try again.":"Staré heslo nebylo zadáno správně, zkuste to prosím znovu.",
"The current log-in password was not correct, please try again.":"Současné přihlašovací heslo nebylo zadáno správně, zkuste to prosím znovu.",
"Private key password successfully updated.":"Heslo soukromého klíče úspěšně aktualizováno.",
"Could not update file recovery":"Nelze nastavit záchranu souborů",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.",
"Unknown error. Please check your system settings or contact your administrator":"Neznámá chyba. Zkontrolujte nastavení systému nebo kontaktujte vašeho správce.",
"Initial encryption started... This can take some time. Please wait.":"Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím.",
"Initial encryption running... Please try again later.":"Probíhá počáteční šifrování... Zkuste to prosím znovu později.",
"Missing requirements.":"Nesplněné závislosti.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Ujistěte se prosím, že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Aplikace pro šifrování byla prozatím vypnuta.",
"Following users are not set up for encryption:":"Následující uživatelé nemají nastavené šifrování:",
"Go directly to your %spersonal settings%s.":"Přejít přímo do svého %sosobního nastavení%s.",
"Server-side Encryption":"Šifrování na serveru",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Spusťte příkaz 'occ encryption:migrate' nebo kontaktujte svého administrátora.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste",
"Enable recovery key (allow to recover users files in case of password loss):":"Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)",
"Encryption App is enabled and ready":"Aplikace šifrování je již povolena",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Soubor nelze načíst, pravděpodobně se jedná o sdílený soubor. Požádejte prosím vlastníka souboru, aby vám jej znovu sdílel.",
"Enable recovery key":"Povolit záchranný klíč",
"Disable recovery key":"Vypnout záchranný klíč",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Záchranný klíč je dodatečný šifrovací klíč použitý pro\nšifrování souborů. S jeho pomocí lze obnovit soubory uživatele při zapomenutí hesla.",
"Recovery key password":"Heslo klíče pro obnovu",
"Repeat Recovery key password":"Zopakujte heslo klíče pro obnovu",
"New recovery key password":"Nové heslo záchranného klíče",
"Repeat new recovery key password":"Zopakujte nové heslo záchranného klíče",
"Change Password":"Změnit heslo",
"ownCloud basic encryption module":"ownCloud základní šifrovací modul",
"Your private key password no longer matches your log-in password.":"Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem.",
"Set your old private key password to your current log-in password:":"Změňte vaše staré heslo soukromého klíče na stejné, jako je vaše současné přihlašovací heslo:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů.",
"Set your old private key password to your current log-in password:":"Změňte své staré heslo soukromého klíče na stejné, jako je vaše současné přihlašovací heslo:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Pokud si nepamatujete své původní heslo, můžete požádat správce o obnovu vašich souborů.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo",
"Missing recovery key password":"Der mangler kodeord for gendannelsesnøgle",
"Please repeat the recovery key password":"Gentag venligst kodeordet for gendannelsesnøglen",
"Repeated recovery key password does not match the provided recovery key password":"Det gentagne kodeord for gendannelsesnøglen stemmer ikke med det angivne kodeord for gendannelsesnøglen",
"Recovery key successfully enabled":"Gendannelsesnøgle aktiveret med succes",
"Could not disable recovery key. Please check your recovery key password!":"Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!",
"Could not enable recovery key. Please check your recovery key password!":"Kunne ikke aktivere gendannelsesnøgle. Kontroller venligst dit gendannelsesnøgle kodeord!",
"Could not disable recovery key. Please check your recovery key password!":"Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!",
"Missing parameters":"Manglende parametre",
"Please provide the old recovery password":"Angiv venligst det gamle kodeord for gendannelsesnøglen",
"Please provide a new recovery password":"Angiv venligst et nyt kodeord til gendannelse",
"Please repeat the new recovery password":"Gentag venligst det nye kodeord til gendannelse",
"Password successfully changed.":"Kodeordet blev ændret succesfuldt",
"Could not change the password. Maybe the old password was not correct.":"Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.",
"Recovery Key disabled":"Gendannelsesnøgle er slået fra",
"Recovery Key enabled":"Gendannalsesnøgle aktiv",
"Could not enable the recovery key, please try again or contact your administrator":"Kunne ikke aktivere gendannelsesnøglen, venligst prøv igen eller kontakt din administrator",
"Could not update the private key password.":"Kunne ikke opdatere kodeordet til den private nøgle.",
"The old password was not correct, please try again.":"Det gamle kodeord var ikke korrekt, prøv venligst igen.",
"The current log-in password was not correct, please try again.":"Det nuværende kodeord til log-in var ikke korrekt, prøv venligst igen.",
"Could not update file recovery":"Kunne ikke opdatere filgendannelse",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. ",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.",
"Unknown error. Please check your system settings or contact your administrator":"Ukendt fejl. Venligst tjek dine systemindstillinger eller kontakt din systemadministrator",
"Initial encryption started... This can take some time. Please wait.":"Førstegangskrypteringen er påbegyndt... Dette kan tage nogen tid. Vent venligst.",
"Initial encryption running... Please try again later.":"Kryptering foretages... Prøv venligst igen senere.",
"Missing requirements.":"Manglende betingelser.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Sørg for at OpenSSL, sammen med PHP-udvidelsen, er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.",
"Following users are not set up for encryption:":"Følgende brugere er ikke sat op til kryptering:",
"Go directly to your %spersonal settings%s.":"Gå direkte til dine %spersonlige indstillinger%s.",
"Server-side Encryption":"Kryptering på serverdelen",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Du skal overflytte dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Kør venligst \"occ encryption:migrate\" eller kontakt din administrator.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Krypteringsprogrammet er aktiveret, men din nøgler er ikke igangsat. Log venligst ud og ind igen.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):",
"Encryption App is enabled and ready":"App til kryptering er slået til og er klar",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke læse denne fil, sandsynligvis fordi det er en delt fil. Bed venligst ejeren af filen om at dele filen med dig påny.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Gendannelsesnøglen er en ekstra krypteringsnøgle, der bruges til at kryptere filer. Den tillader gendannelse af en brugers filer, hvis brugeren glemmer sin adgangskode.",
"Your private key password no longer matches your log-in password.":"Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord.",
"Set your old private key password to your current log-in password:":"Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. ",
" If you don't remember your old password you can ask your administrator to recover your files.":"Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord",
"Missing recovery key password":"Der mangler kodeord for gendannelsesnøgle",
"Please repeat the recovery key password":"Gentag venligst kodeordet for gendannelsesnøglen",
"Repeated recovery key password does not match the provided recovery key password":"Det gentagne kodeord for gendannelsesnøglen stemmer ikke med det angivne kodeord for gendannelsesnøglen",
"Recovery key successfully enabled":"Gendannelsesnøgle aktiveret med succes",
"Could not disable recovery key. Please check your recovery key password!":"Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!",
"Could not enable recovery key. Please check your recovery key password!":"Kunne ikke aktivere gendannelsesnøgle. Kontroller venligst dit gendannelsesnøgle kodeord!",
"Could not disable recovery key. Please check your recovery key password!":"Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!",
"Missing parameters":"Manglende parametre",
"Please provide the old recovery password":"Angiv venligst det gamle kodeord for gendannelsesnøglen",
"Please provide a new recovery password":"Angiv venligst et nyt kodeord til gendannelse",
"Please repeat the new recovery password":"Gentag venligst det nye kodeord til gendannelse",
"Password successfully changed.":"Kodeordet blev ændret succesfuldt",
"Could not change the password. Maybe the old password was not correct.":"Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.",
"Recovery Key disabled":"Gendannelsesnøgle er slået fra",
"Recovery Key enabled":"Gendannalsesnøgle aktiv",
"Could not enable the recovery key, please try again or contact your administrator":"Kunne ikke aktivere gendannelsesnøglen, venligst prøv igen eller kontakt din administrator",
"Could not update the private key password.":"Kunne ikke opdatere kodeordet til den private nøgle.",
"The old password was not correct, please try again.":"Det gamle kodeord var ikke korrekt, prøv venligst igen.",
"The current log-in password was not correct, please try again.":"Det nuværende kodeord til log-in var ikke korrekt, prøv venligst igen.",
"Could not update file recovery":"Kunne ikke opdatere filgendannelse",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. ",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.",
"Unknown error. Please check your system settings or contact your administrator":"Ukendt fejl. Venligst tjek dine systemindstillinger eller kontakt din systemadministrator",
"Initial encryption started... This can take some time. Please wait.":"Førstegangskrypteringen er påbegyndt... Dette kan tage nogen tid. Vent venligst.",
"Initial encryption running... Please try again later.":"Kryptering foretages... Prøv venligst igen senere.",
"Missing requirements.":"Manglende betingelser.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Sørg for at OpenSSL, sammen med PHP-udvidelsen, er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.",
"Following users are not set up for encryption:":"Følgende brugere er ikke sat op til kryptering:",
"Go directly to your %spersonal settings%s.":"Gå direkte til dine %spersonlige indstillinger%s.",
"Server-side Encryption":"Kryptering på serverdelen",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Du skal overflytte dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Kør venligst \"occ encryption:migrate\" eller kontakt din administrator.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Krypteringsprogrammet er aktiveret, men din nøgler er ikke igangsat. Log venligst ud og ind igen.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):",
"Encryption App is enabled and ready":"App til kryptering er slået til og er klar",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke læse denne fil, sandsynligvis fordi det er en delt fil. Bed venligst ejeren af filen om at dele filen med dig påny.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Gendannelsesnøglen er en ekstra krypteringsnøgle, der bruges til at kryptere filer. Den tillader gendannelse af en brugers filer, hvis brugeren glemmer sin adgangskode.",
"Your private key password no longer matches your log-in password.":"Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord.",
"Set your old private key password to your current log-in password:":"Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. ",
" If you don't remember your old password you can ask your administrator to recover your files.":"Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord",
"Missing recovery key password":"Schlüsselpasswort zur Wiederherstellung fehlt",
"Please repeat the recovery key password":"Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
"Repeated recovery key password does not match the provided recovery key password":"Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
"Recovery key successfully enabled":"Wiederherstellungsschlüssel wurde erfolgreich aktiviert",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
"Could not enable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
"Missing parameters":"Fehlende Parameter",
"Please provide the old recovery password":"Bitte das alte Passwort zur Wiederherstellung eingeben",
"Please provide a new recovery password":"Bitte das alte Passwort zur Wiederherstellung eingeben",
"Please repeat the new recovery password":"Bitte das neue Passwort zur Wiederherstellung wiederholen",
"Password successfully changed.":"Dein Passwort wurde geändert.",
"Could not change the password. Maybe the old password was not correct.":"Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.",
"Could not enable the recovery key, please try again or contact your administrator":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden, bitte versuche es noch einmal oder kontaktiere Deinen Administrator",
"Could not update the private key password.":"Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
"The old password was not correct, please try again.":"Das alte Passwort war nicht korrekt, bitte versuche es noch einmal.",
"The current log-in password was not correct, please try again.":"Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuche es noch einmal.",
"Private key password successfully updated.":"Passwort des privaten Schlüssels erfolgreich aktualisiert",
"File recovery settings updated":"Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert",
"Could not update file recovery":"Dateiwiederherstellung konnte nicht aktualisiert werden",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Dein privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Dein Passwort geändert (z.B. in Deinem gemeinsamen Verzeichnis). Du kannst das Passwort Deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Deine Dateien zu gelangen.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Dateibesitzer, ob er die Datei nochmals mit Dir teilt.",
"Unknown error. Please check your system settings or contact your administrator":"Unbekannter Fehler. Bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator",
"Initial encryption started... This can take some time. Please wait.":"Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten.",
"Initial encryption running... Please try again later.":"Anfangsverschlüsselung läuft … Bitte versuche es später wieder.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Bitte stelle sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
"Following users are not set up for encryption:":"Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
"Go directly to your %spersonal settings%s.":"Direkt zu Deinen %spersonal settings%s wechseln.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Du musst Deine Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führe 'occ encryption:migrate' aus oder kontaktiere Deinen Administrator.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melde Dich nochmals ab und wieder an.",
"Enable recovery key (allow to recover users files in case of password loss):":"Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):",
"Encryption App is enabled and ready":"Verschlüsselungs-App ist aktiviert und bereit",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Der Wiederherstellungsschlüssel ist ein zusätzlicher Verschlüsselungsschlüssel, der zum Verschlüsseln von Dateien benutzt wird. Er erlaubt die Wiederherstellung von Benutzerdateien auch dann, wenn der Benutzer sein oder ihr Passwort vergessen hat.",
"Your private key password no longer matches your log-in password.":"Dein Passwort für Deinen privaten Schlüssel stimmt nicht mehr mit Deinem Loginpasswort überein.",
"Set your old private key password to your current log-in password:":"Dein altes Passwort für Deinen privaten Schlüssel auf Dein aktuelles Anmeldepasswort einstellen:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Wenn Du Dein altes Passwort vergessen hast, könntest Du Deinen Administrator bitten, Deine Daten wiederherzustellen.",
@@ -48,6 +45,8 @@ OC.L10N.register(
"Current log-in password":"Aktuelles Passwort",
"Update Private Key Password":"Passwort für den privaten Schlüssel aktualisieren",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst",
"Missing recovery key password":"Schlüsselpasswort zur Wiederherstellung fehlt",
"Please repeat the recovery key password":"Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
"Repeated recovery key password does not match the provided recovery key password":"Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
"Recovery key successfully enabled":"Wiederherstellungsschlüssel wurde erfolgreich aktiviert",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
"Could not enable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
"Missing parameters":"Fehlende Parameter",
"Please provide the old recovery password":"Bitte das alte Passwort zur Wiederherstellung eingeben",
"Please provide a new recovery password":"Bitte das alte Passwort zur Wiederherstellung eingeben",
"Please repeat the new recovery password":"Bitte das neue Passwort zur Wiederherstellung wiederholen",
"Password successfully changed.":"Dein Passwort wurde geändert.",
"Could not change the password. Maybe the old password was not correct.":"Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.",
"Could not enable the recovery key, please try again or contact your administrator":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden, bitte versuche es noch einmal oder kontaktiere Deinen Administrator",
"Could not update the private key password.":"Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
"The old password was not correct, please try again.":"Das alte Passwort war nicht korrekt, bitte versuche es noch einmal.",
"The current log-in password was not correct, please try again.":"Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuche es noch einmal.",
"Private key password successfully updated.":"Passwort des privaten Schlüssels erfolgreich aktualisiert",
"File recovery settings updated":"Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert",
"Could not update file recovery":"Dateiwiederherstellung konnte nicht aktualisiert werden",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Dein privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Dein Passwort geändert (z.B. in Deinem gemeinsamen Verzeichnis). Du kannst das Passwort Deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Deine Dateien zu gelangen.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Dateibesitzer, ob er die Datei nochmals mit Dir teilt.",
"Unknown error. Please check your system settings or contact your administrator":"Unbekannter Fehler. Bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator",
"Initial encryption started... This can take some time. Please wait.":"Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten.",
"Initial encryption running... Please try again later.":"Anfangsverschlüsselung läuft … Bitte versuche es später wieder.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Bitte stelle sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
"Following users are not set up for encryption:":"Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
"Go directly to your %spersonal settings%s.":"Direkt zu Deinen %spersonal settings%s wechseln.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Du musst Deine Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führe 'occ encryption:migrate' aus oder kontaktiere Deinen Administrator.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melde Dich nochmals ab und wieder an.",
"Enable recovery key (allow to recover users files in case of password loss):":"Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):",
"Encryption App is enabled and ready":"Verschlüsselungs-App ist aktiviert und bereit",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Der Wiederherstellungsschlüssel ist ein zusätzlicher Verschlüsselungsschlüssel, der zum Verschlüsseln von Dateien benutzt wird. Er erlaubt die Wiederherstellung von Benutzerdateien auch dann, wenn der Benutzer sein oder ihr Passwort vergessen hat.",
"Your private key password no longer matches your log-in password.":"Dein Passwort für Deinen privaten Schlüssel stimmt nicht mehr mit Deinem Loginpasswort überein.",
"Set your old private key password to your current log-in password:":"Dein altes Passwort für Deinen privaten Schlüssel auf Dein aktuelles Anmeldepasswort einstellen:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Wenn Du Dein altes Passwort vergessen hast, könntest Du Deinen Administrator bitten, Deine Daten wiederherzustellen.",
@@ -46,6 +43,8 @@
"Current log-in password":"Aktuelles Passwort",
"Update Private Key Password":"Passwort für den privaten Schlüssel aktualisieren",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst",
"Missing recovery key password":"Schlüsselpasswort zur Wiederherstellung fehlt",
"Please repeat the recovery key password":"Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
"Repeated recovery key password does not match the provided recovery key password":"Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
"Recovery key successfully enabled":"Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
"Could not enable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
"Recovery key successfully disabled":"Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
"Missing parameters":"Fehlende Parameter",
"Please provide the old recovery password":"Bitte das alte Passwort zur Wiederherstellung eingeben",
"Please provide a new recovery password":"Bitte das neue Passwort zur Wiederherstellung eingeben",
"Please repeat the new recovery password":"Bitte das neue Passwort zur Wiederherstellung wiederholen",
"Password successfully changed.":"Das Passwort wurde erfolgreich geändert.",
"Could not change the password. Maybe the old password was not correct.":"Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.",
"Could not enable the recovery key, please try again or contact your administrator":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden, bitte versuchen Sie es noch einmal oder kontaktieren Sie Ihren Administrator",
"Could not update the private key password.":"Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
"The old password was not correct, please try again.":"Das alte Passwort war nicht korrekt, bitte versuchen Sie es noch einmal.",
"The current log-in password was not correct, please try again.":"Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuchen Sie es noch einmal.",
"Private key password successfully updated.":"Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.",
"File recovery settings updated":"Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
"Could not update file recovery":"Die Dateiwiederherstellung konnte nicht aktualisiert werden.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Dateibesitzer, dass er die Datei nochmals mit Ihnen teilt.",
"Unknown error. Please check your system settings or contact your administrator":"Unbekannter Fehler. Bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator",
"Initial encryption started... This can take some time. Please wait.":"Anfangsverschlüsselung gestartet … Dieses kann einige Zeit dauern. Bitte warten.",
"Initial encryption running... Please try again later.":"Anfangsverschlüsselung läuft … Bitte versuchen Sie es später wieder.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Bitte stellen Sie sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
"Following users are not set up for encryption:":"Für folgende Benutzer ist keine Verschlüsselung eingerichtet:",
"Go directly to your %spersonal settings%s.":"Wechseln Sie direkt zu Ihren %spersonal settings%s.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führen Sie 'occ encryption:migrate' aus oder kontaktieren Sie Ihren Administrator.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ungültiger privater Schlüssel für die Verschlüsselungs-App. Bitte aktualisieren Sie Ihr privates Schlüsselpasswort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte nochmals ab- und wieder anmelden.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht):",
"Encryption App is enabled and ready":"Verschlüsselungs-App ist aktiviert und bereit",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Der Wiederherstellungsschlüssel ist ein zusätzlicher Verschlüsselungsschlüssel, der zum Verschlüsseln von Dateien benutzt wird. Er erlaubt die Wiederherstellung von Benutzerdateien auch dann, wenn der Benutzer sein Passwort vergessen hat.",
"Your private key password no longer matches your log-in password.":"Das Privatschlüsselpasswort stimmt nicht länger mit dem Anmeldepasswort überein.",
"Set your old private key password to your current log-in password:":"Ihr altes Privatschlüsselpasswort auf Ihr aktuelles Anmeldepasswort stellen:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben.",
"Missing recovery key password":"Schlüsselpasswort zur Wiederherstellung fehlt",
"Please repeat the recovery key password":"Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
"Repeated recovery key password does not match the provided recovery key password":"Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
"Recovery key successfully enabled":"Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
"Could not enable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
"Recovery key successfully disabled":"Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.",
"Could not disable recovery key. Please check your recovery key password!":"Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
"Missing parameters":"Fehlende Parameter",
"Please provide the old recovery password":"Bitte das alte Passwort zur Wiederherstellung eingeben",
"Please provide a new recovery password":"Bitte das neue Passwort zur Wiederherstellung eingeben",
"Please repeat the new recovery password":"Bitte das neue Passwort zur Wiederherstellung wiederholen",
"Password successfully changed.":"Das Passwort wurde erfolgreich geändert.",
"Could not change the password. Maybe the old password was not correct.":"Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.",
"Could not enable the recovery key, please try again or contact your administrator":"Der Wiederherstellungsschlüssel konnte nicht aktiviert werden, bitte versuchen Sie es noch einmal oder kontaktieren Sie Ihren Administrator",
"Could not update the private key password.":"Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
"The old password was not correct, please try again.":"Das alte Passwort war nicht korrekt, bitte versuchen Sie es noch einmal.",
"The current log-in password was not correct, please try again.":"Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuchen Sie es noch einmal.",
"Private key password successfully updated.":"Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.",
"File recovery settings updated":"Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
"Could not update file recovery":"Die Dateiwiederherstellung konnte nicht aktualisiert werden.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Dateibesitzer, dass er die Datei nochmals mit Ihnen teilt.",
"Unknown error. Please check your system settings or contact your administrator":"Unbekannter Fehler. Bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator",
"Initial encryption started... This can take some time. Please wait.":"Anfangsverschlüsselung gestartet … Dieses kann einige Zeit dauern. Bitte warten.",
"Initial encryption running... Please try again later.":"Anfangsverschlüsselung läuft … Bitte versuchen Sie es später wieder.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Bitte stellen Sie sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
"Following users are not set up for encryption:":"Für folgende Benutzer ist keine Verschlüsselung eingerichtet:",
"Go directly to your %spersonal settings%s.":"Wechseln Sie direkt zu Ihren %spersonal settings%s.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führen Sie 'occ encryption:migrate' aus oder kontaktieren Sie Ihren Administrator.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ungültiger privater Schlüssel für die Verschlüsselungs-App. Bitte aktualisieren Sie Ihr privates Schlüsselpasswort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte nochmals ab- und wieder anmelden.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht):",
"Encryption App is enabled and ready":"Verschlüsselungs-App ist aktiviert und bereit",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Der Wiederherstellungsschlüssel ist ein zusätzlicher Verschlüsselungsschlüssel, der zum Verschlüsseln von Dateien benutzt wird. Er erlaubt die Wiederherstellung von Benutzerdateien auch dann, wenn der Benutzer sein Passwort vergessen hat.",
"Your private key password no longer matches your log-in password.":"Das Privatschlüsselpasswort stimmt nicht länger mit dem Anmeldepasswort überein.",
"Set your old private key password to your current log-in password:":"Ihr altes Privatschlüsselpasswort auf Ihr aktuelles Anmeldepasswort stellen:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben.",
"Missing recovery key password":"Λείπει το κλειδί επαναφοράς κωδικού",
"Please repeat the recovery key password":"Παρακαλώ επαναλάβετε το κλειδί επαναφοράς κωδικού",
"Repeated recovery key password does not match the provided recovery key password":"Η επανάληψη του κλειδιού επαναφοράς κωδικού δεν ταιριάζει με το δοσμένο κλειδί επαναφοράς κωδικού",
"Could not enable the recovery key, please try again or contact your administrator":"Αδυναμία ενεργοποίησης κλειδιού ανάκτησης, παρακαλούμε προσπαθήστε αργότερα ή επικοινωνήστε με το διαχειριστή σας",
"Could not update the private key password.":"Αποτυχία ενημέρωσης του προσωπικού κλειδιού πρόσβασης",
"The old password was not correct, please try again.":"Το παλαιό συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
"The current log-in password was not correct, please try again.":"Το τρέχον συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
"Could not update file recovery":"Αποτυχία ενημέρωσης ανάκτησης αρχείων",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Η εφαρμογή κρυπτογράφησης δεν έχει εκκινήσει! Ίσως η εφαρμογή κρυπτογράφησης επανενεργοποιήθηκε κατά τη διάρκεια της τρέχουσας σύνδεσής σας. Παρακαλώ προσπαθήστε να αποσυνδεθείτε και να ξανασυνδεθείτε για να εκκινήσετε την εφαρμογή κρυπτογράφησης.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.",
"Unknown error. Please check your system settings or contact your administrator":"Άγνωστο σφάλμα. Παρακαλώ ελέγξτε τις ρυθμίσεις του συστήματό σας ή επικοινωνήστε με τον διαχειριστή συστημάτων σας",
"Initial encryption started... This can take some time. Please wait.":"Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.",
"Missing requirements.":"Προαπαιτούμενα που απουσιάζουν.",
"Following users are not set up for encryption:":"Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:",
"Go directly to your %spersonal settings%s.":"Πηγαίνετε κατ'ευθείαν στις %sπροσωπικές ρυθμίσεις%s σας.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε εκτελέστε την εντολή 'occ encryption:migrate' ή επικοινωνήστε με το διαχειριστή σας.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.",
"Enable recovery key (allow to recover users files in case of password loss):":"Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):",
"Encryption App is enabled and ready":"Η Εφαρμογή Κρυπτογράφησης είναι ενεργοποιημένη και έτοιμη.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Αδυναμία ανάγνωσης αυτού του αρχείου, πιθανό να είναι διαμοιραζόμενο αρχείο. Παρακαλώ ρωτήστε τον κάτοχο του αρχείου να το διαμοιράσει ξανά μαζί σας.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Το κλειδί ανάκτησης είναι ένα επιπλέον κλειδί κρυπτογράφησης που χρησιμοποιείται για να κρυπτογραφήσει αρχεία. Επιτρέπει την ανάκτηση των αρχείων ενός χρήστη αν αυτός/αυτή ξεχάσει τον κωδικό πρόσβασης.",
"New recovery key password":"Νέος κωδικός κλειδιού ανάκτησης",
"Repeat new recovery key password":"Επαναλάβετε το νέο κωδικό κλειδιού ανάκτησης",
"Change Password":"Αλλαγή Κωδικού Πρόσβασης",
"ownCloud basic encryption module":"Βασική μονάδα κρυπτογράφησης του ",
"Your private key password no longer matches your log-in password.":"Ο κωδικός του ιδιωτικού κλειδιού σας δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας.",
"Set your old private key password to your current log-in password:":"Ορίστε τον παλιό σας κωδικό ιδιωτικού κλειδιού στον τρέχοντα κωδικό σύνδεσης.",
" If you don't remember your old password you can ask your administrator to recover your files.":"Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας.",
"Enable password recovery:":"Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας",
"Missing recovery key password":"Λείπει το κλειδί επαναφοράς κωδικού",
"Please repeat the recovery key password":"Παρακαλώ επαναλάβετε το κλειδί επαναφοράς κωδικού",
"Repeated recovery key password does not match the provided recovery key password":"Η επανάληψη του κλειδιού επαναφοράς κωδικού δεν ταιριάζει με το δοσμένο κλειδί επαναφοράς κωδικού",
"Could not enable the recovery key, please try again or contact your administrator":"Αδυναμία ενεργοποίησης κλειδιού ανάκτησης, παρακαλούμε προσπαθήστε αργότερα ή επικοινωνήστε με το διαχειριστή σας",
"Could not update the private key password.":"Αποτυχία ενημέρωσης του προσωπικού κλειδιού πρόσβασης",
"The old password was not correct, please try again.":"Το παλαιό συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
"The current log-in password was not correct, please try again.":"Το τρέχον συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
"Could not update file recovery":"Αποτυχία ενημέρωσης ανάκτησης αρχείων",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Η εφαρμογή κρυπτογράφησης δεν έχει εκκινήσει! Ίσως η εφαρμογή κρυπτογράφησης επανενεργοποιήθηκε κατά τη διάρκεια της τρέχουσας σύνδεσής σας. Παρακαλώ προσπαθήστε να αποσυνδεθείτε και να ξανασυνδεθείτε για να εκκινήσετε την εφαρμογή κρυπτογράφησης.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.",
"Unknown error. Please check your system settings or contact your administrator":"Άγνωστο σφάλμα. Παρακαλώ ελέγξτε τις ρυθμίσεις του συστήματό σας ή επικοινωνήστε με τον διαχειριστή συστημάτων σας",
"Initial encryption started... This can take some time. Please wait.":"Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.",
"Missing requirements.":"Προαπαιτούμενα που απουσιάζουν.",
"Following users are not set up for encryption:":"Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:",
"Go directly to your %spersonal settings%s.":"Πηγαίνετε κατ'ευθείαν στις %sπροσωπικές ρυθμίσεις%s σας.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε εκτελέστε την εντολή 'occ encryption:migrate' ή επικοινωνήστε με το διαχειριστή σας.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.",
"Enable recovery key (allow to recover users files in case of password loss):":"Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):",
"Encryption App is enabled and ready":"Η Εφαρμογή Κρυπτογράφησης είναι ενεργοποιημένη και έτοιμη.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Αδυναμία ανάγνωσης αυτού του αρχείου, πιθανό να είναι διαμοιραζόμενο αρχείο. Παρακαλώ ρωτήστε τον κάτοχο του αρχείου να το διαμοιράσει ξανά μαζί σας.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Το κλειδί ανάκτησης είναι ένα επιπλέον κλειδί κρυπτογράφησης που χρησιμοποιείται για να κρυπτογραφήσει αρχεία. Επιτρέπει την ανάκτηση των αρχείων ενός χρήστη αν αυτός/αυτή ξεχάσει τον κωδικό πρόσβασης.",
"New recovery key password":"Νέος κωδικός κλειδιού ανάκτησης",
"Repeat new recovery key password":"Επαναλάβετε το νέο κωδικό κλειδιού ανάκτησης",
"Change Password":"Αλλαγή Κωδικού Πρόσβασης",
"ownCloud basic encryption module":"Βασική μονάδα κρυπτογράφησης του ",
"Your private key password no longer matches your log-in password.":"Ο κωδικός του ιδιωτικού κλειδιού σας δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας.",
"Set your old private key password to your current log-in password:":"Ορίστε τον παλιό σας κωδικό ιδιωτικού κλειδιού στον τρέχοντα κωδικό σύνδεσης.",
" If you don't remember your old password you can ask your administrator to recover your files.":"Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας.",
"Enable password recovery:":"Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας",
"Please repeat the recovery key password":"Please repeat the recovery key password",
"Repeated recovery key password does not match the provided recovery key password":"Repeated recovery key password does not match the provided recovery key password",
"Could not change the password. Maybe the old password was not correct.":"Could not change the password. Maybe the old password was incorrect.",
"Recovery Key disabled":"Recovery Key disabled",
"Recovery Key enabled":"Recovery Key enabled",
"Could not enable the recovery key, please try again or contact your administrator":"Could not enable the recovery key, please try again or contact your administrator",
"Could not update the private key password.":"Could not update the private key password.",
"The old password was not correct, please try again.":"The old password was not correct, please try again.",
"The current log-in password was not correct, please try again.":"The current log-in password was not correct, please try again.",
"Could not update file recovery":"Could not update file recovery",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.",
"Unknown error. Please check your system settings or contact your administrator":"Unknown error. Please check your system settings or contact your administrator",
"Initial encryption started... This can take some time. Please wait.":"Initial encryption started... This can take some time. Please wait.",
"Initial encryption running... Please try again later.":"Initial encryption running... Please try again later.",
"Missing requirements.":"Missing requirements.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Please make sure that OpenSSL together with the PHP extension is enabled and properly configured. For now, the encryption app has been disabled.",
"Following users are not set up for encryption:":"Following users are not set up for encryption:",
"Go directly to your %spersonal settings%s.":"Go directly to your %spersonal settings%s.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Encryption App is enabled but your keys are not initialised, please log-out and log-in again",
"Enable recovery key (allow to recover users files in case of password loss):":"Enable recovery key (allow to recover users files in case of password loss):",
"Encryption App is enabled and ready":"Encryption App is enabled and ready",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.",
"Enable recovery key":"Enable recovery key",
"Disable recovery key":"Disable recovery key",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.",
"Your private key password no longer matches your log-in password.":"Your private key password no longer matches your log-in password.",
"Set your old private key password to your current log-in password:":"Set your old private key password to your current log-in password:",
" If you don't remember your old password you can ask your administrator to recover your files.":" If you don't remember your old password you can ask your administrator to recover your files.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss",
"Please repeat the recovery key password":"Please repeat the recovery key password",
"Repeated recovery key password does not match the provided recovery key password":"Repeated recovery key password does not match the provided recovery key password",
"Could not change the password. Maybe the old password was not correct.":"Could not change the password. Maybe the old password was incorrect.",
"Recovery Key disabled":"Recovery Key disabled",
"Recovery Key enabled":"Recovery Key enabled",
"Could not enable the recovery key, please try again or contact your administrator":"Could not enable the recovery key, please try again or contact your administrator",
"Could not update the private key password.":"Could not update the private key password.",
"The old password was not correct, please try again.":"The old password was not correct, please try again.",
"The current log-in password was not correct, please try again.":"The current log-in password was not correct, please try again.",
"Could not update file recovery":"Could not update file recovery",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.",
"Unknown error. Please check your system settings or contact your administrator":"Unknown error. Please check your system settings or contact your administrator",
"Initial encryption started... This can take some time. Please wait.":"Initial encryption started... This can take some time. Please wait.",
"Initial encryption running... Please try again later.":"Initial encryption running... Please try again later.",
"Missing requirements.":"Missing requirements.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Please make sure that OpenSSL together with the PHP extension is enabled and properly configured. For now, the encryption app has been disabled.",
"Following users are not set up for encryption:":"Following users are not set up for encryption:",
"Go directly to your %spersonal settings%s.":"Go directly to your %spersonal settings%s.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Encryption App is enabled but your keys are not initialised, please log-out and log-in again",
"Enable recovery key (allow to recover users files in case of password loss):":"Enable recovery key (allow to recover users files in case of password loss):",
"Encryption App is enabled and ready":"Encryption App is enabled and ready",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.",
"Enable recovery key":"Enable recovery key",
"Disable recovery key":"Disable recovery key",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.",
"Your private key password no longer matches your log-in password.":"Your private key password no longer matches your log-in password.",
"Set your old private key password to your current log-in password:":"Set your old private key password to your current log-in password:",
" If you don't remember your old password you can ask your administrator to recover your files.":" If you don't remember your old password you can ask your administrator to recover your files.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss",
"Missing recovery key password":"Falta contraseña de recuperación",
"Please repeat the recovery key password":"Por favor, repita la contraseña de recuperación",
"Repeated recovery key password does not match the provided recovery key password":"La contraseña de recuperación reintroducida no coincide con la contraseña de recuperación proporcionada",
"Recovery key successfully enabled":"Se ha habilitado la recuperación de archivos",
"Could not enable recovery key. Please check your recovery key password!":"No se pudo habilitar la contraseña de recuperación. Por favor, ¡compruebe su contraseña de recuperación!",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"No se pudo deshabilitar la clave de recuperación. Por favor, ¡compruebe su contraseña!",
"Missing parameters":"Faltan parámetros",
"Please provide the old recovery password":"Por favor, ingrese su antigua contraseña de recuperación",
"Please provide a new recovery password":"Por favor, provea una nueva contraseña de recuperación",
"Please repeat the new recovery password":"Por favor, repita su nueva contraseña de recuperación",
"Password successfully changed.":"Su contraseña ha sido cambiada",
"Could not change the password. Maybe the old password was not correct.":"No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
"Recovery Key disabled":"Desactivada la clave de recuperación",
"Recovery Key enabled":"Recuperación de clave habilitada",
"Could not enable the recovery key, please try again or contact your administrator":"No se pudo habilitar la clave de recuperación, por favor vuelva a intentarlo o póngase en contacto con su administrador",
"Could not update the private key password.":"No se pudo actualizar la contraseña de la clave privada.",
"The old password was not correct, please try again.":"La antigua contraseña no es correcta, por favor inténtelo de nuevo.",
"The current log-in password was not correct, please try again.":"La contraseña de inicio de sesión actual no es correcta, por favor inténtelo de nuevo.",
"Private key password successfully updated.":"Contraseña de clave privada actualizada con éxito.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Necesita migrar sus claves de cifrado desde el antiguo modelo de cifrado (ownCloud <= 8.0) al nuevo. Por favor ejecute 'occ encryption:migrate' o contáctese con su administrador.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo.",
"Encryption App is enabled and ready":"Cifrado App está habilitada y lista",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No se puede leer este archivo, probablemente sea un archivo compartido. Consulte con el propietario del mismo y que lo vuelva a compartir con usted.",
"Enable recovery key":"Activa la clave de recuperación",
"Disable recovery key":"Desactiva la clave de recuperación",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"La clave de recuperación es una clave de cifrado extra que se usa para cifrar ficheros. Permite la recuperación de los ficheros de un usuario si él o ella olvida su contraseña.",
"Recovery key password":"Contraseña de clave de recuperación",
"Repeat recovery key password":"Repita la contraseña de recuperación",
"Change recovery key password:":"Cambiar la contraseña de la clave de recuperación",
"Old recovery key password":"Antigua contraseña de recuperación",
"New recovery key password":"Nueva contraseña de recuperación",
"Repeat new recovery key password":"Repita la nueva contraseña de recuperación",
"Change Password":"Cambiar contraseña",
"ownCloud basic encryption module":"Módulo básico de cifrado ownCloud",
"Your private key password no longer matches your log-in password.":"Su contraseña de clave privada ya no coincide con su contraseña de acceso.",
"Set your old private key password to your current log-in password:":"Establezca la contraseña de clave privada antigua para su contraseña de inicio de sesión actual:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros.",
"Old log-in password":"Contraseña de acceso antigua",
"Current log-in password":"Contraseña de acceso actual",
"Update Private Key Password":"Actualizar contraseña de clave privada",
"Enable password recovery:":"Habilitar la recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña",
"Missing recovery key password":"Falta contraseña de recuperación",
"Please repeat the recovery key password":"Por favor, repita la contraseña de recuperación",
"Repeated recovery key password does not match the provided recovery key password":"La contraseña de recuperación reintroducida no coincide con la contraseña de recuperación proporcionada",
"Recovery key successfully enabled":"Se ha habilitado la recuperación de archivos",
"Could not enable recovery key. Please check your recovery key password!":"No se pudo habilitar la contraseña de recuperación. Por favor, ¡compruebe su contraseña de recuperación!",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"No se pudo deshabilitar la clave de recuperación. Por favor, ¡compruebe su contraseña!",
"Missing parameters":"Faltan parámetros",
"Please provide the old recovery password":"Por favor, ingrese su antigua contraseña de recuperación",
"Please provide a new recovery password":"Por favor, provea una nueva contraseña de recuperación",
"Please repeat the new recovery password":"Por favor, repita su nueva contraseña de recuperación",
"Password successfully changed.":"Su contraseña ha sido cambiada",
"Could not change the password. Maybe the old password was not correct.":"No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
"Recovery Key disabled":"Desactivada la clave de recuperación",
"Recovery Key enabled":"Recuperación de clave habilitada",
"Could not enable the recovery key, please try again or contact your administrator":"No se pudo habilitar la clave de recuperación, por favor vuelva a intentarlo o póngase en contacto con su administrador",
"Could not update the private key password.":"No se pudo actualizar la contraseña de la clave privada.",
"The old password was not correct, please try again.":"La antigua contraseña no es correcta, por favor inténtelo de nuevo.",
"The current log-in password was not correct, please try again.":"La contraseña de inicio de sesión actual no es correcta, por favor inténtelo de nuevo.",
"Private key password successfully updated.":"Contraseña de clave privada actualizada con éxito.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Necesita migrar sus claves de cifrado desde el antiguo modelo de cifrado (ownCloud <= 8.0) al nuevo. Por favor ejecute 'occ encryption:migrate' o contáctese con su administrador.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo.",
"Encryption App is enabled and ready":"Cifrado App está habilitada y lista",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No se puede leer este archivo, probablemente sea un archivo compartido. Consulte con el propietario del mismo y que lo vuelva a compartir con usted.",
"Enable recovery key":"Activa la clave de recuperación",
"Disable recovery key":"Desactiva la clave de recuperación",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"La clave de recuperación es una clave de cifrado extra que se usa para cifrar ficheros. Permite la recuperación de los ficheros de un usuario si él o ella olvida su contraseña.",
"Recovery key password":"Contraseña de clave de recuperación",
"Repeat recovery key password":"Repita la contraseña de recuperación",
"Change recovery key password:":"Cambiar la contraseña de la clave de recuperación",
"Old recovery key password":"Antigua contraseña de recuperación",
"New recovery key password":"Nueva contraseña de recuperación",
"Repeat new recovery key password":"Repita la nueva contraseña de recuperación",
"Change Password":"Cambiar contraseña",
"ownCloud basic encryption module":"Módulo básico de cifrado ownCloud",
"Your private key password no longer matches your log-in password.":"Su contraseña de clave privada ya no coincide con su contraseña de acceso.",
"Set your old private key password to your current log-in password:":"Establezca la contraseña de clave privada antigua para su contraseña de inicio de sesión actual:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros.",
"Old log-in password":"Contraseña de acceso antigua",
"Current log-in password":"Contraseña de acceso actual",
"Update Private Key Password":"Actualizar contraseña de clave privada",
"Enable password recovery:":"Habilitar la recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña",
"Recovery key successfully enabled":"Se habilitó la recuperación de archivos",
"Could not enable recovery key. Please check your recovery key password!":"No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña.",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"No fue posible deshabilitar la clave de recuperación. Por favor, comprobá tu contraseña.",
"Password successfully changed.":"Tu contraseña fue cambiada",
"Could not change the password. Maybe the old password was not correct.":"No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.",
"Private key password successfully updated.":"Contraseña de clave privada actualizada con éxito.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Llave privada inválida para la aplicación de encriptación. Por favor actualice la clave de la llave privada en las configuraciones personales para recobrar el acceso a sus archivos encriptados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No se puede descibrar este archivo, probablemente sea un archivo compartido. Por favor pídele al dueño que recomparta el archivo contigo.",
"Recovery key password":"Contraseña de recuperación de clave",
"Change recovery key password:":"Cambiar contraseña para recuperar la clave:",
"Change Password":"Cambiar contraseña",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos",
"Old log-in password":"Contraseña anterior",
"Current log-in password":"Contraseña actual",
"Update Private Key Password":"Actualizar contraseña de la clave privada",
"Enable password recovery:":"Habilitar recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña",
"Recovery key successfully enabled":"Se habilitó la recuperación de archivos",
"Could not enable recovery key. Please check your recovery key password!":"No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña.",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"No fue posible deshabilitar la clave de recuperación. Por favor, comprobá tu contraseña.",
"Password successfully changed.":"Tu contraseña fue cambiada",
"Could not change the password. Maybe the old password was not correct.":"No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.",
"Private key password successfully updated.":"Contraseña de clave privada actualizada con éxito.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Llave privada inválida para la aplicación de encriptación. Por favor actualice la clave de la llave privada en las configuraciones personales para recobrar el acceso a sus archivos encriptados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No se puede descibrar este archivo, probablemente sea un archivo compartido. Por favor pídele al dueño que recomparta el archivo contigo.",
"Recovery key password":"Contraseña de recuperación de clave",
"Change recovery key password:":"Cambiar contraseña para recuperar la clave:",
"Change Password":"Cambiar contraseña",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos",
"Old log-in password":"Contraseña anterior",
"Current log-in password":"Contraseña actual",
"Update Private Key Password":"Actualizar contraseña de la clave privada",
"Enable password recovery:":"Habilitar recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña",
"Recovery key successfully enabled":"Se ha habilitado la recuperación de archivos",
"Could not disable recovery key. Please check your recovery key password!":"No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!",
"Could not enable recovery key. Please check your recovery key password!":"No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!",
"Password successfully changed.":"Su contraseña ha sido cambiada",
"Could not change the password. Maybe the old password was not correct.":"No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
"Private key password successfully updated.":"Contraseña de clave privada actualizada con éxito.",
"File recovery settings updated":"Opciones de recuperación de archivos actualizada",
"Could not update file recovery":"No se pudo actualizar la recuperación de archivos",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
"Initial encryption started... This can take some time. Please wait.":"Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.",
"Following users are not set up for encryption:":"Los siguientes usuarios no han sido configurados para el cifrado:",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.",
"Enable recovery key (allow to recover users files in case of password loss):":"Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
"Recovery key password":"Contraseña de clave de recuperación",
"Repeat Recovery key password":"Repite la contraseña de clave de recuperación",
"Enabled":"Habilitar",
"Disabled":"Deshabilitado",
"Change recovery key password:":"Cambiar la contraseña de la clave de recuperación",
"Old Recovery key password":"Antigua clave de recuperación",
"New Recovery key password":"Nueva clave de recuperación",
"Repeat New Recovery key password":"Repetir la nueva clave de recuperación",
"Change Password":"Cambiar contraseña",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos.",
"Old log-in password":"Contraseña de acceso antigua",
"Current log-in password":"Contraseña de acceso actual",
"Update Private Key Password":"Actualizar Contraseña de Clave Privada",
"Enable password recovery:":"Habilitar la recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña",
"Recovery key successfully enabled":"Se ha habilitado la recuperación de archivos",
"Could not disable recovery key. Please check your recovery key password!":"No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!",
"Could not enable recovery key. Please check your recovery key password!":"No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.",
"Recovery key successfully disabled":"Clave de recuperación deshabilitada",
"Could not disable recovery key. Please check your recovery key password!":"No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!",
"Password successfully changed.":"Su contraseña ha sido cambiada",
"Could not change the password. Maybe the old password was not correct.":"No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
"Private key password successfully updated.":"Contraseña de clave privada actualizada con éxito.",
"File recovery settings updated":"Opciones de recuperación de archivos actualizada",
"Could not update file recovery":"No se pudo actualizar la recuperación de archivos",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
"Initial encryption started... This can take some time. Please wait.":"Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.",
"Following users are not set up for encryption:":"Los siguientes usuarios no han sido configurados para el cifrado:",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.",
"Enable recovery key (allow to recover users files in case of password loss):":"Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
"Recovery key password":"Contraseña de clave de recuperación",
"Repeat Recovery key password":"Repite la contraseña de clave de recuperación",
"Enabled":"Habilitar",
"Disabled":"Deshabilitado",
"Change recovery key password:":"Cambiar la contraseña de la clave de recuperación",
"Old Recovery key password":"Antigua clave de recuperación",
"New Recovery key password":"Nueva clave de recuperación",
"Repeat New Recovery key password":"Repetir la nueva clave de recuperación",
"Change Password":"Cambiar contraseña",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos.",
"Old log-in password":"Contraseña de acceso antigua",
"Current log-in password":"Contraseña de acceso actual",
"Update Private Key Password":"Actualizar Contraseña de Clave Privada",
"Enable password recovery:":"Habilitar la recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña",
"Could not update file recovery":"Ei suuda uuendada taastefaili",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Sinu provaatne võti pole kehtiv! Tõenäoliselt mudueti parooli väljaspool kausta %s (nt. sinu ettevõtte kaust). Sa saad uuendada oma privaatse võtme parooli oma isiklikes seadetes, et taastada ligipääs sinu krüpteeritud failidele.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.",
"Unknown error. Please check your system settings or contact your administrator":"Tundmatu viga. Palun võta ühendust oma administraatoriga.",
"Initial encryption started... This can take some time. Please wait.":"Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota.",
"Initial encryption running... Please try again later.":"Toimub esmane krüpteerimine... Palun proovi hiljem uuesti.",
"Missing requirements.":"Nõutavad on puudu.",
"Following users are not set up for encryption:":"Järgmised kasutajad pole seadistatud krüpteeringuks:",
"Go directly to your %spersonal settings%s.":"Liigi otse oma %s isiklike seadete %s juurde.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.",
"Enable recovery key (allow to recover users files in case of password loss):":"Luba taastevõti (võimalda kasutaja failide taastamine parooli kaotuse puhul):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul",
"Could not update file recovery":"Ei suuda uuendada taastefaili",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Sinu provaatne võti pole kehtiv! Tõenäoliselt mudueti parooli väljaspool kausta %s (nt. sinu ettevõtte kaust). Sa saad uuendada oma privaatse võtme parooli oma isiklikes seadetes, et taastada ligipääs sinu krüpteeritud failidele.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.",
"Unknown error. Please check your system settings or contact your administrator":"Tundmatu viga. Palun võta ühendust oma administraatoriga.",
"Initial encryption started... This can take some time. Please wait.":"Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota.",
"Initial encryption running... Please try again later.":"Toimub esmane krüpteerimine... Palun proovi hiljem uuesti.",
"Missing requirements.":"Nõutavad on puudu.",
"Following users are not set up for encryption:":"Järgmised kasutajad pole seadistatud krüpteeringuks:",
"Go directly to your %spersonal settings%s.":"Liigi otse oma %s isiklike seadete %s juurde.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.",
"Enable recovery key (allow to recover users files in case of password loss):":"Luba taastevõti (võimalda kasutaja failide taastamine parooli kaotuse puhul):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul",
"Missing recovery key password":"Berreskurapen gakoaren pasahitza falta da",
"Please repeat the recovery key password":"Mesedez errepikatu berreskuratze gakoaren pasahitza",
"Repeated recovery key password does not match the provided recovery key password":"Errepikatutako berreskuratze gakoaren pasahitza ez dator bat berreskuratze gakoaren pasahitzarekin",
"Recovery key successfully enabled":"Berreskuratze gakoa behar bezala gaitua",
"Could not disable recovery key. Please check your recovery key password!":"Ezin da berreskuratze gako desgaitu. Egiaztatu berreskuratze gako pasahitza!",
"Could not enable recovery key. Please check your recovery key password!":"Ezin da berreskuratze gako gaitu. Egiaztatu berreskuratze gako pasahitza!",
"Recovery key successfully disabled":"Berreskuratze gakoa behar bezala desgaitu da",
"Could not disable recovery key. Please check your recovery key password!":"Ezin da berreskuratze gako desgaitu. Egiaztatu berreskuratze gako pasahitza!",
"Please provide the old recovery password":"Mesedez sartu berreskuratze pasahitz zaharra",
"Please provide a new recovery password":"Mesedez sartu berreskuratze pasahitz berria",
"Please repeat the new recovery password":"Mesedez errepikatu berreskuratze pasahitz berria",
@@ -17,29 +17,11 @@ OC.L10N.register(
"The old password was not correct, please try again.":"Pasahitz zaharra ez da egokia. Mesedez, saiatu berriro.",
"The current log-in password was not correct, please try again.":"Oraingo pasahitza ez da egokia. Mesedez, saiatu berriro.",
"Private key password successfully updated.":"Gako pasahitz pribatu behar bezala eguneratu da.",
"Could not update file recovery":"Ezin da fitxategi berreskuratzea eguneratu",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Enkriptazio aplikazioa ez dago hasieratuta! Agian aplikazioa birgaitu egin da zure saioa bitartean. Mesdez atear eta sartu berriz enkriptazio aplikazioa hasierarazteko.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Zure gako pribatua ez da egokia! Seguruaski zure pasahitza %s-tik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.",
"Unknown error. Please check your system settings or contact your administrator":"Errore ezezaguna. Mesedez, egiaztatu zure sistemaren ezarpenak edo jarri zure administrariarekin kontaktuan.",
"Initial encryption started... This can take some time. Please wait.":"Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron.",
"Initial encryption running... Please try again later.":"Hasierako enkriptaketa abian... mesedez, saiatu beranduago.",
"Missing requirements.":"Eskakizun batzuk ez dira betetzen.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Mesedez ziurtatu OpenSSL eta PHP hedapena instaltuta eta ongi konfiguratuta daudela. Oraingoz enkriptazio aplikazioa desgaitua izan da.",
"Following users are not set up for encryption:":"Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:",
"Go directly to your %spersonal settings%s.":"Joan zuzenean zure %sezarpen pertsonaletara%s.",
"Server-side Encryption":"Zerbitzari aldeko enkriptazioa",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi",
"Enable recovery key (allow to recover users files in case of password loss):":"Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.",
"New Recovery key password":"Berreskuratze gako pasahitz berria",
"Repeat New Recovery key password":"Errepikatu berreskuratze gako berriaren pasahitza",
"Change Password":"Aldatu Pasahitza",
"Your private key password no longer matches your log-in password.":"Zure gako pasahitza pribatua ez da dagoeneko bat etortzen zure sartzeko pasahitzarekin.",
"Set your old private key password to your current log-in password:":"Ezarri zure gako pasahitz zaharra orain duzun sartzeko pasahitzan:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan",
"Missing recovery key password":"Berreskurapen gakoaren pasahitza falta da",
"Please repeat the recovery key password":"Mesedez errepikatu berreskuratze gakoaren pasahitza",
"Repeated recovery key password does not match the provided recovery key password":"Errepikatutako berreskuratze gakoaren pasahitza ez dator bat berreskuratze gakoaren pasahitzarekin",
"Recovery key successfully enabled":"Berreskuratze gakoa behar bezala gaitua",
"Could not disable recovery key. Please check your recovery key password!":"Ezin da berreskuratze gako desgaitu. Egiaztatu berreskuratze gako pasahitza!",
"Could not enable recovery key. Please check your recovery key password!":"Ezin da berreskuratze gako gaitu. Egiaztatu berreskuratze gako pasahitza!",
"Recovery key successfully disabled":"Berreskuratze gakoa behar bezala desgaitu da",
"Could not disable recovery key. Please check your recovery key password!":"Ezin da berreskuratze gako desgaitu. Egiaztatu berreskuratze gako pasahitza!",
"Please provide the old recovery password":"Mesedez sartu berreskuratze pasahitz zaharra",
"Please provide a new recovery password":"Mesedez sartu berreskuratze pasahitz berria",
"Please repeat the new recovery password":"Mesedez errepikatu berreskuratze pasahitz berria",
@@ -15,29 +15,11 @@
"The old password was not correct, please try again.":"Pasahitz zaharra ez da egokia. Mesedez, saiatu berriro.",
"The current log-in password was not correct, please try again.":"Oraingo pasahitza ez da egokia. Mesedez, saiatu berriro.",
"Private key password successfully updated.":"Gako pasahitz pribatu behar bezala eguneratu da.",
"Could not update file recovery":"Ezin da fitxategi berreskuratzea eguneratu",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Enkriptazio aplikazioa ez dago hasieratuta! Agian aplikazioa birgaitu egin da zure saioa bitartean. Mesdez atear eta sartu berriz enkriptazio aplikazioa hasierarazteko.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Zure gako pribatua ez da egokia! Seguruaski zure pasahitza %s-tik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.",
"Unknown error. Please check your system settings or contact your administrator":"Errore ezezaguna. Mesedez, egiaztatu zure sistemaren ezarpenak edo jarri zure administrariarekin kontaktuan.",
"Initial encryption started... This can take some time. Please wait.":"Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron.",
"Initial encryption running... Please try again later.":"Hasierako enkriptaketa abian... mesedez, saiatu beranduago.",
"Missing requirements.":"Eskakizun batzuk ez dira betetzen.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Mesedez ziurtatu OpenSSL eta PHP hedapena instaltuta eta ongi konfiguratuta daudela. Oraingoz enkriptazio aplikazioa desgaitua izan da.",
"Following users are not set up for encryption:":"Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:",
"Go directly to your %spersonal settings%s.":"Joan zuzenean zure %sezarpen pertsonaletara%s.",
"Server-side Encryption":"Zerbitzari aldeko enkriptazioa",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi",
"Enable recovery key (allow to recover users files in case of password loss):":"Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.",
"New Recovery key password":"Berreskuratze gako pasahitz berria",
"Repeat New Recovery key password":"Errepikatu berreskuratze gako berriaren pasahitza",
"Change Password":"Aldatu Pasahitza",
"Your private key password no longer matches your log-in password.":"Zure gako pasahitza pribatua ez da dagoeneko bat etortzen zure sartzeko pasahitzarekin.",
"Set your old private key password to your current log-in password:":"Ezarri zure gako pasahitz zaharra orain duzun sartzeko pasahitzan:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan",
"Recovery key successfully enabled":"کلید بازیابی با موفقیت فعال شده است.",
"Could not disable recovery key. Please check your recovery key password!":"کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!",
"Could not enable recovery key. Please check your recovery key password!":"کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!",
"Recovery key successfully disabled":"کلید بازیابی با موفقیت غیر فعال شده است.",
"Could not disable recovery key. Please check your recovery key password!":"کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!",
"Password successfully changed.":"رمزعبور با موفقیت تغییر یافت.",
"Could not change the password. Maybe the old password was not correct.":"رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد.",
"Private key password successfully updated.":"رمزعبور کلید خصوصی با موفقیت به روز شد.",
"File recovery settings updated":"تنظیمات بازیابی فایل به روز شده است.",
"Could not update file recovery":"به روز رسانی بازیابی فایل را نمی تواند انجام دهد.",
"Missing requirements.":"نیازمندی های گمشده",
"Following users are not set up for encryption:":"کاربران زیر برای رمزنگاری تنظیم نشده اند",
"Enable recovery key (allow to recover users files in case of password loss):":"فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):",
"New Recovery key password":"رمزعبور جدید کلید بازیابی",
"Change Password":"تغییر رمزعبور",
" If you don't remember your old password you can ask your administrator to recover your files.":"اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید.",
"Old log-in password":"رمزعبور قدیمی",
"Current log-in password":"رمزعبور فعلی",
"Update Private Key Password":"به روز رسانی رمزعبور کلید خصوصی",
"Enable password recovery:":"فعال سازی بازیابی رمزعبور:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید.",
"Recovery key successfully enabled":"کلید بازیابی با موفقیت فعال شده است.",
"Could not disable recovery key. Please check your recovery key password!":"کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!",
"Could not enable recovery key. Please check your recovery key password!":"کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!",
"Recovery key successfully disabled":"کلید بازیابی با موفقیت غیر فعال شده است.",
"Could not disable recovery key. Please check your recovery key password!":"کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!",
"Password successfully changed.":"رمزعبور با موفقیت تغییر یافت.",
"Could not change the password. Maybe the old password was not correct.":"رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد.",
"Private key password successfully updated.":"رمزعبور کلید خصوصی با موفقیت به روز شد.",
"File recovery settings updated":"تنظیمات بازیابی فایل به روز شده است.",
"Could not update file recovery":"به روز رسانی بازیابی فایل را نمی تواند انجام دهد.",
"Missing requirements.":"نیازمندی های گمشده",
"Following users are not set up for encryption:":"کاربران زیر برای رمزنگاری تنظیم نشده اند",
"Enable recovery key (allow to recover users files in case of password loss):":"فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):",
"New Recovery key password":"رمزعبور جدید کلید بازیابی",
"Change Password":"تغییر رمزعبور",
" If you don't remember your old password you can ask your administrator to recover your files.":"اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید.",
"Old log-in password":"رمزعبور قدیمی",
"Current log-in password":"رمزعبور فعلی",
"Update Private Key Password":"به روز رسانی رمزعبور کلید خصوصی",
"Enable password recovery:":"فعال سازی بازیابی رمزعبور:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید.",
"Please repeat the recovery key password":"Toista palautusavaimen salasana",
"Repeated recovery key password does not match the provided recovery key password":"Toistamiseen annettu palautusavaimen salasana ei täsmää annettua palautusavaimen salasanaa",
"Recovery key successfully enabled":"Palautusavain kytketty päälle onnistuneesti",
"Could not disable recovery key. Please check your recovery key password!":"Palautusavaimen poistaminen käytöstä ei onnistunut. Tarkista palautusavaimesi salasana!",
"Could not enable recovery key. Please check your recovery key password!":"Palautusavaimen käyttöönotto epäonnistui. Tarkista palautusavaimesi salasana!",
"Could not disable recovery key. Please check your recovery key password!":"Palautusavaimen poistaminen käytöstä ei onnistunut. Tarkista palautusavaimesi salasana!",
"Missing parameters":"Puuttuvat parametrit",
"Please provide the old recovery password":"Anna vanha palautussalasana",
"Please provide a new recovery password":"Anna uusi palautussalasana",
"Please repeat the new recovery password":"Toista uusi palautussalasana",
"Password successfully changed.":"Salasana vaihdettiin onnistuneesti.",
"Could not change the password. Maybe the old password was not correct.":"Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.",
"Could not enable the recovery key, please try again or contact your administrator":"Palautusavaimen käyttöönotto epäonnistui, yritä myöhemmin uudelleen tai ota yhteys ylläpitäjään",
"Could not update the private key password.":"Yksityisen avaimen salasanaa ei voitu päivittää.",
"The old password was not correct, please try again.":"Vanha salasana oli väärin, yritä uudelleen.",
"The current log-in password was not correct, please try again.":"Nykyinen kirjautumissalasana ei ollut oikein, yritä uudelleen.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Salaussovellusta ei ole käynnissä! Kenties salaussovellus otettiin uudelleen käyttöön nykyisen istuntosi aikana. Kirjaudu ulos ja takaisin sisään saadaksesi salaussovelluksen käyttöön.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.",
"Unknown error. Please check your system settings or contact your administrator":"Tuntematon virhe. Tarkista järjestelmän asetukset tai ole yhteydessä ylläpitäjään.",
"Initial encryption started... This can take some time. Please wait.":"Ensimmäinen salauskerta käynnistetty... Tämä saattaa kestää hetken.",
"Initial encryption running... Please try again later.":"Ensimmäinen salauskerta on meneillään... Yritä myöhemmin uudelleen.",
"Missing requirements.":"Puuttuvat vaatimukset.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Varmista, että OpenSSL ja PHP-laajennus ovat käytössä ja niiden asetukset ovat oikein. Salaussovellus on poistettu toistaiseksi käytöstä.",
"Following users are not set up for encryption:":"Seuraavat käyttäjät eivät ole määrittäneet salausta:",
"Go directly to your %spersonal settings%s.":"Siirry suoraan %shenkilökohtaisiin asetuksiisi%s.",
"Server-side Encryption":"Palvelinpuolen salaus",
"The current log-in password was not correct, please try again.":"Nykyinen kirjautumiseen käytettävä salasana oli väärin, yritä uudelleen.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Salausavaimet tulee siirtää vanhasta salaustavasta (ownCloud <= 8.0) uuteen salaustapaan. Suorita 'occ encryption:migrate' tai ota yhteys ylläpitoon",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salatuskirjoitetut tiedostosi.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.",
"Enable recovery key (allow to recover users files in case of password loss):":"Käytä palautusavainta (salli käyttäjien tiedostojen palauttaminen, jos heidän salasana unohtuu):",
"Encryption App is enabled and ready":"Salaussovellus on käytössä ja valmis",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tiedostoa ei voi lukea, se on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto uudelleen kanssasi.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Palautusavain on ylimääräinen salausavain, jota käytetään tiedostojen salaamiseen. Sen avulla on mahdollista palauttaa käyttäjien tiedostot, vaikka käyttäjä unohtaisi oman salasanansa.",
"Your private key password no longer matches your log-in password.":"Salaisen avaimesi salasana ei enää vastaa kirjautumissalasanaasi.",
"Set your old private key password to your current log-in password:":"Aseta yksityisen avaimen vanha salasana vastaamaan nykyistä kirjautumissalasanaasi:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Jos et muista vanhaa salasanaasi, voit pyytää ylläpitäjää palauttamaan tiedostosi.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu",
"Please repeat the recovery key password":"Toista palautusavaimen salasana",
"Repeated recovery key password does not match the provided recovery key password":"Toistamiseen annettu palautusavaimen salasana ei täsmää annettua palautusavaimen salasanaa",
"Recovery key successfully enabled":"Palautusavain kytketty päälle onnistuneesti",
"Could not disable recovery key. Please check your recovery key password!":"Palautusavaimen poistaminen käytöstä ei onnistunut. Tarkista palautusavaimesi salasana!",
"Could not enable recovery key. Please check your recovery key password!":"Palautusavaimen käyttöönotto epäonnistui. Tarkista palautusavaimesi salasana!",
"Could not disable recovery key. Please check your recovery key password!":"Palautusavaimen poistaminen käytöstä ei onnistunut. Tarkista palautusavaimesi salasana!",
"Missing parameters":"Puuttuvat parametrit",
"Please provide the old recovery password":"Anna vanha palautussalasana",
"Please provide a new recovery password":"Anna uusi palautussalasana",
"Please repeat the new recovery password":"Toista uusi palautussalasana",
"Password successfully changed.":"Salasana vaihdettiin onnistuneesti.",
"Could not change the password. Maybe the old password was not correct.":"Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.",
"Could not enable the recovery key, please try again or contact your administrator":"Palautusavaimen käyttöönotto epäonnistui, yritä myöhemmin uudelleen tai ota yhteys ylläpitäjään",
"Could not update the private key password.":"Yksityisen avaimen salasanaa ei voitu päivittää.",
"The old password was not correct, please try again.":"Vanha salasana oli väärin, yritä uudelleen.",
"The current log-in password was not correct, please try again.":"Nykyinen kirjautumissalasana ei ollut oikein, yritä uudelleen.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Salaussovellusta ei ole käynnissä! Kenties salaussovellus otettiin uudelleen käyttöön nykyisen istuntosi aikana. Kirjaudu ulos ja takaisin sisään saadaksesi salaussovelluksen käyttöön.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.",
"Unknown error. Please check your system settings or contact your administrator":"Tuntematon virhe. Tarkista järjestelmän asetukset tai ole yhteydessä ylläpitäjään.",
"Initial encryption started... This can take some time. Please wait.":"Ensimmäinen salauskerta käynnistetty... Tämä saattaa kestää hetken.",
"Initial encryption running... Please try again later.":"Ensimmäinen salauskerta on meneillään... Yritä myöhemmin uudelleen.",
"Missing requirements.":"Puuttuvat vaatimukset.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Varmista, että OpenSSL ja PHP-laajennus ovat käytössä ja niiden asetukset ovat oikein. Salaussovellus on poistettu toistaiseksi käytöstä.",
"Following users are not set up for encryption:":"Seuraavat käyttäjät eivät ole määrittäneet salausta:",
"Go directly to your %spersonal settings%s.":"Siirry suoraan %shenkilökohtaisiin asetuksiisi%s.",
"Server-side Encryption":"Palvelinpuolen salaus",
"The current log-in password was not correct, please try again.":"Nykyinen kirjautumiseen käytettävä salasana oli väärin, yritä uudelleen.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Salausavaimet tulee siirtää vanhasta salaustavasta (ownCloud <= 8.0) uuteen salaustapaan. Suorita 'occ encryption:migrate' tai ota yhteys ylläpitoon",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salatuskirjoitetut tiedostosi.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.",
"Enable recovery key (allow to recover users files in case of password loss):":"Käytä palautusavainta (salli käyttäjien tiedostojen palauttaminen, jos heidän salasana unohtuu):",
"Encryption App is enabled and ready":"Salaussovellus on käytössä ja valmis",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tiedostoa ei voi lukea, se on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto uudelleen kanssasi.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Palautusavain on ylimääräinen salausavain, jota käytetään tiedostojen salaamiseen. Sen avulla on mahdollista palauttaa käyttäjien tiedostot, vaikka käyttäjä unohtaisi oman salasanansa.",
"Your private key password no longer matches your log-in password.":"Salaisen avaimesi salasana ei enää vastaa kirjautumissalasanaasi.",
"Set your old private key password to your current log-in password:":"Aseta yksityisen avaimen vanha salasana vastaamaan nykyistä kirjautumissalasanaasi:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Jos et muista vanhaa salasanaasi, voit pyytää ylläpitäjää palauttamaan tiedostosi.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu",
"Missing recovery key password":"Mot de passe de la clef de récupération manquant",
"Please repeat the recovery key password":"Répétez le mot de passe de la clef de récupération",
"Repeated recovery key password does not match the provided recovery key password":"Le mot de passe de la clef de récupération et sa répétition ne sont pas identiques.",
"Recovery key successfully enabled":"Clef de récupération activée avec succès",
"Could not disable recovery key. Please check your recovery key password!":"Impossible de désactiver la clef de récupération. Veuillez vérifier le mot de passe de votre clef de récupération !",
"Could not enable recovery key. Please check your recovery key password!":"Impossible d'activer la clef de récupération. Veuillez vérifier le mot de passe de votre clé de récupération !",
"Recovery key successfully disabled":"Clef de récupération désactivée avec succès",
"Could not disable recovery key. Please check your recovery key password!":"Impossible de désactiver la clef de récupération. Veuillez vérifier le mot de passe de votre clef de récupération !",
"Missing parameters":"Paramètres manquants",
"Please provide the old recovery password":"Veuillez entrer l'ancien mot de passe de récupération",
"Please provide a new recovery password":"Veuillez entrer un nouveau mot de passe de récupération",
"Please repeat the new recovery password":"Veuillez répéter le nouveau mot de passe de récupération",
"Password successfully changed.":"Mot de passe changé avec succès.",
"Could not change the password. Maybe the old password was not correct.":"Erreur lors du changement de mot de passe. L'ancien mot de passe est peut-être incorrect.",
"Recovery Key disabled":"Clé de récupération désactivée",
"Recovery Key enabled":"Clef de récupération activée",
"Could not enable the recovery key, please try again or contact your administrator":"Impossible d'activer la clef de récupération. Veuillez essayer à nouveau ou contacter votre administrateur",
"Could not update the private key password.":"Impossible de mettre à jour le mot de passe de la clef privée.",
"The old password was not correct, please try again.":"L'ancien mot de passe est incorrect. Veuillez réessayer.",
"The current log-in password was not correct, please try again.":"Le mot de passe actuel n'est pas correct, veuillez réessayer.",
"The current log-in password was not correct, please try again.":"Le mot de passe de connexion actuel n'est pas correct, veuillez réessayer.",
"Private key password successfully updated.":"Mot de passe de la clef privée mis à jour avec succès.",
"File recovery settings updated":"Paramètres de récupération de fichiers mis à jour",
"Could not update file recovery":"Impossible de mettre à jour les fichiers de récupération",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Votre clef privée n'est pas valide ! Votre mot de passe a probablement été modifié hors de %s (ex. votre annuaire d'entreprise). Vous pouvez mettre à jour le mot de passe de votre clef privée dans les paramètres personnels pour pouvoir récupérer l'accès à vos fichiers chiffrés.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossible de déchiffrer ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire de ce fichier de le repartager avec vous.",
"Unknown error. Please check your system settings or contact your administrator":"Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter un administrateur.",
"Initial encryption started... This can take some time. Please wait.":"Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter.",
"Initial encryption running... Please try again later.":"Chiffrement initial en cours... Veuillez ré-essayer ultérieurement.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Merci de vous assurer que OpenSSL et son extension PHP sont activés et configurés correctement. Pour l'instant, l'application de chiffrement a été désactivée.",
"Following users are not set up for encryption:":"Les utilisateurs suivants ne sont pas configurés pour le chiffrement :",
"Go directly to your %spersonal settings%s.":"Aller à %svos paramètres personnels%s.",
"Server-side Encryption":"Chiffrement côté serveur",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez exécuter 'occ encryption:migrate' ou contacter votre administrateur",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Votre clef privée de chiffrement n'est pas valide ! Veuillez mettre à jour le mot de passe de la clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.",
"Enable recovery key (allow to recover users files in case of password loss):":"Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).",
"Encryption App is enabled and ready":"L'application de chiffrement est activée et prête",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossible de lire ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le repartager avec vous. ",
"Enable recovery key":"Activer la clé de récupération",
"Disable recovery key":"Désactiver la clé de récupération",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"La clé de récupération est une clé supplémentaire utilisée pour chiffrer les fichiers. Elle permet de récupérer les fichiers des utilisateurs s'ils oublient leur mot de passe.",
"Recovery key password":"Mot de passe de la clef de récupération",
"Repeat Recovery key password":"Répétez le mot de passe de la clef de récupération",
"Enabled":"Activé",
"Disabled":"Désactivé",
"Repeat recovery key password":"Répétez le mot de passe de la clé de récupération",
"Change recovery key password:":"Modifier le mot de passe de la clef de récupération :",
"Old Recovery key password":"Ancien mot de passe de la clef de récupération",
"New Recovery key password":"Nouveau mot de passe de la clef de récupération",
"Repeat New Recovery key password":"Répétez le nouveau mot de passe de la clef de récupération",
"Old recovery key password":"Ancien mot de passe de la clé de récupération",
"New recovery key password":"Nouveau mot de passe de la clé de récupération",
"Repeat new recovery key password":"Répétez le nouveau mot de passe de la clé de récupération",
"Change Password":"Changer de mot de passe",
"ownCloud basic encryption module":"Module de chiffrement de base d'ownCloud",
"Your private key password no longer matches your log-in password.":"Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion.",
"Set your old private key password to your current log-in password:":"Faites de votre mot de passe de connexion le mot de passe de votre clef privée :",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers.",
@@ -48,6 +45,8 @@ OC.L10N.register(
"Current log-in password":"Actuel mot de passe de connexion",
"Update Private Key Password":"Mettre à jour le mot de passe de votre clef privée",
"Enable password recovery:":"Activer la récupération du mot de passe :",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe",
"Missing recovery key password":"Mot de passe de la clef de récupération manquant",
"Please repeat the recovery key password":"Répétez le mot de passe de la clef de récupération",
"Repeated recovery key password does not match the provided recovery key password":"Le mot de passe de la clef de récupération et sa répétition ne sont pas identiques.",
"Recovery key successfully enabled":"Clef de récupération activée avec succès",
"Could not disable recovery key. Please check your recovery key password!":"Impossible de désactiver la clef de récupération. Veuillez vérifier le mot de passe de votre clef de récupération !",
"Could not enable recovery key. Please check your recovery key password!":"Impossible d'activer la clef de récupération. Veuillez vérifier le mot de passe de votre clé de récupération !",
"Recovery key successfully disabled":"Clef de récupération désactivée avec succès",
"Could not disable recovery key. Please check your recovery key password!":"Impossible de désactiver la clef de récupération. Veuillez vérifier le mot de passe de votre clef de récupération !",
"Missing parameters":"Paramètres manquants",
"Please provide the old recovery password":"Veuillez entrer l'ancien mot de passe de récupération",
"Please provide a new recovery password":"Veuillez entrer un nouveau mot de passe de récupération",
"Please repeat the new recovery password":"Veuillez répéter le nouveau mot de passe de récupération",
"Password successfully changed.":"Mot de passe changé avec succès.",
"Could not change the password. Maybe the old password was not correct.":"Erreur lors du changement de mot de passe. L'ancien mot de passe est peut-être incorrect.",
"Recovery Key disabled":"Clé de récupération désactivée",
"Recovery Key enabled":"Clef de récupération activée",
"Could not enable the recovery key, please try again or contact your administrator":"Impossible d'activer la clef de récupération. Veuillez essayer à nouveau ou contacter votre administrateur",
"Could not update the private key password.":"Impossible de mettre à jour le mot de passe de la clef privée.",
"The old password was not correct, please try again.":"L'ancien mot de passe est incorrect. Veuillez réessayer.",
"The current log-in password was not correct, please try again.":"Le mot de passe actuel n'est pas correct, veuillez réessayer.",
"The current log-in password was not correct, please try again.":"Le mot de passe de connexion actuel n'est pas correct, veuillez réessayer.",
"Private key password successfully updated.":"Mot de passe de la clef privée mis à jour avec succès.",
"File recovery settings updated":"Paramètres de récupération de fichiers mis à jour",
"Could not update file recovery":"Impossible de mettre à jour les fichiers de récupération",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Votre clef privée n'est pas valide ! Votre mot de passe a probablement été modifié hors de %s (ex. votre annuaire d'entreprise). Vous pouvez mettre à jour le mot de passe de votre clef privée dans les paramètres personnels pour pouvoir récupérer l'accès à vos fichiers chiffrés.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossible de déchiffrer ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire de ce fichier de le repartager avec vous.",
"Unknown error. Please check your system settings or contact your administrator":"Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter un administrateur.",
"Initial encryption started... This can take some time. Please wait.":"Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter.",
"Initial encryption running... Please try again later.":"Chiffrement initial en cours... Veuillez ré-essayer ultérieurement.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Merci de vous assurer que OpenSSL et son extension PHP sont activés et configurés correctement. Pour l'instant, l'application de chiffrement a été désactivée.",
"Following users are not set up for encryption:":"Les utilisateurs suivants ne sont pas configurés pour le chiffrement :",
"Go directly to your %spersonal settings%s.":"Aller à %svos paramètres personnels%s.",
"Server-side Encryption":"Chiffrement côté serveur",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez exécuter 'occ encryption:migrate' ou contacter votre administrateur",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Votre clef privée de chiffrement n'est pas valide ! Veuillez mettre à jour le mot de passe de la clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.",
"Enable recovery key (allow to recover users files in case of password loss):":"Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).",
"Encryption App is enabled and ready":"L'application de chiffrement est activée et prête",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossible de lire ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le repartager avec vous. ",
"Enable recovery key":"Activer la clé de récupération",
"Disable recovery key":"Désactiver la clé de récupération",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"La clé de récupération est une clé supplémentaire utilisée pour chiffrer les fichiers. Elle permet de récupérer les fichiers des utilisateurs s'ils oublient leur mot de passe.",
"Recovery key password":"Mot de passe de la clef de récupération",
"Repeat Recovery key password":"Répétez le mot de passe de la clef de récupération",
"Enabled":"Activé",
"Disabled":"Désactivé",
"Repeat recovery key password":"Répétez le mot de passe de la clé de récupération",
"Change recovery key password:":"Modifier le mot de passe de la clef de récupération :",
"Old Recovery key password":"Ancien mot de passe de la clef de récupération",
"New Recovery key password":"Nouveau mot de passe de la clef de récupération",
"Repeat New Recovery key password":"Répétez le nouveau mot de passe de la clef de récupération",
"Old recovery key password":"Ancien mot de passe de la clé de récupération",
"New recovery key password":"Nouveau mot de passe de la clé de récupération",
"Repeat new recovery key password":"Répétez le nouveau mot de passe de la clé de récupération",
"Change Password":"Changer de mot de passe",
"ownCloud basic encryption module":"Module de chiffrement de base d'ownCloud",
"Your private key password no longer matches your log-in password.":"Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion.",
"Set your old private key password to your current log-in password:":"Faites de votre mot de passe de connexion le mot de passe de votre clef privée :",
" If you don't remember your old password you can ask your administrator to recover your files.":"Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers.",
@@ -46,6 +43,8 @@
"Current log-in password":"Actuel mot de passe de connexion",
"Update Private Key Password":"Mettre à jour le mot de passe de votre clef privée",
"Enable password recovery:":"Activer la récupération du mot de passe :",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe",
"Missing recovery key password":"Falta o contrasinal da chave de recuperación",
"Please repeat the recovery key password":"Repita o contrasinal da chave de recuperación",
"Repeated recovery key password does not match the provided recovery key password":"A repetición do contrasinal da chave de recuperación non coincide co contrasinal da chave de recuperación fornecido",
"Recovery key successfully enabled":"Activada satisfactoriamente a chave de recuperación",
"Could not enable recovery key. Please check your recovery key password!":"Non foi posíbel activar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!",
"Recovery key successfully disabled":"Desactivada satisfactoriamente a chave de recuperación",
"Could not disable recovery key. Please check your recovery key password!":"Non foi posíbel desactivar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!",
"Missing parameters":"Faltan os parámetros",
"Please provide the old recovery password":"Introduza o antigo contrasinal de recuperación",
"Please provide a new recovery password":"Introduza a nova chave de recuperación",
"Please repeat the new recovery password":"Repita o novo contrasinal de recuperación",
"Password successfully changed.":"O contrasinal foi cambiado satisfactoriamente",
"Could not change the password. Maybe the old password was not correct.":"Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.",
"Recovery Key disabled":"Desactivada a chave de recuperación",
"Recovery Key enabled":"Activada a chave de recuperación",
"Could not enable the recovery key, please try again or contact your administrator":"Non foi posíbel activar a chave de recuperación, ténteo de novo ou póñase en contacto co administrador.",
"Could not update the private key password.":"Non foi posíbel actualizar o contrasinal da chave privada.",
"The old password was not correct, please try again.":"O contrasinal antigo non é correcto, ténteo de novo.",
"The current log-in password was not correct, please try again.":"O actual contrasinal de acceso non é correcto, ténteo de novo.",
"Private key password successfully updated.":"A chave privada foi actualizada correctamente.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"É necesario migrar as súas chaves de cifrado do antigo cifrado (ownCloud <= 8,0) cara ao novo. Execute «occ encryption:migrate» ou contacte co administrador",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"A chave privada para a aplicación de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"A aplicación de cifrado está activada, mais as chaves non foron preparadas, saia da sesión e volva a acceder de novo",
"Encryption App is enabled and ready":" A aplicación de cifrado está activada e lista",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Non foi posíbel descifrar o ficheiro, probabelmente tratase dun ficheiro compartido. Pídalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Non foi posíbel ler o ficheiro, probabelmente tratase dun ficheiro compartido. Pídalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.",
"Enable recovery key":"Activar a chave de recuperación",
"Disable recovery key":"Desactivar a chave de recuperación",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"A chave de recuperación é unha chave de cifrado adicional que se utiliza para cifrar ficheiros. Permite a recuperación de ficheiros dun usuario se o usuario esquece o seu contrasinal.",
"Recovery key password":"Contrasinal da chave de recuperación",
"Repeat recovery key password":"Repita o contrasinal da chave de recuperación",
"Change recovery key password:":"Cambiar o contrasinal da chave de la recuperación:",
"Old recovery key password":"Contrasinal antigo da chave de recuperación",
"New recovery key password":"Novo contrasinal da chave de recuperación",
"Repeat new recovery key password":"Repita o novo contrasinal da chave de recuperación",
"Change Password":"Cambiar o contrasinal",
"ownCloud basic encryption module":"Módulo básico de cifrado de ownCloud",
"Your private key password no longer matches your log-in password.":"O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.",
"Set your old private key password to your current log-in password:":"Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros.",
"Old log-in password":"Contrasinal antigo de acceso",
"Current log-in password":"Contrasinal actual de acceso",
"Update Private Key Password":"Actualizar o contrasinal da chave privada",
"Enable password recovery:":"Activar o contrasinal de recuperación:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal",
"Missing recovery key password":"Falta o contrasinal da chave de recuperación",
"Please repeat the recovery key password":"Repita o contrasinal da chave de recuperación",
"Repeated recovery key password does not match the provided recovery key password":"A repetición do contrasinal da chave de recuperación non coincide co contrasinal da chave de recuperación fornecido",
"Recovery key successfully enabled":"Activada satisfactoriamente a chave de recuperación",
"Could not enable recovery key. Please check your recovery key password!":"Non foi posíbel activar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!",
"Recovery key successfully disabled":"Desactivada satisfactoriamente a chave de recuperación",
"Could not disable recovery key. Please check your recovery key password!":"Non foi posíbel desactivar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!",
"Missing parameters":"Faltan os parámetros",
"Please provide the old recovery password":"Introduza o antigo contrasinal de recuperación",
"Please provide a new recovery password":"Introduza a nova chave de recuperación",
"Please repeat the new recovery password":"Repita o novo contrasinal de recuperación",
"Password successfully changed.":"O contrasinal foi cambiado satisfactoriamente",
"Could not change the password. Maybe the old password was not correct.":"Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.",
"Recovery Key disabled":"Desactivada a chave de recuperación",
"Recovery Key enabled":"Activada a chave de recuperación",
"Could not enable the recovery key, please try again or contact your administrator":"Non foi posíbel activar a chave de recuperación, ténteo de novo ou póñase en contacto co administrador.",
"Could not update the private key password.":"Non foi posíbel actualizar o contrasinal da chave privada.",
"The old password was not correct, please try again.":"O contrasinal antigo non é correcto, ténteo de novo.",
"The current log-in password was not correct, please try again.":"O actual contrasinal de acceso non é correcto, ténteo de novo.",
"Private key password successfully updated.":"A chave privada foi actualizada correctamente.",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"É necesario migrar as súas chaves de cifrado do antigo cifrado (ownCloud <= 8,0) cara ao novo. Execute «occ encryption:migrate» ou contacte co administrador",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"A chave privada para a aplicación de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"A aplicación de cifrado está activada, mais as chaves non foron preparadas, saia da sesión e volva a acceder de novo",
"Encryption App is enabled and ready":" A aplicación de cifrado está activada e lista",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Non foi posíbel descifrar o ficheiro, probabelmente tratase dun ficheiro compartido. Pídalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Non foi posíbel ler o ficheiro, probabelmente tratase dun ficheiro compartido. Pídalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.",
"Enable recovery key":"Activar a chave de recuperación",
"Disable recovery key":"Desactivar a chave de recuperación",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"A chave de recuperación é unha chave de cifrado adicional que se utiliza para cifrar ficheiros. Permite a recuperación de ficheiros dun usuario se o usuario esquece o seu contrasinal.",
"Recovery key password":"Contrasinal da chave de recuperación",
"Repeat recovery key password":"Repita o contrasinal da chave de recuperación",
"Change recovery key password:":"Cambiar o contrasinal da chave de la recuperación:",
"Old recovery key password":"Contrasinal antigo da chave de recuperación",
"New recovery key password":"Novo contrasinal da chave de recuperación",
"Repeat new recovery key password":"Repita o novo contrasinal da chave de recuperación",
"Change Password":"Cambiar o contrasinal",
"ownCloud basic encryption module":"Módulo básico de cifrado de ownCloud",
"Your private key password no longer matches your log-in password.":"O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.",
"Set your old private key password to your current log-in password:":"Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros.",
"Old log-in password":"Contrasinal antigo de acceso",
"Current log-in password":"Contrasinal actual de acceso",
"Update Private Key Password":"Actualizar o contrasinal da chave privada",
"Enable password recovery:":"Activar o contrasinal de recuperación:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal",
"Recovery key successfully enabled":"Ključ za oporavak uspješno aktiviran",
"Could not disable recovery key. Please check your recovery key password!":"Ključ za oporavak nije moguće deaktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
"Could not enable recovery key. Please check your recovery key password!":"Ključ za oporavak nije moguće aktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
"Recovery key successfully disabled":"Ključ za ooravak uspješno deaktiviran",
"Could not disable recovery key. Please check your recovery key password!":"Ključ za oporavak nije moguće deaktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
"Password successfully changed.":"Lozinka uspješno promijenjena.",
"Could not change the password. Maybe the old password was not correct.":"Lozinku nije moguće promijeniti. Možda je stara lozinka bila neispravna.",
"Private key password successfully updated.":"Lozinka privatnog ključa uspješno ažurirana.",
"File recovery settings updated":"Ažurirane postavke za oporavak datoteke",
"Could not update file recovery":"Oporavak datoteke nije moguće ažurirati",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Aplikacija šifriranja nije inicijalizirana! Možda je aplikacija šifriranja bila reaktivirana tijekom vaše sesije.Da biste inicijalizirali aplikaciju šifriranja, molimo, pokušajte se odjaviti i ponovno prijaviti.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Vaš privatni ključ nije ispravan! Vjerojatno je vaša lozinka promijenjena izvan %s(npr. vašega korporativnog direktorija). Lozinku svoga privatnog ključa možete ažuriratiu svojim osobnim postavkama da biste obnovili pristup svojim šifriranim datotekama.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ovu datoteku nije moguće dešifrirati, vjerojatno je riječ o zajedničkoj datoteci. Molimopitajte vlasnika datoteke da je ponovo podijeli s vama.",
"Unknown error. Please check your system settings or contact your administrator":"Pogreška nepoznata. Molimo provjerite svoje sistemske postavke ili kontaktirajte svog administratora.",
"Initial encryption started... This can take some time. Please wait.":"Počelo inicijalno šifriranje... To može potrajati neko vrijeme. Molimo, pričekajte.",
"Initial encryption running... Please try again later.":"Inicijalno šifriranje u tijeku... Molimo, pokušajte ponovno kasnije.",
"Missing requirements.":"Nedostaju preduvjeti.",
"Following users are not set up for encryption:":"Sljedeći korisnici nisu određeni za šifriranje:",
"Go directly to your %spersonal settings%s.":"Idite izravno na svoje %sosobne postavke%s.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Neispravan privatni ključ za šifriranje. Molimo ažurirajte lozinku svoga privatnog ključa u svojim osobnimpostavkama da biste obnovili pristup svojim šifriranim datotekama.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikacija šifriranja je aktivirana ali vaši ključevi nisu inicijalizirani, molimo odjavite se iponovno prijavite.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktivirajte ključ za oporavak (u slučaju gubitka lozinke dozvolite oporavak korisničkih datoteka):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ovu datoteku nije moguće dešifrirati, vjerojatno je riječ o zajedničkoj datoteci. Molimopitajte vlasnika datoteke da je ponovo podijeli s vama.",
"Recovery key password":"Lozinka ključa za oporavak",
"Repeat Recovery key password":"Ponovite lozinku ključa za oporavak",
"Enabled":"Aktivirano",
"Disabled":"Onemogućeno",
"Change recovery key password:":"Promijenite lozinku ključa za oporavak",
"Old Recovery key password":"Stara lozinka ključa za oporavak",
"New Recovery key password":"Nova lozinka ključa za oporavak",
"Repeat New Recovery key password":"Ponovite novu lozinku ključa za oporavak",
"Change Password":"Promijenite lozinku",
"Your private key password no longer matches your log-in password.":"Lozinka vašeg privatnog ključa više se ne slaže s vašom lozinkom za prijavu.",
"Set your old private key password to your current log-in password:":"Postavite svoju staru lozinku privatnog ključa u svoju postojeću lozinku za prijavu.",
@@ -37,6 +21,8 @@ OC.L10N.register(
"Current log-in password":"Aktualna lozinka za prijavu",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"U slučaju gubitka lozinke, aktiviranje ove opcije ponovno će vam pribaviti pristup vašim šifriranim datotekama"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"U slučaju gubitka lozinke, aktiviranje ove opcije ponovno će vam pribaviti pristup vašim šifriranim datotekama",
"Recovery key successfully enabled":"Ključ za oporavak uspješno aktiviran",
"Could not disable recovery key. Please check your recovery key password!":"Ključ za oporavak nije moguće deaktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
"Could not enable recovery key. Please check your recovery key password!":"Ključ za oporavak nije moguće aktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
"Recovery key successfully disabled":"Ključ za ooravak uspješno deaktiviran",
"Could not disable recovery key. Please check your recovery key password!":"Ključ za oporavak nije moguće deaktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
"Password successfully changed.":"Lozinka uspješno promijenjena.",
"Could not change the password. Maybe the old password was not correct.":"Lozinku nije moguće promijeniti. Možda je stara lozinka bila neispravna.",
"Private key password successfully updated.":"Lozinka privatnog ključa uspješno ažurirana.",
"File recovery settings updated":"Ažurirane postavke za oporavak datoteke",
"Could not update file recovery":"Oporavak datoteke nije moguće ažurirati",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Aplikacija šifriranja nije inicijalizirana! Možda je aplikacija šifriranja bila reaktivirana tijekom vaše sesije.Da biste inicijalizirali aplikaciju šifriranja, molimo, pokušajte se odjaviti i ponovno prijaviti.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Vaš privatni ključ nije ispravan! Vjerojatno je vaša lozinka promijenjena izvan %s(npr. vašega korporativnog direktorija). Lozinku svoga privatnog ključa možete ažuriratiu svojim osobnim postavkama da biste obnovili pristup svojim šifriranim datotekama.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ovu datoteku nije moguće dešifrirati, vjerojatno je riječ o zajedničkoj datoteci. Molimopitajte vlasnika datoteke da je ponovo podijeli s vama.",
"Unknown error. Please check your system settings or contact your administrator":"Pogreška nepoznata. Molimo provjerite svoje sistemske postavke ili kontaktirajte svog administratora.",
"Initial encryption started... This can take some time. Please wait.":"Počelo inicijalno šifriranje... To može potrajati neko vrijeme. Molimo, pričekajte.",
"Initial encryption running... Please try again later.":"Inicijalno šifriranje u tijeku... Molimo, pokušajte ponovno kasnije.",
"Missing requirements.":"Nedostaju preduvjeti.",
"Following users are not set up for encryption:":"Sljedeći korisnici nisu određeni za šifriranje:",
"Go directly to your %spersonal settings%s.":"Idite izravno na svoje %sosobne postavke%s.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Neispravan privatni ključ za šifriranje. Molimo ažurirajte lozinku svoga privatnog ključa u svojim osobnimpostavkama da biste obnovili pristup svojim šifriranim datotekama.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikacija šifriranja je aktivirana ali vaši ključevi nisu inicijalizirani, molimo odjavite se iponovno prijavite.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktivirajte ključ za oporavak (u slučaju gubitka lozinke dozvolite oporavak korisničkih datoteka):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Ovu datoteku nije moguće dešifrirati, vjerojatno je riječ o zajedničkoj datoteci. Molimopitajte vlasnika datoteke da je ponovo podijeli s vama.",
"Recovery key password":"Lozinka ključa za oporavak",
"Repeat Recovery key password":"Ponovite lozinku ključa za oporavak",
"Enabled":"Aktivirano",
"Disabled":"Onemogućeno",
"Change recovery key password:":"Promijenite lozinku ključa za oporavak",
"Old Recovery key password":"Stara lozinka ključa za oporavak",
"New Recovery key password":"Nova lozinka ključa za oporavak",
"Repeat New Recovery key password":"Ponovite novu lozinku ključa za oporavak",
"Change Password":"Promijenite lozinku",
"Your private key password no longer matches your log-in password.":"Lozinka vašeg privatnog ključa više se ne slaže s vašom lozinkom za prijavu.",
"Set your old private key password to your current log-in password:":"Postavite svoju staru lozinku privatnog ključa u svoju postojeću lozinku za prijavu.",
@@ -35,6 +19,8 @@
"Current log-in password":"Aktualna lozinka za prijavu",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"U slučaju gubitka lozinke, aktiviranje ove opcije ponovno će vam pribaviti pristup vašim šifriranim datotekama"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"U slučaju gubitka lozinke, aktiviranje ove opcije ponovno će vam pribaviti pristup vašim šifriranim datotekama",
"Recovery key successfully enabled":"A helyreállítási kulcs sikeresen bekapcsolva",
"Could not disable recovery key. Please check your recovery key password!":"A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
"Could not enable recovery key. Please check your recovery key password!":"A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
"Recovery key successfully disabled":"A helyreállítási kulcs sikeresen kikapcsolva",
"Could not disable recovery key. Please check your recovery key password!":"A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
"Password successfully changed.":"A jelszót sikeresen megváltoztattuk.",
"Could not change the password. Maybe the old password was not correct.":"A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.",
"Private key password successfully updated.":"A személyes kulcsának jelszava frissítésre került.",
"Could not update file recovery":"A fájlhelyreállítás nem frissíthető",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!",
"Initial encryption started... This can take some time. Please wait.":"A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.",
"Initial encryption running... Please try again later.":"Kezedeti titkosítás fut... Próbálja később.",
"Missing requirements.":"Hiányzó követelmények.",
"Following users are not set up for encryption:":"A következő felhasználók nem állították be a titkosítást:",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!",
"Enable recovery key (allow to recover users files in case of password loss):":"A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!",
"New Recovery key password":"Új Helyreállítási kulcs jelszava",
"Repeat New Recovery key password":"Ismételje meg az új helyreállítási kulcs jelszavát",
"Change Password":"Jelszó megváltoztatása",
" If you don't remember your old password you can ask your administrator to recover your files.":"Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát",
"Recovery key successfully enabled":"A helyreállítási kulcs sikeresen bekapcsolva",
"Could not disable recovery key. Please check your recovery key password!":"A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
"Could not enable recovery key. Please check your recovery key password!":"A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
"Recovery key successfully disabled":"A helyreállítási kulcs sikeresen kikapcsolva",
"Could not disable recovery key. Please check your recovery key password!":"A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
"Password successfully changed.":"A jelszót sikeresen megváltoztattuk.",
"Could not change the password. Maybe the old password was not correct.":"A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.",
"Private key password successfully updated.":"A személyes kulcsának jelszava frissítésre került.",
"Could not update file recovery":"A fájlhelyreállítás nem frissíthető",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!",
"Initial encryption started... This can take some time. Please wait.":"A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.",
"Initial encryption running... Please try again later.":"Kezedeti titkosítás fut... Próbálja később.",
"Missing requirements.":"Hiányzó követelmények.",
"Following users are not set up for encryption:":"A következő felhasználók nem állították be a titkosítást:",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!",
"Enable recovery key (allow to recover users files in case of password loss):":"A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!",
"New Recovery key password":"Új Helyreállítási kulcs jelszava",
"Repeat New Recovery key password":"Ismételje meg az új helyreállítási kulcs jelszavát",
"Change Password":"Jelszó megváltoztatása",
" If you don't remember your old password you can ask your administrator to recover your files.":"Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát",
"Please repeat the recovery key password":"Silakan ulangi sandi kunci pemulihan",
"Repeated recovery key password does not match the provided recovery key password":"Sandi kunci pemulihan yang diulangi tidak cocok dengan sandi kunci pemulihan yang diberikan",
"Recovery key successfully enabled":"Kunci pemulihan berhasil diaktifkan",
"Could not disable recovery key. Please check your recovery key password!":"Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
"Could not enable recovery key. Please check your recovery key password!":"Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
"Recovery key successfully disabled":"Kunci pemulihan berhasil dinonaktifkan",
"Could not disable recovery key. Please check your recovery key password!":"Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
"Missing parameters":"Parameter salah",
"Please provide the old recovery password":"Mohon berikan sandi pemulihan lama",
"Please provide a new recovery password":"Mohon berikan sandi pemulihan baru",
"Please repeat the new recovery password":"Silakan ulangi sandi pemulihan baru",
"Password successfully changed.":"Sandi berhasil diubah",
"Could not change the password. Maybe the old password was not correct.":"Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah.",
"Could not enable the recovery key, please try again or contact your administrator":"Tidak dapat mengaktifkan kunci pemulihan, silakan coba lagi atau hubungi administrator Anda",
"Could not update the private key password.":"Tidak dapat memperbarui sandi kunci private.",
"The old password was not correct, please try again.":"Sandi lama salah, mohon coba lagi.",
"The current log-in password was not correct, please try again.":"Sandi masuk saat ini salah, mohon coba lagi.",
"Private key password successfully updated.":"Sandi kunci privat berhasil diperbarui.",
"Could not update file recovery":"Tidak dapat memperbarui pemulihan berkas",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Aplikasi enkripsi tidak dimulai! Kemungkinan aplikasi enkripsi telah diaktifkan ulang saat sesi Anda. Silakan coba untuk keluar dan kembali lagi untuk memulai aplikasi enkripsi.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Kunci private Anda tidak sah! Nampaknya sandi Anda telah diubah diluar %s (misal direktori perusahaan Anda). Anda dapat memperbarui sandi kunci private untuk memulihakan akses ke berkas terenkripsi Anda.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.",
"Unknown error. Please check your system settings or contact your administrator":"Kesalahan tidak diketahui. Silakan periksa pengaturan sistem Anda atau hubungi administrator",
"Initial encryption started... This can take some time. Please wait.":"Enskripsi awal dijalankan... Ini dapat memakan waktu. Silakan tunggu.",
"Initial encryption running... Please try again later.":"Enkripsi awal sedang berjalan... Sialakn coba lagi nanti.",
"Missing requirements.":"Persyaratan tidak terpenuhi.",
"Following users are not set up for encryption:":"Pengguna berikut belum diatur untuk enkripsi:",
"Go directly to your %spersonal settings%s.":"Langsung ke %spengaturan pribadi%s Anda.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktifkan kunci pemulihan (memungkinkan pengguna untuk memulihkan berkas dalam kasus kehilangan sandi):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Kunci pemulihan adalah kunci enkripsi tambahan yang digunakan untuk mengenkripsi berkas. Kunci pemulihan memungkinkan untuk memulihkan berkas-berkas pengguna ketika pengguna tersebut melupakan sandi mereka.",
"New recovery key password":"Sandi kunci pemulihan baru",
"Repeat new recovery key password":"Ulangi sandi kunci pemulihan baru",
"Change Password":"Ubah Sandi",
"ownCloud basic encryption module":"Modul enkripsi dasar ownCloud",
"Your private key password no longer matches your log-in password.":"Sandi kunci private Anda tidak lagi cocok dengan sandi masuk Anda.",
"Set your old private key password to your current log-in password:":"Setel sandi kunci private Anda untuk sandi masuk Anda saat ini:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi",
"Please repeat the recovery key password":"Silakan ulangi sandi kunci pemulihan",
"Repeated recovery key password does not match the provided recovery key password":"Sandi kunci pemulihan yang diulangi tidak cocok dengan sandi kunci pemulihan yang diberikan",
"Recovery key successfully enabled":"Kunci pemulihan berhasil diaktifkan",
"Could not disable recovery key. Please check your recovery key password!":"Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
"Could not enable recovery key. Please check your recovery key password!":"Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
"Recovery key successfully disabled":"Kunci pemulihan berhasil dinonaktifkan",
"Could not disable recovery key. Please check your recovery key password!":"Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
"Missing parameters":"Parameter salah",
"Please provide the old recovery password":"Mohon berikan sandi pemulihan lama",
"Please provide a new recovery password":"Mohon berikan sandi pemulihan baru",
"Please repeat the new recovery password":"Silakan ulangi sandi pemulihan baru",
"Password successfully changed.":"Sandi berhasil diubah",
"Could not change the password. Maybe the old password was not correct.":"Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah.",
"Could not enable the recovery key, please try again or contact your administrator":"Tidak dapat mengaktifkan kunci pemulihan, silakan coba lagi atau hubungi administrator Anda",
"Could not update the private key password.":"Tidak dapat memperbarui sandi kunci private.",
"The old password was not correct, please try again.":"Sandi lama salah, mohon coba lagi.",
"The current log-in password was not correct, please try again.":"Sandi masuk saat ini salah, mohon coba lagi.",
"Private key password successfully updated.":"Sandi kunci privat berhasil diperbarui.",
"Could not update file recovery":"Tidak dapat memperbarui pemulihan berkas",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Aplikasi enkripsi tidak dimulai! Kemungkinan aplikasi enkripsi telah diaktifkan ulang saat sesi Anda. Silakan coba untuk keluar dan kembali lagi untuk memulai aplikasi enkripsi.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Kunci private Anda tidak sah! Nampaknya sandi Anda telah diubah diluar %s (misal direktori perusahaan Anda). Anda dapat memperbarui sandi kunci private untuk memulihakan akses ke berkas terenkripsi Anda.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.",
"Unknown error. Please check your system settings or contact your administrator":"Kesalahan tidak diketahui. Silakan periksa pengaturan sistem Anda atau hubungi administrator",
"Initial encryption started... This can take some time. Please wait.":"Enskripsi awal dijalankan... Ini dapat memakan waktu. Silakan tunggu.",
"Initial encryption running... Please try again later.":"Enkripsi awal sedang berjalan... Sialakn coba lagi nanti.",
"Missing requirements.":"Persyaratan tidak terpenuhi.",
"Following users are not set up for encryption:":"Pengguna berikut belum diatur untuk enkripsi:",
"Go directly to your %spersonal settings%s.":"Langsung ke %spengaturan pribadi%s Anda.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktifkan kunci pemulihan (memungkinkan pengguna untuk memulihkan berkas dalam kasus kehilangan sandi):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Kunci pemulihan adalah kunci enkripsi tambahan yang digunakan untuk mengenkripsi berkas. Kunci pemulihan memungkinkan untuk memulihkan berkas-berkas pengguna ketika pengguna tersebut melupakan sandi mereka.",
"New recovery key password":"Sandi kunci pemulihan baru",
"Repeat new recovery key password":"Ulangi sandi kunci pemulihan baru",
"Change Password":"Ubah Sandi",
"ownCloud basic encryption module":"Modul enkripsi dasar ownCloud",
"Your private key password no longer matches your log-in password.":"Sandi kunci private Anda tidak lagi cocok dengan sandi masuk Anda.",
"Set your old private key password to your current log-in password:":"Setel sandi kunci private Anda untuk sandi masuk Anda saat ini:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi",
"Missing recovery key password":"Manca la password della chiave di recupero",
"Please repeat the recovery key password":"Ripeti la password della chiave di recupero",
"Repeated recovery key password does not match the provided recovery key password":"La password della chiave di recupero ripetuta non corrisponde alla password della chiave di recupero fornita",
"Recovery key successfully enabled":"Chiave di recupero abilitata correttamente",
"Could not disable recovery key. Please check your recovery key password!":"Impossibile disabilitare la chiave di recupero. Verifica la password della chiave di recupero.",
"Could not enable recovery key. Please check your recovery key password!":"Impossibile abilitare la chiave di ripristino. Verifica la password della chiave di ripristino.",
"Recovery key successfully disabled":"Chiave di recupero disabilitata correttamente",
"Could not disable recovery key. Please check your recovery key password!":"Impossibile disabilitare la chiave di recupero. Verifica la password della chiave di recupero.",
"Missing parameters":"Parametri mancanti",
"Please provide the old recovery password":"Fornisci la vecchia password di recupero",
"Please provide a new recovery password":"Fornisci una nuova password di recupero",
"Please repeat the new recovery password":"Ripeti la nuova password di recupero",
"Could not change the password. Maybe the old password was not correct.":"Impossibile cambiare la password. Forse la vecchia password non era corretta.",
"Recovery Key disabled":"Chiave di ripristino disabilitata",
"Recovery Key enabled":"Chiave di ripristino abilitata",
"Could not enable the recovery key, please try again or contact your administrator":"Impossibile abilitare la chiave di ripristino, prova ancora o contatta il tuo amministratore",
"Could not update the private key password.":"Impossibile aggiornare la password della chiave privata.",
"The old password was not correct, please try again.":"La vecchia password non era corretta, prova di nuovo.",
"The current log-in password was not correct, please try again.":"La password di accesso attuale non era corretta, prova ancora.",
"Private key password successfully updated.":"Password della chiave privata aggiornata correttamente.",
"File recovery settings updated":"Impostazioni di ripristino dei file aggiornate",
"Could not update file recovery":"Impossibile aggiornare il ripristino dei file",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Applicazione di cifratura non inizializzata. Forse l'applicazione è stata riabilitata durante la tua sessione. Prova a disconnetterti e ad effettuare nuovamente l'accesso per inizializzarla.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"La tua chiave privata non è valida! Forse la password è stata cambiata al di fuori di %s (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file cifrati.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
"Unknown error. Please check your system settings or contact your administrator":"Errore sconosciuto. Controlla le impostazioni di sistema o contatta il tuo amministratore",
"Initial encryption started... This can take some time. Please wait.":"Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi.",
"Initial encryption running... Please try again later.":"Cifratura iniziale in esecuzione... Riprova più tardi.",
"Missing requirements.":"Requisiti mancanti.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Assicurati che OpenSSL e l'estensione PHP sia abilitatati e configurati correttamente. Per ora, l'applicazione di cifratura è disabilitata.",
"Following users are not set up for encryption:":"I seguenti utenti non sono configurati per la cifratura:",
"Go directly to your %spersonal settings%s.":"Vai direttamente alle tue %simpostazioni personali%s.",
"Server-side Encryption":"Cifratura lato server",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Esegui 'occ encryption:migrate' o contatta il tuo amministratore",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso",
"Enable recovery key (allow to recover users files in case of password loss):":"Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):",
"Encryption App is enabled and ready":"L'applicazione Cifratura è abilitata e pronta",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossibile leggere questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
"Enable recovery key":"Abilita chiave di ripristino",
"Disable recovery key":"Disabilita chiave di ripristino",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"La chiave di ripristino è una chiave di cifratura aggiuntiva utilizzata per cifrare i file. Consente di ripristinare i file di un utente se l'utente dimentica la propria password.",
"Recovery key password":"Password della chiave di recupero",
"Repeat Recovery key password":"Ripeti la password della chiave di recupero",
"Enabled":"Abilitata",
"Disabled":"Disabilitata",
"Repeat recovery key password":"Ripeti la password della chiave di ripristino",
"Change recovery key password:":"Cambia la password della chiave di recupero:",
"Old Recovery key password":"Vecchia password della chiave di recupero",
"New Recovery key password":"Nuova password della chiave di recupero",
"Repeat New Recovery key password":"Ripeti la nuova password della chiave di recupero",
"Old recovery key password":"Vecchia password della chiave di ripristino",
"New recovery key password":"Nuova password della chiave di ripristino",
"Repeat new recovery key password":"Ripeti la nuova password della chiave di ripristino",
"Change Password":"Modifica password",
"ownCloud basic encryption module":"Modulo di cifratura di base di ownCloud",
"Your private key password no longer matches your log-in password.":"La password della chiave privata non corrisponde più alla password di accesso.",
"Set your old private key password to your current log-in password:":"Imposta la vecchia password della chiave privata sull'attuale password di accesso:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file.",
@@ -48,6 +45,8 @@ OC.L10N.register(
"Current log-in password":"Password di accesso attuale",
"Update Private Key Password":"Aggiorna la password della chiave privata",
"Enable password recovery:":"Abilita il ripristino della password:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password",
"Missing recovery key password":"Manca la password della chiave di recupero",
"Please repeat the recovery key password":"Ripeti la password della chiave di recupero",
"Repeated recovery key password does not match the provided recovery key password":"La password della chiave di recupero ripetuta non corrisponde alla password della chiave di recupero fornita",
"Recovery key successfully enabled":"Chiave di recupero abilitata correttamente",
"Could not disable recovery key. Please check your recovery key password!":"Impossibile disabilitare la chiave di recupero. Verifica la password della chiave di recupero.",
"Could not enable recovery key. Please check your recovery key password!":"Impossibile abilitare la chiave di ripristino. Verifica la password della chiave di ripristino.",
"Recovery key successfully disabled":"Chiave di recupero disabilitata correttamente",
"Could not disable recovery key. Please check your recovery key password!":"Impossibile disabilitare la chiave di recupero. Verifica la password della chiave di recupero.",
"Missing parameters":"Parametri mancanti",
"Please provide the old recovery password":"Fornisci la vecchia password di recupero",
"Please provide a new recovery password":"Fornisci una nuova password di recupero",
"Please repeat the new recovery password":"Ripeti la nuova password di recupero",
"Could not change the password. Maybe the old password was not correct.":"Impossibile cambiare la password. Forse la vecchia password non era corretta.",
"Recovery Key disabled":"Chiave di ripristino disabilitata",
"Recovery Key enabled":"Chiave di ripristino abilitata",
"Could not enable the recovery key, please try again or contact your administrator":"Impossibile abilitare la chiave di ripristino, prova ancora o contatta il tuo amministratore",
"Could not update the private key password.":"Impossibile aggiornare la password della chiave privata.",
"The old password was not correct, please try again.":"La vecchia password non era corretta, prova di nuovo.",
"The current log-in password was not correct, please try again.":"La password di accesso attuale non era corretta, prova ancora.",
"Private key password successfully updated.":"Password della chiave privata aggiornata correttamente.",
"File recovery settings updated":"Impostazioni di ripristino dei file aggiornate",
"Could not update file recovery":"Impossibile aggiornare il ripristino dei file",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Applicazione di cifratura non inizializzata. Forse l'applicazione è stata riabilitata durante la tua sessione. Prova a disconnetterti e ad effettuare nuovamente l'accesso per inizializzarla.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"La tua chiave privata non è valida! Forse la password è stata cambiata al di fuori di %s (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file cifrati.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
"Unknown error. Please check your system settings or contact your administrator":"Errore sconosciuto. Controlla le impostazioni di sistema o contatta il tuo amministratore",
"Initial encryption started... This can take some time. Please wait.":"Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi.",
"Initial encryption running... Please try again later.":"Cifratura iniziale in esecuzione... Riprova più tardi.",
"Missing requirements.":"Requisiti mancanti.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Assicurati che OpenSSL e l'estensione PHP sia abilitatati e configurati correttamente. Per ora, l'applicazione di cifratura è disabilitata.",
"Following users are not set up for encryption:":"I seguenti utenti non sono configurati per la cifratura:",
"Go directly to your %spersonal settings%s.":"Vai direttamente alle tue %simpostazioni personali%s.",
"Server-side Encryption":"Cifratura lato server",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Esegui 'occ encryption:migrate' o contatta il tuo amministratore",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso",
"Enable recovery key (allow to recover users files in case of password loss):":"Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):",
"Encryption App is enabled and ready":"L'applicazione Cifratura è abilitata e pronta",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Impossibile leggere questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
"Enable recovery key":"Abilita chiave di ripristino",
"Disable recovery key":"Disabilita chiave di ripristino",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"La chiave di ripristino è una chiave di cifratura aggiuntiva utilizzata per cifrare i file. Consente di ripristinare i file di un utente se l'utente dimentica la propria password.",
"Recovery key password":"Password della chiave di recupero",
"Repeat Recovery key password":"Ripeti la password della chiave di recupero",
"Enabled":"Abilitata",
"Disabled":"Disabilitata",
"Repeat recovery key password":"Ripeti la password della chiave di ripristino",
"Change recovery key password:":"Cambia la password della chiave di recupero:",
"Old Recovery key password":"Vecchia password della chiave di recupero",
"New Recovery key password":"Nuova password della chiave di recupero",
"Repeat New Recovery key password":"Ripeti la nuova password della chiave di recupero",
"Old recovery key password":"Vecchia password della chiave di ripristino",
"New recovery key password":"Nuova password della chiave di ripristino",
"Repeat new recovery key password":"Ripeti la nuova password della chiave di ripristino",
"Change Password":"Modifica password",
"ownCloud basic encryption module":"Modulo di cifratura di base di ownCloud",
"Your private key password no longer matches your log-in password.":"La password della chiave privata non corrisponde più alla password di accesso.",
"Set your old private key password to your current log-in password:":"Imposta la vecchia password della chiave privata sull'attuale password di accesso:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file.",
@@ -46,6 +43,8 @@
"Current log-in password":"Password di accesso attuale",
"Update Private Key Password":"Aggiorna la password della chiave privata",
"Enable password recovery:":"Abilita il ripristino della password:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"古い暗号化(ownCloud 8.0以前)から新しい方へ、暗号化キーを移行する必要があります。'occ encryption:migrate'を実行するか、管理者に問い合わせてください。",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください",
"Encryption App is enabled and ready":"暗号化アプリは有効になっており、準備が整いました",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Enable recovery key":"復旧キーを有効にする",
"Disable recovery key":"復旧キーを無効にする",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"復旧キーは、ファイルの暗号化に使う特別な暗号化キーです。ユーザがパスワードを忘れてしまった場合には、リカバリキーを使ってユーザのファイルを復元することができます。",
"Your private key password no longer matches your log-in password.":"もはや秘密鍵はログインパスワードと一致しません。",
"Set your old private key password to your current log-in password:":"古い秘密鍵のパスワードを現在のログインパスワードに設定:",
" If you don't remember your old password you can ask your administrator to recover your files.":"古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。",
"Old log-in password":"古いログインパスワード",
"Current log-in password":"現在のログインパスワード",
"Update Private Key Password":"秘密鍵のパスワードを更新",
"Enable password recovery:":"パスワードリカバリを有効に:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"古い暗号化(ownCloud 8.0以前)から新しい方へ、暗号化キーを移行する必要があります。'occ encryption:migrate'を実行するか、管理者に問い合わせてください。",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください",
"Encryption App is enabled and ready":"暗号化アプリは有効になっており、準備が整いました",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Enable recovery key":"復旧キーを有効にする",
"Disable recovery key":"復旧キーを無効にする",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"復旧キーは、ファイルの暗号化に使う特別な暗号化キーです。ユーザがパスワードを忘れてしまった場合には、リカバリキーを使ってユーザのファイルを復元することができます。",
"Your private key password no longer matches your log-in password.":"もはや秘密鍵はログインパスワードと一致しません。",
"Set your old private key password to your current log-in password:":"古い秘密鍵のパスワードを現在のログインパスワードに設定:",
" If you don't remember your old password you can ask your administrator to recover your files.":"古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。",
"Old log-in password":"古いログインパスワード",
"Current log-in password":"現在のログインパスワード",
"Update Private Key Password":"秘密鍵のパスワードを更新",
"Enable password recovery:":"パスワードリカバリを有効に:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。",
"Could not change the password. Maybe the old password was not correct.":"មិនអាចប្ដូរពាក្យសម្ងាត់បានទេ។ ប្រហែលពាក្យសម្ងាត់ចាស់មិនត្រឹមត្រូវ។",
"Could not change the password. Maybe the old password was not correct.":"មិនអាចប្ដូរពាក្យសម្ងាត់បានទេ។ ប្រហែលពាក្យសម្ងាត់ចាស់មិនត្រឹមត្រូវ។",
"Missing recovery key password":"잊어버린 복구 키 암호 복구",
"Please repeat the recovery key password":"복구 키 암호를 다시 입력하십시오",
"Repeated recovery key password does not match the provided recovery key password":"입력한 복구 키 암호가 서로 다릅니다",
"Recovery key successfully enabled":"복구 키가 성공적으로 활성화되었습니다",
"Could not disable recovery key. Please check your recovery key password!":"복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
"Could not enable recovery key. Please check your recovery key password!":"복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
"Recovery key successfully disabled":"복구 키가 성공적으로 비활성화 되었습니다",
"Could not disable recovery key. Please check your recovery key password!":"복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
"Missing parameters":"인자 부족함",
"Please provide the old recovery password":"이전 복구 암호를 입력하십시오",
"Please provide a new recovery password":"새 복구 암호를 입력하십시오",
"Please repeat the new recovery password":"새 복구 암호를 다시 입력하십시오",
"Password successfully changed.":"암호가 성공적으로 변경되었습니다",
"Could not change the password. Maybe the old password was not correct.":"암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다.",
"Recovery Key disabled":"복구 키가 비활성화됨",
"Recovery Key enabled":"복구 키가 활성화됨",
"Could not enable the recovery key, please try again or contact your administrator":"복구 키를 활성화할 수 없습니다. 다시 시도하거나 관리자에게 연락하십시오",
"Could not update the private key password.":"개인 키 암호를 업데이트할 수 없습니다",
"The old password was not correct, please try again.":"이전 암호가 잘못되었습니다. 다시 시도하십시오.",
"The current log-in password was not correct, please try again.":"현재 로그인 암호가 잘못되었습니다. 다시 시도하십시오.",
"Private key password successfully updated.":"개인 키 암호가 성공적으로 업데이트 되었습니다.",
"File recovery settings updated":"파일 복구 설정 업데이트됨",
"Could not update file recovery":"파일 복구를 업데이트할 수 없습니다",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"암호화 앱이 초기화되지 않았습니다! 암호화 앱이 다시 활성화된 것 같습니다. 암호화 앱을 초기화하려면 로그아웃했다 다시 로그인하십시오.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"개인 키가 올바르지 않습니다! 암호가 %s 외부에서(예: 회사 디렉터리) 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.",
"Unknown error. Please check your system settings or contact your administrator":"알 수 없는 오류입니다. 시스템 설정을 확인하거나 관리자에게 문의하십시오",
"Initial encryption started... This can take some time. Please wait.":"초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오.",
"Initial encryption running... Please try again later.":"초기 암호화가 진행 중입니다... 나중에 다시 시도하십시오.",
"Missing requirements.":"요구 사항이 부족합니다.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"OpenSSL 및 PHP OpenSSL 확장이 활성화되어 있고 올바르게 설정되어 있는지 확인하십시오. 현재 암호화 앱이 비활성화되었습니다.",
"Following users are not set up for encryption:":"다음 사용자는 암호화를 사용할 수 없습니다:",
"Go directly to your %spersonal settings%s.":"%s개인 설정%s으로 직접 이동하십시오.",
"Server-side Encryption":"서버 측 암호화",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오",
"Enable recovery key (allow to recover users files in case of password loss):":"복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.",
"Enable recovery key":"복구 키 활성화",
"Disable recovery key":"복구 키 비활성화",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"복구 키는 파일을 암호화하는 추가 키입니다. 사용자가 암호를 잊었을 때 복구할 수 있도록 해 줍니다.",
"Recovery key password":"복구 키 암호",
"Repeat Recovery key password":"복구 키 암호 재입력",
"Enabled":"활성화",
"Disabled":"비활성화",
"Repeat recovery key password":"복구 키 암호 확인",
"Change recovery key password:":"복구 키 암호 변경:",
"Old Recovery key password":"이전 복구 키 암호",
"New Recovery key password":"새 복구 키 암호",
"Repeat New Recovery key password":"새 복구 키 암호 재입력",
"Old recovery key password":"이전 복구 키 암호",
"New recovery key password":"새 복구 키 암호",
"Repeat new recovery key password":"새 복구 키 암호 확인",
"Change Password":"암호 변경",
"ownCloud basic encryption module":"ownCloud 기본 암호화 모듈",
"Your private key password no longer matches your log-in password.":"개인 키 암호와 로그인 암호가 일치하지 않습니다.",
"Set your old private key password to your current log-in password:":"기존 개인 키 암호를 로그인 암호와 동일하게 설정하십시오:",
" If you don't remember your old password you can ask your administrator to recover your files.":" 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오.",
@@ -48,6 +42,8 @@ OC.L10N.register(
"Current log-in password":"현재 로그인 암호",
"Update Private Key Password":"개인 키 암호 업데이트",
"Enable password recovery:":"암호 복구 사용:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다",
"Missing recovery key password":"잊어버린 복구 키 암호 복구",
"Please repeat the recovery key password":"복구 키 암호를 다시 입력하십시오",
"Repeated recovery key password does not match the provided recovery key password":"입력한 복구 키 암호가 서로 다릅니다",
"Recovery key successfully enabled":"복구 키가 성공적으로 활성화되었습니다",
"Could not disable recovery key. Please check your recovery key password!":"복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
"Could not enable recovery key. Please check your recovery key password!":"복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
"Recovery key successfully disabled":"복구 키가 성공적으로 비활성화 되었습니다",
"Could not disable recovery key. Please check your recovery key password!":"복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
"Missing parameters":"인자 부족함",
"Please provide the old recovery password":"이전 복구 암호를 입력하십시오",
"Please provide a new recovery password":"새 복구 암호를 입력하십시오",
"Please repeat the new recovery password":"새 복구 암호를 다시 입력하십시오",
"Password successfully changed.":"암호가 성공적으로 변경되었습니다",
"Could not change the password. Maybe the old password was not correct.":"암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다.",
"Recovery Key disabled":"복구 키가 비활성화됨",
"Recovery Key enabled":"복구 키가 활성화됨",
"Could not enable the recovery key, please try again or contact your administrator":"복구 키를 활성화할 수 없습니다. 다시 시도하거나 관리자에게 연락하십시오",
"Could not update the private key password.":"개인 키 암호를 업데이트할 수 없습니다",
"The old password was not correct, please try again.":"이전 암호가 잘못되었습니다. 다시 시도하십시오.",
"The current log-in password was not correct, please try again.":"현재 로그인 암호가 잘못되었습니다. 다시 시도하십시오.",
"Private key password successfully updated.":"개인 키 암호가 성공적으로 업데이트 되었습니다.",
"File recovery settings updated":"파일 복구 설정 업데이트됨",
"Could not update file recovery":"파일 복구를 업데이트할 수 없습니다",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"암호화 앱이 초기화되지 않았습니다! 암호화 앱이 다시 활성화된 것 같습니다. 암호화 앱을 초기화하려면 로그아웃했다 다시 로그인하십시오.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"개인 키가 올바르지 않습니다! 암호가 %s 외부에서(예: 회사 디렉터리) 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.",
"Unknown error. Please check your system settings or contact your administrator":"알 수 없는 오류입니다. 시스템 설정을 확인하거나 관리자에게 문의하십시오",
"Initial encryption started... This can take some time. Please wait.":"초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오.",
"Initial encryption running... Please try again later.":"초기 암호화가 진행 중입니다... 나중에 다시 시도하십시오.",
"Missing requirements.":"요구 사항이 부족합니다.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"OpenSSL 및 PHP OpenSSL 확장이 활성화되어 있고 올바르게 설정되어 있는지 확인하십시오. 현재 암호화 앱이 비활성화되었습니다.",
"Following users are not set up for encryption:":"다음 사용자는 암호화를 사용할 수 없습니다:",
"Go directly to your %spersonal settings%s.":"%s개인 설정%s으로 직접 이동하십시오.",
"Server-side Encryption":"서버 측 암호화",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오",
"Enable recovery key (allow to recover users files in case of password loss):":"복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.",
"Enable recovery key":"복구 키 활성화",
"Disable recovery key":"복구 키 비활성화",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"복구 키는 파일을 암호화하는 추가 키입니다. 사용자가 암호를 잊었을 때 복구할 수 있도록 해 줍니다.",
"Recovery key password":"복구 키 암호",
"Repeat Recovery key password":"복구 키 암호 재입력",
"Enabled":"활성화",
"Disabled":"비활성화",
"Repeat recovery key password":"복구 키 암호 확인",
"Change recovery key password:":"복구 키 암호 변경:",
"Old Recovery key password":"이전 복구 키 암호",
"New Recovery key password":"새 복구 키 암호",
"Repeat New Recovery key password":"새 복구 키 암호 재입력",
"Old recovery key password":"이전 복구 키 암호",
"New recovery key password":"새 복구 키 암호",
"Repeat new recovery key password":"새 복구 키 암호 확인",
"Change Password":"암호 변경",
"ownCloud basic encryption module":"ownCloud 기본 암호화 모듈",
"Your private key password no longer matches your log-in password.":"개인 키 암호와 로그인 암호가 일치하지 않습니다.",
"Set your old private key password to your current log-in password:":"기존 개인 키 암호를 로그인 암호와 동일하게 설정하십시오:",
" If you don't remember your old password you can ask your administrator to recover your files.":" 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오.",
@@ -46,6 +40,8 @@
"Current log-in password":"현재 로그인 암호",
"Update Private Key Password":"개인 키 암호 업데이트",
"Enable password recovery:":"암호 복구 사용:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다"
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다",
"Recovery key successfully enabled":"Atkūrimo raktas sėkmingai įjungtas",
"Could not disable recovery key. Please check your recovery key password!":"Neišėjo išjungti jūsų atkūrimo rakto. Prašome jį patikrinti!",
"Could not enable recovery key. Please check your recovery key password!":"Neišėjo įjungti jūsų atkūrimo rakto. Prašome jį patikrinti!",
"Recovery key successfully disabled":"Atkūrimo raktas sėkmingai išjungtas",
"Could not disable recovery key. Please check your recovery key password!":"Neišėjo išjungti jūsų atkūrimo rakto. Prašome jį patikrinti!",
"Password successfully changed.":"Slaptažodis sėkmingai pakeistas",
"Could not change the password. Maybe the old password was not correct.":"Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis.",
"Private key password successfully updated.":"Privataus rakto slaptažodis buvo sėkmingai atnaujintas.",
"File recovery settings updated":"Failų atkūrimo nustatymai pakeisti",
"Could not update file recovery":"Neišėjo atnaujinti failų atkūrimo",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas už %s (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Failo iššifruoti nepavyko, gali būti jog jis yra pasidalintas su jumis. Paprašykite failo savininko, kad jums iš naujo pateiktų šį failą.",
"Initial encryption started... This can take some time. Please wait.":"Pradėtas pirminis šifravimas... Tai gali užtrukti. Prašome palaukti.",
"Missing requirements.":"Trūkstami laukai.",
"Following users are not set up for encryption:":"Sekantys naudotojai nenustatyti šifravimui:",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti",
"Enable recovery key (allow to recover users files in case of password loss):":"Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Failo iššifruoti nepavyko, gali būti jog jis yra pasidalintas su jumis. Paprašykite failo savininko, kad jums iš naujo pateiktų šį failą.",
"Repeat Recovery key password":"Pakartokite atkūrimo rakto slaptažodį",
"Enabled":"Įjungta",
"Disabled":"Išjungta",
"Change recovery key password:":"Pakeisti atkūrimo rakto slaptažodį:",
"Old Recovery key password":"Senas atkūrimo rakto slaptažodis",
"New Recovery key password":"Naujas atkūrimo rakto slaptažodis",
"Repeat New Recovery key password":"Pakartokite naują atkūrimo rakto slaptažodį",
"Change Password":"Pakeisti slaptažodį",
" If you don't remember your old password you can ask your administrator to recover your files.":"Jei nepamenate savo seno slaptažodžio, galite paprašyti administratoriaus atkurti Jūsų failus.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Įjungus šią funkciją jums bus suteiktas pakartotinis priėjimas prie Jūsų šifruotų failų pamiršus slaptažodį."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Įjungus šią funkciją jums bus suteiktas pakartotinis priėjimas prie Jūsų šifruotų failų pamiršus slaptažodį.",
"Recovery key successfully enabled":"Atkūrimo raktas sėkmingai įjungtas",
"Could not disable recovery key. Please check your recovery key password!":"Neišėjo išjungti jūsų atkūrimo rakto. Prašome jį patikrinti!",
"Could not enable recovery key. Please check your recovery key password!":"Neišėjo įjungti jūsų atkūrimo rakto. Prašome jį patikrinti!",
"Recovery key successfully disabled":"Atkūrimo raktas sėkmingai išjungtas",
"Could not disable recovery key. Please check your recovery key password!":"Neišėjo išjungti jūsų atkūrimo rakto. Prašome jį patikrinti!",
"Password successfully changed.":"Slaptažodis sėkmingai pakeistas",
"Could not change the password. Maybe the old password was not correct.":"Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis.",
"Private key password successfully updated.":"Privataus rakto slaptažodis buvo sėkmingai atnaujintas.",
"File recovery settings updated":"Failų atkūrimo nustatymai pakeisti",
"Could not update file recovery":"Neišėjo atnaujinti failų atkūrimo",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas už %s (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Failo iššifruoti nepavyko, gali būti jog jis yra pasidalintas su jumis. Paprašykite failo savininko, kad jums iš naujo pateiktų šį failą.",
"Initial encryption started... This can take some time. Please wait.":"Pradėtas pirminis šifravimas... Tai gali užtrukti. Prašome palaukti.",
"Missing requirements.":"Trūkstami laukai.",
"Following users are not set up for encryption:":"Sekantys naudotojai nenustatyti šifravimui:",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti",
"Enable recovery key (allow to recover users files in case of password loss):":"Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Failo iššifruoti nepavyko, gali būti jog jis yra pasidalintas su jumis. Paprašykite failo savininko, kad jums iš naujo pateiktų šį failą.",
"Repeat Recovery key password":"Pakartokite atkūrimo rakto slaptažodį",
"Enabled":"Įjungta",
"Disabled":"Išjungta",
"Change recovery key password:":"Pakeisti atkūrimo rakto slaptažodį:",
"Old Recovery key password":"Senas atkūrimo rakto slaptažodis",
"New Recovery key password":"Naujas atkūrimo rakto slaptažodis",
"Repeat New Recovery key password":"Pakartokite naują atkūrimo rakto slaptažodį",
"Change Password":"Pakeisti slaptažodį",
" If you don't remember your old password you can ask your administrator to recover your files.":"Jei nepamenate savo seno slaptažodžio, galite paprašyti administratoriaus atkurti Jūsų failus.",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Įjungus šią funkciją jums bus suteiktas pakartotinis priėjimas prie Jūsų šifruotų failų pamiršus slaptažodį."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Įjungus šią funkciją jums bus suteiktas pakartotinis priėjimas prie Jūsų šifruotų failų pamiršus slaptažodį.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Šifrēšanas lietotnei nepareiza privātā atslēga. Lūdzu atjaunojiet savu privāto atslēgu personīgo uzstādījumu sadaļā, lai atjaunot pieeju šifrētajiem failiem.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Šifrēšanas lietotnes ir pieslēgta, bet šifrēšanas atslēgas nav uzstādītas. Lūdzu izejiet no sistēmas un ieejiet sistēmā atpakaļ.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Šifrēšanas lietotnei nepareiza privātā atslēga. Lūdzu atjaunojiet savu privāto atslēgu personīgo uzstādījumu sadaļā, lai atjaunot pieeju šifrētajiem failiem.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"Šifrēšanas lietotnes ir pieslēgta, bet šifrēšanas atslēgas nav uzstādītas. Lūdzu izejiet no sistēmas un ieejiet sistēmā atpakaļ.",
"Password successfully changed.":"Лозинката е успешно променета.",
"Could not change the password. Maybe the old password was not correct.":"Лозинката не можеше да се промени. Можеби старата лозинка не беше исправна.",
"Missing requirements.":"Барања кои недостасуваат.",
"Repeat Recovery key password":"Повтори ја лозинката за клучот на обновување",
"Enabled":"Овозможен",
"Disabled":"Оневозможен",
"Old Recovery key password":"Старата лозинка за клучот на обновување ",
"Repeat New Recovery key password":"Повтори ја лозинката за клучот на обновувањето",
"Change Password":"Смени лозинка",
"Old log-in password":"Старата лозинка за најавување",
"Current log-in password":"Тековната лозинка за најавување",
"Enable password recovery:":"Овозможи го обновувањето на лозинката:"
"Enable password recovery:":"Овозможи го обновувањето на лозинката:",
"Password successfully changed.":"Лозинката е успешно променета.",
"Could not change the password. Maybe the old password was not correct.":"Лозинката не можеше да се промени. Можеби старата лозинка не беше исправна.",
"Missing requirements.":"Барања кои недостасуваат.",
"Repeat Recovery key password":"Повтори ја лозинката за клучот на обновување",
"Enabled":"Овозможен",
"Disabled":"Оневозможен",
"Old Recovery key password":"Старата лозинка за клучот на обновување ",
"Repeat New Recovery key password":"Повтори ја лозинката за клучот на обновувањето",
"Change Password":"Смени лозинка",
"Old log-in password":"Старата лозинка за најавување",
"Current log-in password":"Тековната лозинка за најавување",
"Enable password recovery:":"Овозможи го обновувањето на лозинката:"
"Enable password recovery:":"Овозможи го обновувањето на лозинката:",
"Missing recovery key password":"Passord for gjenopprettingsnøkkel mangler",
"Please repeat the recovery key password":"Gjenta passord for gjenopprettingsnøkkel",
"Repeated recovery key password does not match the provided recovery key password":"Gjentatt passord for gjenopprettingsnøkkel stemmer ikke med oppgitt passord for gjenopprettingsnøkkel",
"Could not disable recovery key. Please check your recovery key password!":"Klarte ikke å deaktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.",
"Could not enable recovery key. Please check your recovery key password!":"Klarte ikke å aktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.",
"Recovery key successfully disabled":"Gjenopprettingsnøkkel ble deaktivert",
"Could not disable recovery key. Please check your recovery key password!":"Klarte ikke å deaktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.",
"Missing parameters":"Manglende parametre",
"Please provide the old recovery password":"Oppgi det gamle gjenopprettingspassordet",
"Please provide a new recovery password":"Oppgi et nytt gjenopprettingspassord",
"Please repeat the new recovery password":"Gjenta det nye gjenopprettingspassordet",
"Password successfully changed.":"Passordet ble endret.",
"Could not change the password. Maybe the old password was not correct.":"Klarte ikke å endre passordet. Kanskje gammelt passord ikke var korrekt.",
"Could not enable the recovery key, please try again or contact your administrator":"Klarte ikke å aktivere gjenopprettingsnøkkelen. Prøv igjen eller kontakt administratoren.",
"Could not update the private key password.":"Klarte ikke å oppdatere privatnøkkelpassordet.",
"The old password was not correct, please try again.":"Det gamle passordet var feil. Prøv igjen.",
"The current log-in password was not correct, please try again.":"Det nåværende innloggingspassordet var feil. Prøv igjen.",
"Private key password successfully updated.":"Passord for privat nøkkel ble oppdatert.",
"File recovery settings updated":"Innstillinger for gjenoppretting av filer ble oppdatert",
"Could not update file recovery":"Klarte ikke å oppdatere gjenoppretting av filer",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Krypterings-app ikke initialisert! Kanskje krypterings-appen ble aktivert på nytt i løpet av økten din. Prøv å logge ut og logge inn igjen for å initialisere krypterings-appen.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Din private nøkkel er ikke gyldig! Sannsynligvis ble passordet ditt endret utenfor %s. (f.eks. din bedriftskatalog). Du kan oppdatere passordet for din private nøkkel i dine personlige innstillinger for å gjenvinne tilgang til de krypterte filene dine.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt.",
"Unknown error. Please check your system settings or contact your administrator":"Ukjent feil. Sjekk systeminnstillingene eller kontakt administratoren.",
"Initial encryption started... This can take some time. Please wait.":"Førstegangs kryptering startet... Dette kan ta litt tid. Vennligst vent.",
"Initial encryption running... Please try again later.":"Førstegangs kryptering kjører... Prøv igjen senere.",
"Missing requirements.":"Manglende krav.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Vennligst se til at OpenSSL sammen med PHP-utvidelsen er aktivert og riktig konfigurert. Krypterings-appen er foreløpig deaktivert.",
"Following users are not set up for encryption:":"Følgende brukere er ikke satt opp for kryptering:",
"Go directly to your %spersonal settings%s.":"Gå direkte til dine %spersonlige innstillinger%s.",
"Server-side Encryption":"Serverkryptering",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Vennligst kjør 'occ encryption:migrate' eller kontakt en administrator",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ugyldig privat nøkkel for Krypterings-app. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"App for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og logg inn igjen.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktiver gjenopprettingsnøkkel (tillat å gjenopprette brukerfiler i tilfelle tap av passord):",
"Encryption App is enabled and ready":"Krypterings-appen er aktivert og klar",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke lese denne filen, som sannsynligvis er en delt fil. Be eieren av filen om å dele den med deg på nytt.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Gjenopprettingsnøkkelen er en ekstra krypteringsnøkkel som brukes til å kryptere filer. Den tillater gjenoppretting av en brukers filer i tilfelle brukeren glemmer passordet sitt.",
"Recovery key password":"Passord for gjenopprettingsnøkkel",
"Repeat Recovery key password":"Gjenta passord for gjenopprettingsnøkkel",
"Enabled":"Aktiv",
"Disabled":"Inaktiv",
"Repeat recovery key password":"Gjenta passord for gjenopprettingsnøkkel",
"Change recovery key password:":"Endre passord for gjenopprettingsnøkkel:",
"Old Recovery key password":"Gammelt passord for gjenopprettingsnøkkel",
"New Recovery key password":"Nytt passord for gjenopprettingsnøkkel",
"Repeat New Recovery key password":"Gjenta nytt passord for gjenopprettingsnøkkel",
"Old recovery key password":"Gammelt passord for gjenopprettingsnøkkel",
"New recovery key password":"Nytt passord for gjenopprettingsnøkkel",
"Repeat new recovery key password":"Gjenta nytt passord for gjenopprettingsnøkkel",
"Your private key password no longer matches your log-in password.":"Passordet for din private nøkkel stemmer ikke lenger med påloggingspassordet ditt.",
"Set your old private key password to your current log-in password:":"Sett ditt gamle passord for privat nøkkel til ditt nåværende påloggingspassord:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Hvis du ikke husker det gamle passordet ditt kan du spørre administratoren om å gjenopprette filene dine.",
"Update Private Key Password":"Oppdater passord for privat nøkkel",
"Enable password recovery:":"Aktiver gjenoppretting av passord:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt.",
"Missing recovery key password":"Passord for gjenopprettingsnøkkel mangler",
"Please repeat the recovery key password":"Gjenta passord for gjenopprettingsnøkkel",
"Repeated recovery key password does not match the provided recovery key password":"Gjentatt passord for gjenopprettingsnøkkel stemmer ikke med oppgitt passord for gjenopprettingsnøkkel",
"Could not disable recovery key. Please check your recovery key password!":"Klarte ikke å deaktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.",
"Could not enable recovery key. Please check your recovery key password!":"Klarte ikke å aktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.",
"Recovery key successfully disabled":"Gjenopprettingsnøkkel ble deaktivert",
"Could not disable recovery key. Please check your recovery key password!":"Klarte ikke å deaktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.",
"Missing parameters":"Manglende parametre",
"Please provide the old recovery password":"Oppgi det gamle gjenopprettingspassordet",
"Please provide a new recovery password":"Oppgi et nytt gjenopprettingspassord",
"Please repeat the new recovery password":"Gjenta det nye gjenopprettingspassordet",
"Password successfully changed.":"Passordet ble endret.",
"Could not change the password. Maybe the old password was not correct.":"Klarte ikke å endre passordet. Kanskje gammelt passord ikke var korrekt.",
"Could not enable the recovery key, please try again or contact your administrator":"Klarte ikke å aktivere gjenopprettingsnøkkelen. Prøv igjen eller kontakt administratoren.",
"Could not update the private key password.":"Klarte ikke å oppdatere privatnøkkelpassordet.",
"The old password was not correct, please try again.":"Det gamle passordet var feil. Prøv igjen.",
"The current log-in password was not correct, please try again.":"Det nåværende innloggingspassordet var feil. Prøv igjen.",
"Private key password successfully updated.":"Passord for privat nøkkel ble oppdatert.",
"File recovery settings updated":"Innstillinger for gjenoppretting av filer ble oppdatert",
"Could not update file recovery":"Klarte ikke å oppdatere gjenoppretting av filer",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.":"Krypterings-app ikke initialisert! Kanskje krypterings-appen ble aktivert på nytt i løpet av økten din. Prøv å logge ut og logge inn igjen for å initialisere krypterings-appen.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.":"Din private nøkkel er ikke gyldig! Sannsynligvis ble passordet ditt endret utenfor %s. (f.eks. din bedriftskatalog). Du kan oppdatere passordet for din private nøkkel i dine personlige innstillinger for å gjenvinne tilgang til de krypterte filene dine.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt.",
"Unknown error. Please check your system settings or contact your administrator":"Ukjent feil. Sjekk systeminnstillingene eller kontakt administratoren.",
"Initial encryption started... This can take some time. Please wait.":"Førstegangs kryptering startet... Dette kan ta litt tid. Vennligst vent.",
"Initial encryption running... Please try again later.":"Førstegangs kryptering kjører... Prøv igjen senere.",
"Missing requirements.":"Manglende krav.",
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.":"Vennligst se til at OpenSSL sammen med PHP-utvidelsen er aktivert og riktig konfigurert. Krypterings-appen er foreløpig deaktivert.",
"Following users are not set up for encryption:":"Følgende brukere er ikke satt opp for kryptering:",
"Go directly to your %spersonal settings%s.":"Gå direkte til dine %spersonlige innstillinger%s.",
"Server-side Encryption":"Serverkryptering",
"You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator":"Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Vennligst kjør 'occ encryption:migrate' eller kontakt en administrator",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.":"Ugyldig privat nøkkel for Krypterings-app. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine.",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again":"App for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og logg inn igjen.",
"Enable recovery key (allow to recover users files in case of password loss):":"Aktiver gjenopprettingsnøkkel (tillat å gjenopprette brukerfiler i tilfelle tap av passord):",
"Encryption App is enabled and ready":"Krypterings-appen er aktivert og klar",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt.",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.":"Kan ikke lese denne filen, som sannsynligvis er en delt fil. Be eieren av filen om å dele den med deg på nytt.",
"The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password.":"Gjenopprettingsnøkkelen er en ekstra krypteringsnøkkel som brukes til å kryptere filer. Den tillater gjenoppretting av en brukers filer i tilfelle brukeren glemmer passordet sitt.",
"Recovery key password":"Passord for gjenopprettingsnøkkel",
"Repeat Recovery key password":"Gjenta passord for gjenopprettingsnøkkel",
"Enabled":"Aktiv",
"Disabled":"Inaktiv",
"Repeat recovery key password":"Gjenta passord for gjenopprettingsnøkkel",
"Change recovery key password:":"Endre passord for gjenopprettingsnøkkel:",
"Old Recovery key password":"Gammelt passord for gjenopprettingsnøkkel",
"New Recovery key password":"Nytt passord for gjenopprettingsnøkkel",
"Repeat New Recovery key password":"Gjenta nytt passord for gjenopprettingsnøkkel",
"Old recovery key password":"Gammelt passord for gjenopprettingsnøkkel",
"New recovery key password":"Nytt passord for gjenopprettingsnøkkel",
"Repeat new recovery key password":"Gjenta nytt passord for gjenopprettingsnøkkel",
"Your private key password no longer matches your log-in password.":"Passordet for din private nøkkel stemmer ikke lenger med påloggingspassordet ditt.",
"Set your old private key password to your current log-in password:":"Sett ditt gamle passord for privat nøkkel til ditt nåværende påloggingspassord:",
" If you don't remember your old password you can ask your administrator to recover your files.":"Hvis du ikke husker det gamle passordet ditt kan du spørre administratoren om å gjenopprette filene dine.",
"Update Private Key Password":"Oppdater passord for privat nøkkel",
"Enable password recovery:":"Aktiver gjenoppretting av passord:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt."
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss":"Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt.",
"Enabled":"Aktiv",
"Disabled":"Inaktiv"
},"pluralForm":"nplurals=2; plural=(n != 1);"
}
Some files were not shown because too many files have changed in this diff
Show More
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.