Compare commits

..

19 Commits

Author SHA1 Message Date
Nextcloud bot ea445a7c36
[tx-robot] updated from transifex 2019-01-15 01:19:22 +00:00
Nextcloud bot 43a5e429a6
[tx-robot] updated from transifex 2019-01-13 01:19:43 +00:00
Nextcloud bot 414696dd76
[tx-robot] updated from transifex 2019-01-11 01:18:40 +00:00
Nextcloud bot 838ffda63e
[tx-robot] updated from transifex 2018-12-27 01:18:15 +00:00
Nextcloud bot 39db548e65
[tx-robot] updated from transifex 2018-12-21 01:18:00 +00:00
Nextcloud bot 71daab5c7f
[tx-robot] updated from transifex 2018-12-10 01:17:52 +00:00
Nextcloud bot 0e0d83f9c6
[tx-robot] updated from transifex 2018-11-27 01:17:41 +00:00
Nextcloud bot 137a5638c5
[tx-robot] updated from transifex 2018-11-15 01:18:15 +00:00
Nextcloud bot 43b1494391
[tx-robot] updated from transifex 2018-11-13 01:19:43 +00:00
Nextcloud bot 11fd83238a
[tx-robot] updated from transifex 2018-11-06 01:18:53 +00:00
Nextcloud bot b5a44d2163
[tx-robot] updated from transifex 2018-10-22 00:12:33 +00:00
Nextcloud bot a4c91d0dc7
[tx-robot] updated from transifex 2018-10-11 00:11:22 +00:00
Nextcloud bot f549ce1fb1
[tx-robot] updated from transifex 2018-09-30 00:18:00 +00:00
Nextcloud bot 9c6f139ee7
[tx-robot] updated from transifex 2018-09-27 00:18:44 +00:00
Nextcloud bot 3279a74d03
[tx-robot] updated from transifex 2018-09-26 00:18:26 +00:00
Nextcloud bot a684161b67
[tx-robot] updated from transifex 2018-09-25 08:40:26 +00:00
Nextcloud bot 417eab148e
[tx-robot] updated from transifex 2018-09-01 00:18:03 +00:00
Nextcloud bot 8bfd5a3c2c
[tx-robot] updated from transifex 2018-08-27 00:18:08 +00:00
Nextcloud bot e8567cf835
[tx-robot] updated from transifex 2018-08-23 00:19:33 +00:00
74 changed files with 234 additions and 450 deletions

View File

@ -1,138 +1,142 @@
kind: pipeline
name: compatibility
clone:
git:
image: plugins/git
depth: 1
steps:
- name: syntax-php7.1
image: nextcloudci/php7.1:php7.1-16
pipeline:
signed-off-check:
image: nextcloudci/php7.0:php7.0-2
environment:
APP_NAME: data_request
CORE_BRANCH: master
DATABASEHOST: sqlite
- APP_NAME=data_request
- CORE_BRANCH=master
- DB=sqlite
commands:
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
- php ./build/signed-off-checker.php
when:
matrix:
TESTS: signed-off-check
check-app-compatbility:
image: nextcloudci/php7.0:php7.0-2
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable13
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
# Code checker
- ./occ app:check-code $APP_NAME
- cd apps/$APP_NAME/
when:
matrix:
TESTS: check-app-compatbility
syntax-php5.6:
image: nextcloudci/php5.6:php5.6-8
environment:
- APP_NAME=data_request
- CORE_BRANCH=stable13
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
- composer install
- ./lib/composer/bin/parallel-lint apps/$APP_NAME/
- name: syntax-php7.3
image: nextcloudci/php7.3:php7.3-1
when:
matrix:
TESTS: syntax-php5.6
syntax-php7.0:
image: nextcloudci/php7.0:php7.0-2
environment:
APP_NAME: data_request
CORE_BRANCH: master
DATABASEHOST: sqlite
- APP_NAME=data_request
- CORE_BRANCH=stable13
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
- composer install
- ./lib/composer/bin/parallel-lint apps/$APP_NAME/
- name: app-code-check
image: nextcloudci/php7.3:php7.3-1
when:
matrix:
TESTS: syntax-php7.0
php5.6:
image: nextcloudci/php5.6:php5.6-8
environment:
APP_NAME: data_request
CORE_BRANCH: master
DATABASEHOST: sqlite
- APP_NAME=data_request
- CORE_BRANCH=stable13
- DB=sqlite
commands:
- apt update && apt-get -y install php5-xdebug
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- cd ../server
- ./occ app:check-code $APP_NAME
- cd apps/$APP_NAME/
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: unit-sqlite-php7.1
steps:
- name: sqlite-php7.1
image: nextcloudci/php7.1:php7.1-16
environment:
APP_NAME: data_request
CORE_BRANCH: master
DATABASEHOST: sqlite
commands:
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- cd ../server
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- ./occ app:enable $APP_NAME
- cd apps/$APP_NAME
# Run phpunit tests
- cd tests/unit/
- phpunit --configuration phpunit.xml
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: unit-sqlite-php7.2
steps:
- name: sqlite-php7.2
image: nextcloudci/php7.2:php7.2-12
when:
matrix:
TESTS: php5.6
php7.0:
image: nextcloudci/php7.0:php7.0-2
environment:
APP_NAME: data_request
CORE_BRANCH: master
DATABASEHOST: sqlite
- APP_NAME=data_request
- CORE_BRANCH=stable13
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- cd ../server
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- ./occ app:enable $APP_NAME
- cd apps/$APP_NAME
# Run phpunit tests
- cd tests/unit/
- phpunit --configuration phpunit.xml
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: unit-sqlite-php7.3
steps:
- name: sqlite-php7.3
image: nextcloudci/php7.3:php7.3-1
when:
matrix:
TESTS: php7.0
php7.1:
image: nextcloudci/php7.1:php7.1-15
environment:
APP_NAME: data_request
CORE_BRANCH: master
DATABASEHOST: sqlite
- APP_NAME=data_request
- CORE_BRANCH=stable13
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- cd ../server
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- ./occ app:enable $APP_NAME
- cd apps/$APP_NAME
# Run phpunit tests
- cd tests/unit/
- phpunit --configuration phpunit.xml
when:
matrix:
TESTS: php7.1
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
matrix:
include:
- TESTS: signed-off-check
- TESTS: check-app-compatbility
- TESTS: syntax-php5.6
- TESTS: syntax-php7.0
- TESTS: php5.6
- TESTS: php7.0
- TESTS: php7.1

View File

@ -4,8 +4,8 @@
<id>data_request</id>
<name>Data Request</name>
<summary>Request your data from the admins</summary>
<description><![CDATA[Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request.]]></description>
<version>1.5.0</version>
<description><![CDATA[Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request.]]></description>
<version>1.0.1</version>
<licence>agpl</licence>
<author mail="blizzz@arthur-schiwon.de" homepage="https://nextcloud.com">Arthur Schiwon</author>
<namespace>DataRequest</namespace>
@ -15,7 +15,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/data_request/master/screenshots/personal-settings.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/data_request/master/screenshots/settings-close-up.png</screenshot>
<dependencies>
<nextcloud min-version="18" max-version="18" />
<nextcloud min-version="13" max-version="13"/>
</dependencies>
<settings>

View File

@ -1,6 +0,0 @@
OC.L10N.register(
"data_request",
{
"Account" : "Профил"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,4 +0,0 @@
{ "translations": {
"Account" : "Профил"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -2,20 +2,19 @@ OC.L10N.register(
"data_request",
{
"sent!" : "enviat!",
"No administrator could have been contacted." : "No sha pogut contactar amb cap administrador.",
"No administrator could have been contacted." : "No es va poder contactar caap administrador.",
"Personal data export request" : "Sol·licitud d'exportació de dades de caràcter personal",
"Hello %s," : "Hola %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "L'usuari %s, identificat per id d'usuari \"%s\", ha demanat una exportació de les seves dades personals. Si us plau, actueu en conseqüència.",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "L'usuari %s, identificats per id d'usuari \"%s\", ha demanat una exportació de les seves dades personals. Si us plau, actuar en conseqüència.",
"Account deletion request" : "Sol·licitud de supressió de compte",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "L'usuari %s, identificat per id d'usuari \"%s\", ha demanat suprimir el compte. Si us plau, actueu en conseqüència.",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "L'usuari %s, identificats per id d'usuari \"%s\", ha demanat suprimir el compte. Si us plau, actuar en conseqüència.",
"No administrator has set an email address" : "Cap administrador ha definit una adreça de correu electrònic",
"Data Request" : "Petició de Dades",
"Request your data from the admins" : "Demaneu les vostres dades dels administradors",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permet als vostres usuaris sol·licitar lexportació o la supressió de les seves dades. Les opcions dacord safegeixen a la secció de configuració personal. Els administradors seran notificats per correu electrònic sobre la sol·licitud.",
"Request your data from the admins" : "Sol·licitar les teves dades dels administradors",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permetre els usuaris per a sol·licitar una exportació o supressió de les seves dades. Les opcions corresponents s'afegeixen a l'apartat de configuració personal. Els administracions seràn notificats per correu electrònic sobre la petició.",
"Account" : "Compte",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Podeu sol·licitar a ladministrador del sistema lexportació de les vostres dades o la supressió del compte. Pot trigar fins a 30 dies.",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Pots sol·licitar a ladministrador del sistema lexportació de les teves dades o lesborrat del compte. Pot trigar fins a 30 dies.",
"Request data export" : "Sol·licitud d'exportació de dades",
"Request account deletion" : "Sol·licitud de supressió de compte",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permet als vostres usuaris sol·licitar lexportació o la supressió de les seves dades. Les opcions dacord safegeixen a la secció de configuració personal. Els administradors seran notificats per correu electrònic sobre la sol·licitud."
"Request account deletion" : "Sol·licitud de supressió de compte"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,19 +1,18 @@
{ "translations": {
"sent!" : "enviat!",
"No administrator could have been contacted." : "No sha pogut contactar amb cap administrador.",
"No administrator could have been contacted." : "No es va poder contactar caap administrador.",
"Personal data export request" : "Sol·licitud d'exportació de dades de caràcter personal",
"Hello %s," : "Hola %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "L'usuari %s, identificat per id d'usuari \"%s\", ha demanat una exportació de les seves dades personals. Si us plau, actueu en conseqüència.",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "L'usuari %s, identificats per id d'usuari \"%s\", ha demanat una exportació de les seves dades personals. Si us plau, actuar en conseqüència.",
"Account deletion request" : "Sol·licitud de supressió de compte",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "L'usuari %s, identificat per id d'usuari \"%s\", ha demanat suprimir el compte. Si us plau, actueu en conseqüència.",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "L'usuari %s, identificats per id d'usuari \"%s\", ha demanat suprimir el compte. Si us plau, actuar en conseqüència.",
"No administrator has set an email address" : "Cap administrador ha definit una adreça de correu electrònic",
"Data Request" : "Petició de Dades",
"Request your data from the admins" : "Demaneu les vostres dades dels administradors",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permet als vostres usuaris sol·licitar lexportació o la supressió de les seves dades. Les opcions dacord safegeixen a la secció de configuració personal. Els administradors seran notificats per correu electrònic sobre la sol·licitud.",
"Request your data from the admins" : "Sol·licitar les teves dades dels administradors",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permetre els usuaris per a sol·licitar una exportació o supressió de les seves dades. Les opcions corresponents s'afegeixen a l'apartat de configuració personal. Els administracions seràn notificats per correu electrònic sobre la petició.",
"Account" : "Compte",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Podeu sol·licitar a ladministrador del sistema lexportació de les vostres dades o la supressió del compte. Pot trigar fins a 30 dies.",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Pots sol·licitar a ladministrador del sistema lexportació de les teves dades o lesborrat del compte. Pot trigar fins a 30 dies.",
"Request data export" : "Sol·licitud d'exportació de dades",
"Request account deletion" : "Sol·licitud de supressió de compte",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permet als vostres usuaris sol·licitar lexportació o la supressió de les seves dades. Les opcions dacord safegeixen a la secció de configuració personal. Els administradors seran notificats per correu electrònic sobre la sol·licitud."
"Request account deletion" : "Sol·licitud de supressió de compte"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Žádný ze správců nemá nastavenou emailovou adresu",
"Data Request" : "Požadavek na data",
"Request your data from the admins" : "Vyžádat si svá data od správců",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umožnit uživatelům požádat o export nebo smazání jejich dat. Dle voleb jsou přidány do sekce osobních nastavení. Správci budou upozorněni na požadavek emailem.",
"Account" : "Účet",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "U správce systému je možné si zažádat si o export svých dat nebo smazání účtu. Vyřízení může trvat až 30 dnů.",
"Request data export" : "Vyžádat export dat",
"Request account deletion" : "Vyžádat smazání účtu",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umožnit uživatelům požádat o export nebo smazání jejich dat. Dle voleb jsou přidány do sekce osobních nastavení. Správci budou upozorněni na požadavek emailem."
"Request account deletion" : "Vyžádat smazání účtu"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "Žádný ze správců nemá nastavenou emailovou adresu",
"Data Request" : "Požadavek na data",
"Request your data from the admins" : "Vyžádat si svá data od správců",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umožnit uživatelům požádat o export nebo smazání jejich dat. Dle voleb jsou přidány do sekce osobních nastavení. Správci budou upozorněni na požadavek emailem.",
"Account" : "Účet",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "U správce systému je možné si zažádat si o export svých dat nebo smazání účtu. Vyřízení může trvat až 30 dnů.",
"Request data export" : "Vyžádat export dat",
"Request account deletion" : "Vyžádat smazání účtu",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umožnit uživatelům požádat o export nebo smazání jejich dat. Dle voleb jsou přidány do sekce osobních nastavení. Správci budou upozorněni na požadavek emailem."
"Request account deletion" : "Vyžádat smazání účtu"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Ingen administrator har opgivet en emailadresse",
"Data Request" : "Anmodning om data",
"Request your data from the admins" : "Anmod om dine data fra administratorerne",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Gør det muligt for dine brugere at anmode om eksport eller sletning af deres data. De tilhørende funktioner tilføjes til sektionen med personlige indstillinger. Administratorer vil få en email, når der indgives en anmodning.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gør det muligt for dine brugere at anmode om eksport eller sletning af deres data. De tilhørende funktion tilføjes til sektionen med personlige indstillinger. Administratorer vil få en email, når der indgives en anmodning.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Du kan anmode om at få eksporteret dine data eller slettet din konto fra systemadministratoren. Dette kan tage op til 30 dage.",
"Request data export" : "Anmodning om eksport af data",
"Request account deletion" : "Anmodning om sletning af konto",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gør det muligt for dine brugere at anmode om eksport eller sletning af deres data. De tilhørende funktion tilføjes til sektionen med personlige indstillinger. Administratorer vil få en email, når der indgives en anmodning."
"Request account deletion" : "Anmodning om sletning af konto"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Ingen administrator har opgivet en emailadresse",
"Data Request" : "Anmodning om data",
"Request your data from the admins" : "Anmod om dine data fra administratorerne",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Gør det muligt for dine brugere at anmode om eksport eller sletning af deres data. De tilhørende funktioner tilføjes til sektionen med personlige indstillinger. Administratorer vil få en email, når der indgives en anmodning.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gør det muligt for dine brugere at anmode om eksport eller sletning af deres data. De tilhørende funktion tilføjes til sektionen med personlige indstillinger. Administratorer vil få en email, når der indgives en anmodning.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Du kan anmode om at få eksporteret dine data eller slettet din konto fra systemadministratoren. Dette kan tage op til 30 dage.",
"Request data export" : "Anmodning om eksport af data",
"Request account deletion" : "Anmodning om sletning af konto",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gør det muligt for dine brugere at anmode om eksport eller sletning af deres data. De tilhørende funktion tilføjes til sektionen med personlige indstillinger. Administratorer vil få en email, når der indgives en anmodning."
"Request account deletion" : "Anmodning om sletning af konto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -10,12 +10,11 @@ OC.L10N.register(
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "Der Benutzer %s, identifiziert durch die Benutzer-ID \"%s\", hat eine Löschung seines Kontos angefordert. Bitte handle entsprechend.",
"No administrator has set an email address" : "Kein Administrator hat eine E-Mail-Adresse angegeben",
"Data Request" : "Datenanforderung",
"Request your data from the admins" : "Fordere Deine Daten bei den Administratoren an",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Erlaubt Deinen Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per E-Mail über die Anforderung benachrichtigt.",
"Request your data from the admins" : "Fordere deine Daten bei den Administratoren an",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Erlaube deinen Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Du kannst einen Export Deiner Daten oder die Konto-Löschung beim System-Administrator anfordern. Das kann bis zu 30 Tage dauern.",
"Request data export" : "Daten-Export anfordern",
"Request account deletion" : "Konto-Löschung fordern",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Erlaube Deinen Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt."
"Request account deletion" : "Konto-Löschung fordern"
},
"nplurals=2; plural=(n != 1);");

View File

@ -8,12 +8,11 @@
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "Der Benutzer %s, identifiziert durch die Benutzer-ID \"%s\", hat eine Löschung seines Kontos angefordert. Bitte handle entsprechend.",
"No administrator has set an email address" : "Kein Administrator hat eine E-Mail-Adresse angegeben",
"Data Request" : "Datenanforderung",
"Request your data from the admins" : "Fordere Deine Daten bei den Administratoren an",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Erlaubt Deinen Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per E-Mail über die Anforderung benachrichtigt.",
"Request your data from the admins" : "Fordere deine Daten bei den Administratoren an",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Erlaube deinen Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Du kannst einen Export Deiner Daten oder die Konto-Löschung beim System-Administrator anfordern. Das kann bis zu 30 Tage dauern.",
"Request data export" : "Daten-Export anfordern",
"Request account deletion" : "Konto-Löschung fordern",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Erlaube Deinen Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt."
"Request account deletion" : "Konto-Löschung fordern"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Kein Administrator hat eine E-Mail-Adresse angegeben",
"Data Request" : "Datenanforderung",
"Request your data from the admins" : "Daten vom Administrator anfordern",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Erlaubt Ihren Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per E-Mail über die Anforderung benachrichtigt.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ihren Nutzern erlauben einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Sie können einen Export Ihrer Daten oder die Konto-Löschung beim System-Administrator anfordern. Das kann bis zu 30 Tage dauern.",
"Request data export" : "Daten-Export anfordern",
"Request account deletion" : "Konto-Löschung anfordern",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ihren Nutzern erlauben einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt."
"Request account deletion" : "Konto-Löschung fordern"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Kein Administrator hat eine E-Mail-Adresse angegeben",
"Data Request" : "Datenanforderung",
"Request your data from the admins" : "Daten vom Administrator anfordern",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Erlaubt Ihren Nutzern einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per E-Mail über die Anforderung benachrichtigt.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ihren Nutzern erlauben einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Sie können einen Export Ihrer Daten oder die Konto-Löschung beim System-Administrator anfordern. Das kann bis zu 30 Tage dauern.",
"Request data export" : "Daten-Export anfordern",
"Request account deletion" : "Konto-Löschung anfordern",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ihren Nutzern erlauben einen Export oder die Löschung ihrer Daten anzufordern. Passende Optionen werden in der persönlichen Seite der Nutzer angezeigt. Administratoren werden per Mail über die Anforderung benachrichtigt."
"Request account deletion" : "Konto-Löschung fordern"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -7,8 +7,8 @@ OC.L10N.register(
"No administrator has set an email address" : "Κανένας διαχειριστής δεν όρισε μια διεύθυνση ηλεκτρονικού ταχυδρομείου",
"Data Request" : "Αίτημα δεδομένων",
"Request your data from the admins" : "Αιτηθείτε τα δεδομένα από τους διαχειριστές",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ενεργοποίηση των αιτημάτων χρηστών για εξαγωγή ή διαγραφή των δεδομένων τους. Σύμφωνα με τις επιλογές που έχουν προστεθεί στο τμήμα των προσωπικών ρυθμίσεων.Οι διαχειρηστές θα ειδοποιούνται με email για το αίτημα.",
"Account" : "Λογαριασμός",
"Request account deletion" : "Αίτηση διαγραφής λογαριασμού",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ενεργοποίηση των αιτημάτων χρηστών για εξαγωγή ή διαγραφή των δεδομένων τους. Σύμφωνα με τις επιλογές που έχουν προστεθεί στο τμήμα των προσωπικών ρυθμίσεων.Οι διαχειρηστές θα ειδοποιούνται με email για το αίτημα."
"Request account deletion" : "Αίτηση διαγραφής λογαριασμού"
},
"nplurals=2; plural=(n != 1);");

View File

@ -5,8 +5,8 @@
"No administrator has set an email address" : "Κανένας διαχειριστής δεν όρισε μια διεύθυνση ηλεκτρονικού ταχυδρομείου",
"Data Request" : "Αίτημα δεδομένων",
"Request your data from the admins" : "Αιτηθείτε τα δεδομένα από τους διαχειριστές",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ενεργοποίηση των αιτημάτων χρηστών για εξαγωγή ή διαγραφή των δεδομένων τους. Σύμφωνα με τις επιλογές που έχουν προστεθεί στο τμήμα των προσωπικών ρυθμίσεων.Οι διαχειρηστές θα ειδοποιούνται με email για το αίτημα.",
"Account" : "Λογαριασμός",
"Request account deletion" : "Αίτηση διαγραφής λογαριασμού",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ενεργοποίηση των αιτημάτων χρηστών για εξαγωγή ή διαγραφή των δεδομένων τους. Σύμφωνα με τις επιλογές που έχουν προστεθεί στο τμήμα των προσωπικών ρυθμίσεων.Οι διαχειρηστές θα ειδοποιούνται με email για το αίτημα."
"Request account deletion" : "Αίτηση διαγραφής λογαριασμού"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "No administrator has set an email address",
"Data Request" : "Data Request",
"Request your data from the admins" : "Request your data from the admins",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request.",
"Account" : "Account",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "You can request an export of your data or account deletion from the system administrator. This can take up to 30 days.",
"Request data export" : "Request data export",
"Request account deletion" : "Request account deletion",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request."
"Request account deletion" : "Request account deletion"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "No administrator has set an email address",
"Data Request" : "Data Request",
"Request your data from the admins" : "Request your data from the admins",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request.",
"Account" : "Account",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "You can request an export of your data or account deletion from the system administrator. This can take up to 30 days.",
"Request data export" : "Request data export",
"Request account deletion" : "Request account deletion",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request."
"Request account deletion" : "Request account deletion"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Neniu administranto havas retpoŝtadreson.",
"Data Request" : "Peto pri datumoj",
"Request your data from the admins" : "Peti viajn datumojn el via administranto",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permesas al viaj uzantoj peti eksporton aŭ forigadon de iliaj datumoj. Laŭaj opcioj aldoniĝos al iliaj agordoj. Administrantoj sciiĝos per retpoŝtmesaĝo pri la peto.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Vi povas peti eksporton de viaj datumoj aŭ forigadon de via konto el la sistema administranto. Tio povas daŭri ĝis 30 tagoj.",
"Request data export" : "Peti datumeksporton",
"Request account deletion" : "Peti kontoforigadon",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permesas al viaj uzantoj peti eksporton aŭ forigadon de iliaj datumoj. Laŭaj opcioj aldoniĝos al iliaj agordoj. Administrantoj sciiĝos per retpoŝtmesaĝo pri la peto."
"Request account deletion" : "Peti kontoforigadon"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "Neniu administranto havas retpoŝtadreson.",
"Data Request" : "Peto pri datumoj",
"Request your data from the admins" : "Peti viajn datumojn el via administranto",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permesas al viaj uzantoj peti eksporton aŭ forigadon de iliaj datumoj. Laŭaj opcioj aldoniĝos al iliaj agordoj. Administrantoj sciiĝos per retpoŝtmesaĝo pri la peto.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Vi povas peti eksporton de viaj datumoj aŭ forigadon de via konto el la sistema administranto. Tio povas daŭri ĝis 30 tagoj.",
"Request data export" : "Peti datumeksporton",
"Request account deletion" : "Peti kontoforigadon",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permesas al viaj uzantoj peti eksporton aŭ forigadon de iliaj datumoj. Laŭaj opcioj aldoniĝos al iliaj agordoj. Administrantoj sciiĝos per retpoŝtmesaĝo pri la peto."
"Request account deletion" : "Peti kontoforigadon"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Ningún administrador ha establecido una dirección de correo electrónico",
"Data Request" : "Solicitud de datos",
"Request your data from the admins" : "Solicite sus datos a los administradores.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permitir que los usuarios soliciten una exportación o una eliminación de sus datos. Las correspondientes opciones son añadidas a la sección de ajustes personales. Los Administradores será notificados por correo acerca de las peticiones.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permite que sus usuarios soliciten la exportación o eliminación de sus datos. Las opciones conformes se agregan a la sección de configuración personal. Las administraciones serán notificados por correo electrónico sobre la solicitud.",
"Account" : "Cuenta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Puede solicitar la exportación de sus datos o la eliminación de la cuenta desde el administrador de sistema. Esto puede tardar hasta 30 días.",
"Request data export" : "Solicitar la exportación de datos",
"Request account deletion" : "Solicitar la eliminación de la cuenta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permite que sus usuarios soliciten la exportación o eliminación de sus datos. Las opciones conformes se agregan a la sección de configuración personal. Las administraciones serán notificados por correo electrónico sobre la solicitud."
"Request account deletion" : "Solicitar la eliminación de la cuenta"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Ningún administrador ha establecido una dirección de correo electrónico",
"Data Request" : "Solicitud de datos",
"Request your data from the admins" : "Solicite sus datos a los administradores.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permitir que los usuarios soliciten una exportación o una eliminación de sus datos. Las correspondientes opciones son añadidas a la sección de ajustes personales. Los Administradores será notificados por correo acerca de las peticiones.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permite que sus usuarios soliciten la exportación o eliminación de sus datos. Las opciones conformes se agregan a la sección de configuración personal. Las administraciones serán notificados por correo electrónico sobre la solicitud.",
"Account" : "Cuenta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Puede solicitar la exportación de sus datos o la eliminación de la cuenta desde el administrador de sistema. Esto puede tardar hasta 30 días.",
"Request data export" : "Solicitar la exportación de datos",
"Request account deletion" : "Solicitar la eliminación de la cuenta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permite que sus usuarios soliciten la exportación o eliminación de sus datos. Las opciones conformes se agregan a la sección de configuración personal. Las administraciones serán notificados por correo electrónico sobre la solicitud."
"Request account deletion" : "Solicitar la eliminación de la cuenta"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Ningún adminsitrador ha establecido una cuenta de correo electrónico",
"Data Request" : "Solicitud de Datos",
"Request your data from the admins" : "Solicita tus datos de otros adminsitradores",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permítele a tus usuarios solciitar un exportado o el borrado de sus datos. Las opciones correspondientes se agregan a la sección de configuración personal. Los administradores serán notificados por correo electrónico de la solicitud.",
"Account" : "Cuenta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Puedes solicitar exportar tus datoso borrar la cuenta a tu adminsitrador del sistema. Esto puede tomar hasta 30 días.",
"Request data export" : "Solicitar exportar datos",
"Request account deletion" : "Solicitar borrado de cuenta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permítele a tus usuarios solciitar un exportado o el borrado de sus datos. Las opciones correspondientes se agregan a la sección de configuración personal. Los administradores serán notificados por correo electrónico de la solicitud."
"Request account deletion" : "Solicitar borrado de cuenta"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "Ningún adminsitrador ha establecido una cuenta de correo electrónico",
"Data Request" : "Solicitud de Datos",
"Request your data from the admins" : "Solicita tus datos de otros adminsitradores",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permítele a tus usuarios solciitar un exportado o el borrado de sus datos. Las opciones correspondientes se agregan a la sección de configuración personal. Los administradores serán notificados por correo electrónico de la solicitud.",
"Account" : "Cuenta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Puedes solicitar exportar tus datoso borrar la cuenta a tu adminsitrador del sistema. Esto puede tomar hasta 30 días.",
"Request data export" : "Solicitar exportar datos",
"Request account deletion" : "Solicitar borrado de cuenta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permítele a tus usuarios solciitar un exportado o el borrado de sus datos. Las opciones correspondientes se agregan a la sección de configuración personal. Los administradores serán notificados por correo electrónico de la solicitud."
"Request account deletion" : "Solicitar borrado de cuenta"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,13 +0,0 @@
OC.L10N.register(
"data_request",
{
"sent!" : "bidalita!",
"No administrator could have been contacted." : "Ezin izan da administratzailerik kontaktatu.",
"Hello %s," : "Kaixo %s,",
"Data Request" : "Datu eskaera",
"Request your data from the admins" : "Eskatu zure datuak administratzaileei",
"Account" : "Kontua",
"Request data export" : "Eskatu datuen esportazioa",
"Request account deletion" : "Eskatua kontuaren ezabaketa"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,11 +0,0 @@
{ "translations": {
"sent!" : "bidalita!",
"No administrator could have been contacted." : "Ezin izan da administratzailerik kontaktatu.",
"Hello %s," : "Kaixo %s,",
"Data Request" : "Datu eskaera",
"Request your data from the admins" : "Eskatu zure datuak administratzaileei",
"Account" : "Kontua",
"Request data export" : "Eskatu datuen esportazioa",
"Request account deletion" : "Eskatua kontuaren ezabaketa"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Yksikään ylläpitäjä ei ole asettanut sähköpostiosoitettaan",
"Data Request" : "Tietopyyntö",
"Request your data from the admins" : "Pyydä tietosi ylläpidolta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Salli käyttäjien pyytää tietojensa viemistä tai tilinsä poistamista. Valinnat lisätään näkyviin käyttäjien henkilökohtaiseen osioon. Ylläpidolle ilmoitetaan saapuneista tietopyynnöistä sähköpostitse.",
"Account" : "Tili",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Voit pyytää tietojesi viemistä tai tilin poistamista järjestelmän ylläpitäjiltä. Toimenpiteessä voi kestää 30 päivää.",
"Request data export" : "Pyydän tietojen vientiä",
"Request account deletion" : "Pyydä tilin poistoa",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Salli käyttäjien pyytää tietojensa viemistä tai tilinsä poistamista. Valinnat lisätään näkyviin käyttäjien henkilökohtaiseen osioon. Ylläpidolle ilmoitetaan saapuneista tietopyynnöistä sähköpostitse."
"Request account deletion" : "Pyydä tilin poistoa"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "Yksikään ylläpitäjä ei ole asettanut sähköpostiosoitettaan",
"Data Request" : "Tietopyyntö",
"Request your data from the admins" : "Pyydä tietosi ylläpidolta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Salli käyttäjien pyytää tietojensa viemistä tai tilinsä poistamista. Valinnat lisätään näkyviin käyttäjien henkilökohtaiseen osioon. Ylläpidolle ilmoitetaan saapuneista tietopyynnöistä sähköpostitse.",
"Account" : "Tili",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Voit pyytää tietojesi viemistä tai tilin poistamista järjestelmän ylläpitäjiltä. Toimenpiteessä voi kestää 30 päivää.",
"Request data export" : "Pyydän tietojen vientiä",
"Request account deletion" : "Pyydä tilin poistoa",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Salli käyttäjien pyytää tietojensa viemistä tai tilinsä poistamista. Valinnat lisätään näkyviin käyttäjien henkilökohtaiseen osioon. Ylläpidolle ilmoitetaan saapuneista tietopyynnöistä sähköpostitse."
"Request account deletion" : "Pyydä tilin poistoa"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Aucun administrateur n'a défini d'adresse E-mail",
"Data Request" : "Demande de données",
"Request your data from the admins" : "Demander vos données aux administrateurs",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permet à vos utilisateurs de demander l'exportation ou la suppression de leurs données. Les options sont ajoutées à la section des paramètres personnels. Les administrateurs seront notifiés par courriel de la demande.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permet à vos utilisateurs de demander l'export ou la suppression de leurs données. Les options relatives sont ajoutées à la section des paramètres personnels. Les administrateurs seront avertis par E-mail de la demande.",
"Account" : "Compte",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Vous pouvez demander un export de vos données ou la suppression de votre compte à l'administrateur du système. Ceci peut prendre jusqu'à 30 jours.",
"Request data export" : "Demander l'export de données",
"Request account deletion" : "Demander la suppression d'un compte",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permet à vos utilisateurs de demander l'export ou la suppression de leurs données. Les options relatives sont ajoutées à la section des paramètres personnels. Les administrateurs seront avertis par E-mail de la demande."
"Request account deletion" : "Demander la suppression d'un compte"
},
"nplurals=2; plural=(n > 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Aucun administrateur n'a défini d'adresse E-mail",
"Data Request" : "Demande de données",
"Request your data from the admins" : "Demander vos données aux administrateurs",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permet à vos utilisateurs de demander l'exportation ou la suppression de leurs données. Les options sont ajoutées à la section des paramètres personnels. Les administrateurs seront notifiés par courriel de la demande.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permet à vos utilisateurs de demander l'export ou la suppression de leurs données. Les options relatives sont ajoutées à la section des paramètres personnels. Les administrateurs seront avertis par E-mail de la demande.",
"Account" : "Compte",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Vous pouvez demander un export de vos données ou la suppression de votre compte à l'administrateur du système. Ceci peut prendre jusqu'à 30 jours.",
"Request data export" : "Demander l'export de données",
"Request account deletion" : "Demander la suppression d'un compte",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permet à vos utilisateurs de demander l'export ou la suppression de leurs données. Les options relatives sont ajoutées à la section des paramètres personnels. Les administrateurs seront avertis par E-mail de la demande."
"Request account deletion" : "Demander la suppression d'un compte"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Ningún administrador estabeleceu un enderezo de correo-e",
"Data Request" : "Solicitude de datos",
"Request your data from the admins" : "Solicite os seus datos aos administradores.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permita que os seus usuarios soliciten unha exportación ou eliminación dos seus datos. As opcións correspondentes engádense á sección de axustes persoais. Os administradores serán notificados por correo electrónico sobre a solicitude.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus usuarios soliciten unha exportación ou eliminación dos seus datos. As opcións corresondentes engádense á sección de axustes persoais. As administracións notificaranse por correo electrónico sobre a solicitude.",
"Account" : "Conta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Pode solicitar a exportación dos seus datos ou a eliminación da conta dende o administrador do sistema. Isto pode demorar ata 30 días. ",
"Request data export" : "Solicitar a exportación de datos ",
"Request account deletion" : "Solicitar a eliminación da conta ",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus usuarios soliciten unha exportación ou eliminación dos seus datos. As opcións corresondentes engádense á sección de axustes persoais. As administracións notificaranse por correo electrónico sobre a solicitude."
"Request account deletion" : "Solicitar a eliminación da conta "
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Ningún administrador estabeleceu un enderezo de correo-e",
"Data Request" : "Solicitude de datos",
"Request your data from the admins" : "Solicite os seus datos aos administradores.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permita que os seus usuarios soliciten unha exportación ou eliminación dos seus datos. As opcións correspondentes engádense á sección de axustes persoais. Os administradores serán notificados por correo electrónico sobre a solicitude.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus usuarios soliciten unha exportación ou eliminación dos seus datos. As opcións corresondentes engádense á sección de axustes persoais. As administracións notificaranse por correo electrónico sobre a solicitude.",
"Account" : "Conta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Pode solicitar a exportación dos seus datos ou a eliminación da conta dende o administrador do sistema. Isto pode demorar ata 30 días. ",
"Request data export" : "Solicitar a exportación de datos ",
"Request account deletion" : "Solicitar a eliminación da conta ",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus usuarios soliciten unha exportación ou eliminación dos seus datos. As opcións corresondentes engádense á sección de axustes persoais. As administracións notificaranse por correo electrónico sobre a solicitude."
"Request account deletion" : "Solicitar a eliminación da conta "
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "אף אחד מהמנהלים לא הגדיר כתובת דוא״ל",
"Data Request" : "בקשת נתונים",
"Request your data from the admins" : "בקשת הנתונים שלך מהמנהלים",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "לאפשר למשתמשים שלך לבקש ייצוא או מחיקה של הנתונים שלהם. האפשרויות המתאימות נוספות לאגף ההגדרות האישיות. מנהלים יקבלו הודעה בדוא״ל בנוגע לבקשה.",
"Account" : "חשבון",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "ניתן לבקש ייצוא של הנתונים שלך או את מחיקת החשבון שלך מהמערכת ממנהל מערכת. פעולה זו יכולה לארוך עד 30 ימים.",
"Request data export" : "בקשת ייצוא נתונים",
"Request account deletion" : "בקשת מחיקת חשבון",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "לאפשר למשתמשים שלך לבקש ייצוא או מחיקה של הנתונים שלהם. האפשרויות המתאימות נוספות לאגף ההגדרות האישיות. מנהלים יקבלו הודעה בדוא״ל בנוגע לבקשה."
"Request account deletion" : "בקשת מחיקת חשבון"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "אף אחד מהמנהלים לא הגדיר כתובת דוא״ל",
"Data Request" : "בקשת נתונים",
"Request your data from the admins" : "בקשת הנתונים שלך מהמנהלים",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "לאפשר למשתמשים שלך לבקש ייצוא או מחיקה של הנתונים שלהם. האפשרויות המתאימות נוספות לאגף ההגדרות האישיות. מנהלים יקבלו הודעה בדוא״ל בנוגע לבקשה.",
"Account" : "חשבון",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "ניתן לבקש ייצוא של הנתונים שלך או את מחיקת החשבון שלך מהמערכת ממנהל מערכת. פעולה זו יכולה לארוך עד 30 ימים.",
"Request data export" : "בקשת ייצוא נתונים",
"Request account deletion" : "בקשת מחיקת חשבון",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "לאפשר למשתמשים שלך לבקש ייצוא או מחיקה של הנתונים שלהם. האפשרויות המתאימות נוספות לאגף ההגדרות האישיות. מנהלים יקבלו הודעה בדוא״ל בנוגע לבקשה."
"Request account deletion" : "בקשת מחיקת חשבון"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
}

View File

@ -1,21 +0,0 @@
OC.L10N.register(
"data_request",
{
"sent!" : "poslana!",
"No administrator could have been contacted." : "Nije stupljeno u kontakt ni s jednim administratorom.",
"Personal data export request" : "Zahtjev za izvoz osobnih podataka",
"Hello %s," : "Pozdrav %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "Korisnik %s s korisničkim imenom „%s” zatražio je izvoz svojih osobnih podataka. Poduzmite odgovarajuće radnje.",
"Account deletion request" : "Zahtjev za brisanje računa",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "Korisnik %s s korisničkim imenom „%s” zatražio je brisanje računa. Poduzmite odgovarajuće radnje.",
"No administrator has set an email address" : "Nijedan administrator nije postavio adresu e-pošte",
"Data Request" : "Zahtjev za podacima",
"Request your data from the admins" : "Zatražite podatke od administratora",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Omogućite korisnicima da zatraže izvoz ili brisanje svojih podataka. Odgovarajuće mogućnosti dodaju se odjeljku s osobnim postavkama. Administratori će biti obaviješteni putem e-pošte o zahtjevu.",
"Account" : "Račun",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Možete zatražiti izvoz podataka ili brisanje računa od administratora sustava. To može potrajati do 30 dana.",
"Request data export" : "Zatraži izvoz podataka",
"Request account deletion" : "Zatraži brisanje računa",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Omogućite korisnicima da zatraže izvoz ili brisanje svojih podataka. Odgovarajuće mogućnosti dodaju se odjeljku s osobnim postavkama. Administratori će biti obaviješteni putem e-pošte o zahtjevu."
},
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");

View File

@ -1,19 +0,0 @@
{ "translations": {
"sent!" : "poslana!",
"No administrator could have been contacted." : "Nije stupljeno u kontakt ni s jednim administratorom.",
"Personal data export request" : "Zahtjev za izvoz osobnih podataka",
"Hello %s," : "Pozdrav %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "Korisnik %s s korisničkim imenom „%s” zatražio je izvoz svojih osobnih podataka. Poduzmite odgovarajuće radnje.",
"Account deletion request" : "Zahtjev za brisanje računa",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "Korisnik %s s korisničkim imenom „%s” zatražio je brisanje računa. Poduzmite odgovarajuće radnje.",
"No administrator has set an email address" : "Nijedan administrator nije postavio adresu e-pošte",
"Data Request" : "Zahtjev za podacima",
"Request your data from the admins" : "Zatražite podatke od administratora",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Omogućite korisnicima da zatraže izvoz ili brisanje svojih podataka. Odgovarajuće mogućnosti dodaju se odjeljku s osobnim postavkama. Administratori će biti obaviješteni putem e-pošte o zahtjevu.",
"Account" : "Račun",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Možete zatražiti izvoz podataka ili brisanje računa od administratora sustava. To može potrajati do 30 dana.",
"Request data export" : "Zatraži izvoz podataka",
"Request account deletion" : "Zatraži brisanje računa",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Omogućite korisnicima da zatraže izvoz ili brisanje svojih podataka. Odgovarajuće mogućnosti dodaju se odjeljku s osobnim postavkama. Administratori će biti obaviješteni putem e-pošte o zahtjevu."
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
}

View File

@ -2,20 +2,9 @@ OC.L10N.register(
"data_request",
{
"sent!" : "elküldve!",
"No administrator could have been contacted." : "Nem sikerült kapcsolatba lépni egy adminisztrátorral sem.",
"Personal data export request" : "Személyes adatok exportálásának kérése",
"Hello %s," : "Kedves %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "%s felhasználó (felhasználóazonosítója „%s”) a személyes adatainak exportálását kérte. Tegye meg a lépéseket ennek megfelelően.",
"Account deletion request" : "Fióktörlési kérés",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "%s felhasználó (felhasználóazonosítója „%s”) a fiókja törlését kérte. Tegye meg a lépéseket ennek megfelelően.",
"No administrator has set an email address" : "Egyetlen adminisztrátornak sincs megadva az e-mail címe",
"Data Request" : "Adatkérés",
"Request your data from the admins" : "Az Ön adatainak elkérése az adminisztrátoroktól",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Engedélyezze, hogy a felhasználók az adataik exportálását vagy törlését kérhessék. A megfelelő lehetőségek a személy beállítások szakaszba kerülnek. Az adminisztrátorok e-mailben lesznek értesítve a kérésről.",
"Account" : "Fiók",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Az adatai exportálását vagy a fiókja törlését kérheti az adminisztrátortól. Ez akár 30 napig is eltarthat.",
"Request data export" : "Adatexport kérése",
"Request account deletion" : "Fióktörlés kérése",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Engedélyezze, hogy a felhasználók az adataik exportálását vagy törlését kérhessék. A megfelelő lehetőségek a személy beállítások szakaszba kerülnek. Az adminisztrátorok e-mailben lesznek értesítve a kérésről."
"Hello %s," : "Szia %s,",
"Request your data from the admins" : "Kérd az adataidat a rendszergazdáktól",
"Account" : "Fiók"
},
"nplurals=2; plural=(n != 1);");

View File

@ -1,19 +1,8 @@
{ "translations": {
"sent!" : "elküldve!",
"No administrator could have been contacted." : "Nem sikerült kapcsolatba lépni egy adminisztrátorral sem.",
"Personal data export request" : "Személyes adatok exportálásának kérése",
"Hello %s," : "Kedves %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "%s felhasználó (felhasználóazonosítója „%s”) a személyes adatainak exportálását kérte. Tegye meg a lépéseket ennek megfelelően.",
"Account deletion request" : "Fióktörlési kérés",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "%s felhasználó (felhasználóazonosítója „%s”) a fiókja törlését kérte. Tegye meg a lépéseket ennek megfelelően.",
"No administrator has set an email address" : "Egyetlen adminisztrátornak sincs megadva az e-mail címe",
"Data Request" : "Adatkérés",
"Request your data from the admins" : "Az Ön adatainak elkérése az adminisztrátoroktól",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Engedélyezze, hogy a felhasználók az adataik exportálását vagy törlését kérhessék. A megfelelő lehetőségek a személy beállítások szakaszba kerülnek. Az adminisztrátorok e-mailben lesznek értesítve a kérésről.",
"Account" : "Fiók",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Az adatai exportálását vagy a fiókja törlését kérheti az adminisztrátortól. Ez akár 30 napig is eltarthat.",
"Request data export" : "Adatexport kérése",
"Request account deletion" : "Fióktörlés kérése",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Engedélyezze, hogy a felhasználók az adataik exportálását vagy törlését kérhessék. A megfelelő lehetőségek a személy beállítások szakaszba kerülnek. Az adminisztrátorok e-mailben lesznek értesítve a kérésről."
"Hello %s," : "Szia %s,",
"Request your data from the admins" : "Kérd az adataidat a rendszergazdáktól",
"Account" : "Fiók"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Enginn kerfisstjóri hefur stillt tölvupóstfang",
"Data Request" : "Beiðni um gögn",
"Request your data from the admins" : "Biddu stjórnendur um gögnin þín",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gerir notendum þínum kleift að biðja um útflutning eða eyðingu gagnanna sinna. Viðeigandi valkostir birtast þá í einkastillingunum þeirra. Stjórnendur fá tilkynningar í tölvupósti um slíkar beiðnir.",
"Account" : "Notandaaðgangur",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Þú getur beðið um útflutning á gögnunum þínum eða eyðingu notandaaðgangsins þíns frá kerfisstjóra. Þetta getur tekið allt að 30 dögum.",
"Request data export" : "Biðja um útflutning gagna",
"Request account deletion" : "Biðja um að aðgangi sé eytt",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gerir notendum þínum kleift að biðja um útflutning eða eyðingu gagnanna sinna. Viðeigandi valkostir birtast þá í einkastillingunum þeirra. Stjórnendur fá tilkynningar í tölvupósti um slíkar beiðnir."
"Request account deletion" : "Biðja um að aðgangi sé eytt"
},
"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "Enginn kerfisstjóri hefur stillt tölvupóstfang",
"Data Request" : "Beiðni um gögn",
"Request your data from the admins" : "Biddu stjórnendur um gögnin þín",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gerir notendum þínum kleift að biðja um útflutning eða eyðingu gagnanna sinna. Viðeigandi valkostir birtast þá í einkastillingunum þeirra. Stjórnendur fá tilkynningar í tölvupósti um slíkar beiðnir.",
"Account" : "Notandaaðgangur",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Þú getur beðið um útflutning á gögnunum þínum eða eyðingu notandaaðgangsins þíns frá kerfisstjóra. Þetta getur tekið allt að 30 dögum.",
"Request data export" : "Biðja um útflutning gagna",
"Request account deletion" : "Biðja um að aðgangi sé eytt",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Gerir notendum þínum kleift að biðja um útflutning eða eyðingu gagnanna sinna. Viðeigandi valkostir birtast þá í einkastillingunum þeirra. Stjórnendur fá tilkynningar í tölvupósti um slíkar beiðnir."
"Request account deletion" : "Biðja um að aðgangi sé eytt"
},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Nessun amministratore ha configurato un indirizzo di posta",
"Data Request" : "Richiesta di dati",
"Request your data from the admins" : "Richiedi i tuoi dati agli amministratori",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Abilita i tuoi utenti a richiedere un'esportazione o un'eliminazione dei propri dati. Le relative opzioni sono aggiunte alla sezione delle impostazioni personali. Gli amministratori saranno notificati tramite email della richiesta.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Abilita i tuoi utenti a richiedere un'esportazione o eliminazione dei propri dati. Le relative opzioni sono aggiunte alla sezione delle impostazioni personali. Gli amministratori saranno notificati tramite email della richiesta.",
"Account" : "Account",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Puoi richiedere un'esportazione dei tuoi dati o l'eliminazione dell'account all'amministratore di sistema. Ciò può richiedere fino a 30 giorni.",
"Request data export" : "Richiedi di esportazione dati",
"Request account deletion" : "Richiesta di eliminazione account",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Abilita i tuoi utenti a richiedere un'esportazione o eliminazione dei propri dati. Le relative opzioni sono aggiunte alla sezione delle impostazioni personali. Gli amministratori saranno notificati tramite email della richiesta."
"Request account deletion" : "Richiesta di eliminazione account"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Nessun amministratore ha configurato un indirizzo di posta",
"Data Request" : "Richiesta di dati",
"Request your data from the admins" : "Richiedi i tuoi dati agli amministratori",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Abilita i tuoi utenti a richiedere un'esportazione o un'eliminazione dei propri dati. Le relative opzioni sono aggiunte alla sezione delle impostazioni personali. Gli amministratori saranno notificati tramite email della richiesta.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Abilita i tuoi utenti a richiedere un'esportazione o eliminazione dei propri dati. Le relative opzioni sono aggiunte alla sezione delle impostazioni personali. Gli amministratori saranno notificati tramite email della richiesta.",
"Account" : "Account",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Puoi richiedere un'esportazione dei tuoi dati o l'eliminazione dell'account all'amministratore di sistema. Ciò può richiedere fino a 30 giorni.",
"Request data export" : "Richiedi di esportazione dati",
"Request account deletion" : "Richiesta di eliminazione account",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Abilita i tuoi utenti a richiedere un'esportazione o eliminazione dei propri dati. Le relative opzioni sono aggiunte alla sezione delle impostazioni personali. Gli amministratori saranno notificati tramite email della richiesta."
"Request account deletion" : "Richiesta di eliminazione account"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -5,17 +5,14 @@ OC.L10N.register(
"No administrator could have been contacted." : "管理者に連絡が取れなかった可能性があります。",
"Personal data export request" : "個人データのエクスポート要求",
"Hello %s," : "こんにちは %s さん、",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "ユーザーID \"%s\"で識別されるユーザー%sは、自分のアカウントのエクスポートを要求しました。 適切に対処してください。",
"Account deletion request" : "アカウントの削除要求",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "ユーザーID \"%s\"で識別されるユーザー%sは、自分のアカウントの削除を要求しました。 適切に対処してください。",
"No administrator has set an email address" : "メールアドレスに管理者が設定されていません",
"Data Request" : "データリクエスト",
"Request your data from the admins" : "管理者からのデータのリクエスト",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "ユーザーがデータのエクスポートまたは削除を要求できるようにします。 オプションに従って、個人設定セクションに追加されます。 管理者には、その要求について電子メールで通知されます。",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "ユーザーがデータのエクスポートまたは削除を要求できるようにします。 オプションに従って、個人設定セクションに追加されます。 管理者には、その要求について電子メールで通知されます。",
"Account" : "アカウント",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "データのエクスポートまたはアカウントの削除は、システム管理者に要求できます。 これには最大30日かかります。",
"Request data export" : "リクエストデータのエクスポート",
"Request account deletion" : "アカウントの削除をリクエストする",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "ユーザーがデータのエクスポートまたは削除を要求できるようにします。 オプションに従って、個人設定セクションに追加されます。 管理者には、その要求について電子メールで通知されます。"
"Request account deletion" : "アカウントの削除をリクエストする"
},
"nplurals=1; plural=0;");

View File

@ -3,17 +3,14 @@
"No administrator could have been contacted." : "管理者に連絡が取れなかった可能性があります。",
"Personal data export request" : "個人データのエクスポート要求",
"Hello %s," : "こんにちは %s さん、",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "ユーザーID \"%s\"で識別されるユーザー%sは、自分のアカウントのエクスポートを要求しました。 適切に対処してください。",
"Account deletion request" : "アカウントの削除要求",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "ユーザーID \"%s\"で識別されるユーザー%sは、自分のアカウントの削除を要求しました。 適切に対処してください。",
"No administrator has set an email address" : "メールアドレスに管理者が設定されていません",
"Data Request" : "データリクエスト",
"Request your data from the admins" : "管理者からのデータのリクエスト",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "ユーザーがデータのエクスポートまたは削除を要求できるようにします。 オプションに従って、個人設定セクションに追加されます。 管理者には、その要求について電子メールで通知されます。",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "ユーザーがデータのエクスポートまたは削除を要求できるようにします。 オプションに従って、個人設定セクションに追加されます。 管理者には、その要求について電子メールで通知されます。",
"Account" : "アカウント",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "データのエクスポートまたはアカウントの削除は、システム管理者に要求できます。 これには最大30日かかります。",
"Request data export" : "リクエストデータのエクスポート",
"Request account deletion" : "アカウントの削除をリクエストする",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "ユーザーがデータのエクスポートまたは削除を要求できるようにします。 オプションに従って、個人設定セクションに追加されます。 管理者には、その要求について電子メールで通知されます。"
"Request account deletion" : "アカウントの削除をリクエストする"
},"pluralForm" :"nplurals=1; plural=0;"
}

View File

@ -1,20 +0,0 @@
OC.L10N.register(
"data_request",
{
"sent!" : "보냈습니다!",
"No administrator could have been contacted." : "연락할 수 있는 관리자가 없습니다.",
"Personal data export request" : "개인 데이터 내보내기 요청",
"Hello %s," : "안녕하세요 %s 님,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "사용자 %s, 사용자 ID \"%s\" 님이 개인 데이터 내보내기를 요청했습니다. 요청을 처리해 주십시오.",
"Account deletion request" : "계정 삭제 요청",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "사용자 %s, 사용자 ID \"%s\" 님이 계정 삭제를 요청했습니다. 요청을 처리해 주십시오.",
"No administrator has set an email address" : "이메일 주소를 설정한 관리자 없음",
"Data Request" : "데이터 요청",
"Request your data from the admins" : "관리자에게 내 데이터 요청",
"Account" : "계정",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "시스템 관리자에게 데이터 복사본이나 계정 삭제를 요청할 수 있습니다. 최대 30일이 소요될 수 있습니다.",
"Request data export" : "데이터 내보내기 요청",
"Request account deletion" : "계정 삭제 요청",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "사용자 데이터 내보내기나 사용자 데이터 삭제 요청을 허용합니다. 개인 설정 부분에 해당하는 옵션이 추가됩니다. 관리자에게 이메일로 해당 요청을 알립니다."
},
"nplurals=1; plural=0;");

View File

@ -1,18 +0,0 @@
{ "translations": {
"sent!" : "보냈습니다!",
"No administrator could have been contacted." : "연락할 수 있는 관리자가 없습니다.",
"Personal data export request" : "개인 데이터 내보내기 요청",
"Hello %s," : "안녕하세요 %s 님,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "사용자 %s, 사용자 ID \"%s\" 님이 개인 데이터 내보내기를 요청했습니다. 요청을 처리해 주십시오.",
"Account deletion request" : "계정 삭제 요청",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "사용자 %s, 사용자 ID \"%s\" 님이 계정 삭제를 요청했습니다. 요청을 처리해 주십시오.",
"No administrator has set an email address" : "이메일 주소를 설정한 관리자 없음",
"Data Request" : "데이터 요청",
"Request your data from the admins" : "관리자에게 내 데이터 요청",
"Account" : "계정",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "시스템 관리자에게 데이터 복사본이나 계정 삭제를 요청할 수 있습니다. 최대 30일이 소요될 수 있습니다.",
"Request data export" : "데이터 내보내기 요청",
"Request account deletion" : "계정 삭제 요청",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "사용자 데이터 내보내기나 사용자 데이터 삭제 요청을 허용합니다. 개인 설정 부분에 해당하는 옵션이 추가됩니다. 관리자에게 이메일로 해당 요청을 알립니다."
},"pluralForm" :"nplurals=1; plural=0;"
}

View File

@ -3,16 +3,12 @@ OC.L10N.register(
{
"sent!" : "išsiųsta!",
"No administrator could have been contacted." : "Nepavyko susisiekti su jokiu administratoriumi.",
"Personal data export request" : "Asmeninių duomenų eksportavimo užklausa",
"Hello %s," : "Sveiki, %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "Naudotojas %s, identifikuojamas pagal naudotojo id \"%s\", užklausė savo asmeninių duomenų eksportavimą. Imkitės atitinkamų veiksmų.",
"Account deletion request" : "Paskyros ištrynimo užklausa",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "Naudotojas %s, identifikuojamas pagal naudotojo id \"%s\", užklausė ištrinti paskyrą. Imkitės atitinkamų veiksmų.",
"No administrator has set an email address" : "Joks administratorius nenusistatė el. pašto adreso",
"Data Request" : "Duomenų užklausa",
"Account" : "Paskyra",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Gali užklausti sistemos administratoriaus eksportuoti jūsų duomenis arba ištrinti paskyrą. Tai gali užtrukti iki 30 dienų.",
"Request data export" : "Užklausti duomenų eksportavimo",
"Request account deletion" : "Užklausti paskyros ištrynimo"
},
"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);");

View File

@ -1,16 +1,12 @@
{ "translations": {
"sent!" : "išsiųsta!",
"No administrator could have been contacted." : "Nepavyko susisiekti su jokiu administratoriumi.",
"Personal data export request" : "Asmeninių duomenų eksportavimo užklausa",
"Hello %s," : "Sveiki, %s,",
"The user %s, identified by user id \"%s\", has requested an export of his personal data. Please take action accordingly." : "Naudotojas %s, identifikuojamas pagal naudotojo id \"%s\", užklausė savo asmeninių duomenų eksportavimą. Imkitės atitinkamų veiksmų.",
"Account deletion request" : "Paskyros ištrynimo užklausa",
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "Naudotojas %s, identifikuojamas pagal naudotojo id \"%s\", užklausė ištrinti paskyrą. Imkitės atitinkamų veiksmų.",
"No administrator has set an email address" : "Joks administratorius nenusistatė el. pašto adreso",
"Data Request" : "Duomenų užklausa",
"Account" : "Paskyra",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Gali užklausti sistemos administratoriaus eksportuoti jūsų duomenis arba ištrinti paskyrą. Tai gali užtrukti iki 30 dienų.",
"Request data export" : "Užklausti duomenų eksportavimo",
"Request account deletion" : "Užklausti paskyros ištrynimo"
},"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Neviens administrators nav norādijis e-pasta adresi",
"Data Request" : "Datu Pieprasījums",
"Request your data from the admins" : "Pieprasi savus datus no administrātoriem",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ļauj saviem lietotājiem pieprasīt savu datu eksportu vai dzēšanu. Balstoties uz iespējām, kas pievienotas personas iestatījumos. Administrātoriem pieprasījums tiks paziņots caur e-pastu. ",
"Account" : "Konts",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Tu vari pieprasīt savu datu eksportu vai konta dzēšanu no sistēmas administrātora. Tas var aizņemt līdz pat 30 dienām.",
"Request data export" : "Pieprasīt datu eksportu",
"Request account deletion" : "Pieprasīt konta dzēšanu",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ļauj saviem lietotājiem pieprasīt savu datu eksportu vai dzēšanu. Balstoties uz iespējām, kas pievienotas personas iestatījumos. Administrātoriem pieprasījums tiks paziņots caur e-pastu. "
"Request account deletion" : "Pieprasīt konta dzēšanu"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "Neviens administrators nav norādijis e-pasta adresi",
"Data Request" : "Datu Pieprasījums",
"Request your data from the admins" : "Pieprasi savus datus no administrātoriem",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ļauj saviem lietotājiem pieprasīt savu datu eksportu vai dzēšanu. Balstoties uz iespējām, kas pievienotas personas iestatījumos. Administrātoriem pieprasījums tiks paziņots caur e-pastu. ",
"Account" : "Konts",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Tu vari pieprasīt savu datu eksportu vai konta dzēšanu no sistēmas administrātora. Tas var aizņemt līdz pat 30 dienām.",
"Request data export" : "Pieprasīt datu eksportu",
"Request account deletion" : "Pieprasīt konta dzēšanu",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Ļauj saviem lietotājiem pieprasīt savu datu eksportu vai dzēšanu. Balstoties uz iespējām, kas pievienotas personas iestatījumos. Administrātoriem pieprasījums tiks paziņots caur e-pastu. "
"Request account deletion" : "Pieprasīt konta dzēšanu"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"
}

View File

@ -10,12 +10,11 @@ OC.L10N.register(
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "De gebruiker %s, identificeerbaar met gebruikers id \"%s\", heeft verwijdering van zijn account aangevraagd. Neem a.u.b. de benodigde acties.",
"No administrator has set an email address" : "Er is geen administrator e-mail adres bekend.",
"Data Request" : "Verzoek gegevens",
"Request your data from the admins" : "Vraag je gegevens op bij de beheerder",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Laat je gebruiker een export van je gegevens aanvragen. Deze opties zijn toegevoegd aan de sectie persoonlijke instellingen. Beheerders worden via e-mail geïnformeerd over het verzoek.",
"Request your data from the admins" : "Verzoek de Admins voor jouw gegevens",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Laat je gebruiker een export van je gegevens aanvragen. Deze opties zijn toegevoegd aan de sectie persoonlijke instellingen. Administrators worden via email verwittigd van het verzoek.",
"Account" : "Account",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Je kunt een verzoek indienen voor een export van je gegevens, of verwijdering van je account door een systeem administrator. Dit kan tot 30 dagen duren.",
"Request data export" : "Export gegevens aanvragen",
"Request account deletion" : "Verwijdering van account aanvragen ",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Laat je gebruiker een export van je gegevens aanvragen. Deze opties zijn toegevoegd aan de sectie persoonlijke instellingen. Administrators worden via email verwittigd van het verzoek."
"Request account deletion" : "Verwijdering van account aanvragen "
},
"nplurals=2; plural=(n != 1);");

View File

@ -8,12 +8,11 @@
"The user %s, identified by user id \"%s\", has requested to delete the account. Please take action accordingly." : "De gebruiker %s, identificeerbaar met gebruikers id \"%s\", heeft verwijdering van zijn account aangevraagd. Neem a.u.b. de benodigde acties.",
"No administrator has set an email address" : "Er is geen administrator e-mail adres bekend.",
"Data Request" : "Verzoek gegevens",
"Request your data from the admins" : "Vraag je gegevens op bij de beheerder",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Laat je gebruiker een export van je gegevens aanvragen. Deze opties zijn toegevoegd aan de sectie persoonlijke instellingen. Beheerders worden via e-mail geïnformeerd over het verzoek.",
"Request your data from the admins" : "Verzoek de Admins voor jouw gegevens",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Laat je gebruiker een export van je gegevens aanvragen. Deze opties zijn toegevoegd aan de sectie persoonlijke instellingen. Administrators worden via email verwittigd van het verzoek.",
"Account" : "Account",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Je kunt een verzoek indienen voor een export van je gegevens, of verwijdering van je account door een systeem administrator. Dit kan tot 30 dagen duren.",
"Request data export" : "Export gegevens aanvragen",
"Request account deletion" : "Verwijdering van account aanvragen ",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Laat je gebruiker een export van je gegevens aanvragen. Deze opties zijn toegevoegd aan de sectie persoonlijke instellingen. Administrators worden via email verwittigd van het verzoek."
"Request account deletion" : "Verwijdering van account aanvragen "
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Żaden administrator nie ustawił adresu e-mail",
"Data Request" : "Żądanie danych",
"Request your data from the admins" : "Poproś o dane od administratorów",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Umożliwienie użytkownikom żądania eksportu lub usunięcia ich danych. Zgodnie z opcjami są dodawane do sekcji ustawień osobistych. Administratorzy zostaną powiadomieni pocztą elektroniczną o żądaniu.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umożliwiaj użytkownikom zażądanie eksportu lub usunięcia ich danych. Odpowiednie opcje są dodawane do sekcji ustawień osobistych. Administracje zostaną powiadomione pocztą elektroniczną o żądaniu.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Możesz zażądać eksportu danych lub usunięcia konta od administratora systemu. Może to potrwać do 30 dni.",
"Request data export" : "Zażądaj eksportu danych",
"Request account deletion" : "Zażądaj usunięcia konta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umożliwiaj użytkownikom zażądanie eksportu lub usunięcia ich danych. Odpowiednie opcje są dodawane do sekcji ustawień osobistych. Administracje zostaną powiadomione pocztą elektroniczną o żądaniu."
"Request account deletion" : "Zażądaj usunięcia konta"
},
"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Żaden administrator nie ustawił adresu e-mail",
"Data Request" : "Żądanie danych",
"Request your data from the admins" : "Poproś o dane od administratorów",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Umożliwienie użytkownikom żądania eksportu lub usunięcia ich danych. Zgodnie z opcjami są dodawane do sekcji ustawień osobistych. Administratorzy zostaną powiadomieni pocztą elektroniczną o żądaniu.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umożliwiaj użytkownikom zażądanie eksportu lub usunięcia ich danych. Odpowiednie opcje są dodawane do sekcji ustawień osobistych. Administracje zostaną powiadomione pocztą elektroniczną o żądaniu.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Możesz zażądać eksportu danych lub usunięcia konta od administratora systemu. Może to potrwać do 30 dni.",
"Request data export" : "Zażądaj eksportu danych",
"Request account deletion" : "Zażądaj usunięcia konta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Umożliwiaj użytkownikom zażądanie eksportu lub usunięcia ich danych. Odpowiednie opcje są dodawane do sekcji ustawień osobistych. Administracje zostaną powiadomione pocztą elektroniczną o żądaniu."
"Request account deletion" : "Zażądaj usunięcia konta"
},"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Nenhum administrador definiu um endereço de e-mail",
"Data Request" : "Solicitação de Dados",
"Request your data from the admins" : "Solicite seus dados dos administradores",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permita a seus usuários solicitarem uma exportação ou exclusão de seus dados. Estas opções estarão nas configurações pessoais e os administradores serão notificados por e-mail do pedido.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Habilita usuários a solicitarem uma exportação ou exclusão de seus dados. As opções são adicionadas à seção de configurações pessoais. Os administradores serão notificados por e-mail sobre o pedido.",
"Account" : "Conta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Você pode solicitar ao administrador a exportação de seus dados ou a exclusão da conta. Isso pode levar até 30 dias.",
"Request data export" : "Solicitar a exportação de dados",
"Request account deletion" : "Solicitar a exclusão da conta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Habilita usuários a solicitarem uma exportação ou exclusão de seus dados. As opções são adicionadas à seção de configurações pessoais. Os administradores serão notificados por e-mail sobre o pedido."
"Request account deletion" : "Solicitar a exclusão da conta"
},
"nplurals=2; plural=(n > 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Nenhum administrador definiu um endereço de e-mail",
"Data Request" : "Solicitação de Dados",
"Request your data from the admins" : "Solicite seus dados dos administradores",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Permita a seus usuários solicitarem uma exportação ou exclusão de seus dados. Estas opções estarão nas configurações pessoais e os administradores serão notificados por e-mail do pedido.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Habilita usuários a solicitarem uma exportação ou exclusão de seus dados. As opções são adicionadas à seção de configurações pessoais. Os administradores serão notificados por e-mail sobre o pedido.",
"Account" : "Conta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Você pode solicitar ao administrador a exportação de seus dados ou a exclusão da conta. Isso pode levar até 30 dias.",
"Request data export" : "Solicitar a exportação de dados",
"Request account deletion" : "Solicitar a exclusão da conta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Habilita usuários a solicitarem uma exportação ou exclusão de seus dados. As opções são adicionadas à seção de configurações pessoais. Os administradores serão notificados por e-mail sobre o pedido."
"Request account deletion" : "Solicitar a exclusão da conta"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

View File

@ -11,10 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Nenhum administrador definiu um endereço de e-mail",
"Data Request" : "Pedido de Dados",
"Request your data from the admins" : "Solicite os seus dados via administradores",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus utilizadores solicitem uma exportação ou eliminação dos próprios dados. As opções de acordo são adicionadas à secção de definições pessoais. As administrações serão notificadas por e-mail sobre o pedido.",
"Account" : "Conta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Pode solicitar uma exportação dos seus dados ou a eliminação da conta via administrador do sistema. Isto pode demorar até 30 dias.",
"Request data export" : "Solicitar exportação de dados",
"Request account deletion" : "Solicitar eliminação da conta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus utilizadores solicitem uma exportação ou eliminação dos próprios dados. As opções de acordo são adicionadas à secção de definições pessoais. As administrações serão notificadas por e-mail sobre o pedido."
"Request account deletion" : "Solicitar eliminação da conta"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,10 +9,10 @@
"No administrator has set an email address" : "Nenhum administrador definiu um endereço de e-mail",
"Data Request" : "Pedido de Dados",
"Request your data from the admins" : "Solicite os seus dados via administradores",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus utilizadores solicitem uma exportação ou eliminação dos próprios dados. As opções de acordo são adicionadas à secção de definições pessoais. As administrações serão notificadas por e-mail sobre o pedido.",
"Account" : "Conta",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Pode solicitar uma exportação dos seus dados ou a eliminação da conta via administrador do sistema. Isto pode demorar até 30 dias.",
"Request data export" : "Solicitar exportação de dados",
"Request account deletion" : "Solicitar eliminação da conta",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Permita que os seus utilizadores solicitem uma exportação ou eliminação dos próprios dados. As opções de acordo são adicionadas à secção de definições pessoais. As administrações serão notificadas por e-mail sobre o pedido."
"Request account deletion" : "Solicitar eliminação da conta"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -1,10 +0,0 @@
OC.L10N.register(
"data_request",
{
"sent!" : "trimis!",
"No administrator could have been contacted." : "Niciun administrator nu a putut fi contactat.",
"Account deletion request" : "Cerere ștergere cont",
"Account" : "Cont",
"Request account deletion" : "Cerere ștergere cont"
},
"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));");

View File

@ -1,8 +0,0 @@
{ "translations": {
"sent!" : "trimis!",
"No administrator could have been contacted." : "Niciun administrator nu a putut fi contactat.",
"Account deletion request" : "Cerere ștergere cont",
"Account" : "Cont",
"Request account deletion" : "Cerere ștergere cont"
},"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Ни один администратор не установил адрес электронной почты",
"Data Request" : "Запрос данных",
"Request your data from the admins" : "Запросить Ваши данные у администраторов",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Разрешить вашим пользователять запрашивать экспорт или удаление их данных. Соответствующие опции добавятся в раздел персональных настроек. Администраторы будут уведомлены о запросе по email.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Позволяет пользователям запрашивать экспорт или удаление своих данных. В разделе личных настроек добавляются опции. Администоры будут уведомлены по электронной почте о запросе.",
"Account" : "Аккаунт",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Вы можете запросить у системного администратора экспорт ваших данных или удаление учетной записи. Это может занять до 30 дней.",
"Request data export" : "Запрос экспорта данных",
"Request account deletion" : "Запрос удаления аккаунта",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Позволяет пользователям запрашивать экспорт или удаление своих данных. В разделе личных настроек добавляются опции. Администоры будут уведомлены по электронной почте о запросе."
"Request account deletion" : "Запрос удаления аккаунта"
},
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Ни один администратор не установил адрес электронной почты",
"Data Request" : "Запрос данных",
"Request your data from the admins" : "Запросить Ваши данные у администраторов",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Разрешить вашим пользователять запрашивать экспорт или удаление их данных. Соответствующие опции добавятся в раздел персональных настроек. Администраторы будут уведомлены о запросе по email.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Позволяет пользователям запрашивать экспорт или удаление своих данных. В разделе личных настроек добавляются опции. Администоры будут уведомлены по электронной почте о запросе.",
"Account" : "Аккаунт",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Вы можете запросить у системного администратора экспорт ваших данных или удаление учетной записи. Это может занять до 30 дней.",
"Request data export" : "Запрос экспорта данных",
"Request account deletion" : "Запрос удаления аккаунта",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Позволяет пользователям запрашивать экспорт или удаление своих данных. В разделе личных настроек добавляются опции. Администоры будут уведомлены по электронной почте о запросе."
"Request account deletion" : "Запрос удаления аккаунта"
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
}

View File

@ -1,11 +0,0 @@
OC.L10N.register(
"data_request",
{
"sent!" : "poslano!",
"No administrator could have been contacted." : "Stika s skrbnikom ni bilo mogoče vzpostaviti.",
"Personal data export request" : "Zahteva za izvoz osebnih podatkov",
"Hello %s," : "Pozdravljeni, %s,",
"Account" : "Račun",
"Request account deletion" : "Zahtevaj izbris računa"
},
"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");

View File

@ -1,9 +0,0 @@
{ "translations": {
"sent!" : "poslano!",
"No administrator could have been contacted." : "Stika s skrbnikom ni bilo mogoče vzpostaviti.",
"Personal data export request" : "Zahteva za izvoz osebnih podatkov",
"Hello %s," : "Pozdravljeni, %s,",
"Account" : "Račun",
"Request account deletion" : "Zahtevaj izbris računa"
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Ниједан администратор није подесио адресу е-поште",
"Data Request" : "Захтев за подацима",
"Request your data from the admins" : "Захтевајте Ваше податке од администратора",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Омогућава вашим корисницима да извезу или обришу њихове податке. Ове опције су додате у одељак личних подешавања. Администратори ће бити обавештени е-поштом о оваквим захтевима.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Омогућава вашим корисницима да извезу или обришу њихове податке. Ове опције су додате у одељак личних подешавања. Администратори ће бити обавештени е-поштом о оваквим захтевима.",
"Account" : "Налог",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Можете захтевати извоз Ваших података или брисање налога од администратора система. Ово може потрајати до 30 дана.",
"Request data export" : "Захтевајте извоз података",
"Request account deletion" : "Захтевајте брисање налога",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Омогућава вашим корисницима да извезу или обришу њихове податке. Ове опције су додате у одељак личних подешавања. Администратори ће бити обавештени е-поштом о оваквим захтевима."
"Request account deletion" : "Захтевајте брисање налога"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Ниједан администратор није подесио адресу е-поште",
"Data Request" : "Захтев за подацима",
"Request your data from the admins" : "Захтевајте Ваше податке од администратора",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Омогућава вашим корисницима да извезу или обришу њихове податке. Ове опције су додате у одељак личних подешавања. Администратори ће бити обавештени е-поштом о оваквим захтевима.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Омогућава вашим корисницима да извезу или обришу њихове податке. Ове опције су додате у одељак личних подешавања. Администратори ће бити обавештени е-поштом о оваквим захтевима.",
"Account" : "Налог",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Можете захтевати извоз Ваших података или брисање налога од администратора система. Ово може потрајати до 30 дана.",
"Request data export" : "Захтевајте извоз података",
"Request account deletion" : "Захтевајте брисање налога",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Омогућава вашим корисницима да извезу или обришу њихове податке. Ове опције су додате у одељак личних подешавања. Администратори ће бити обавештени е-поштом о оваквим захтевима."
"Request account deletion" : "Захтевајте брисање налога"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Ingen administratör ha angett någon e-postadress",
"Data Request" : "Databegäran",
"Request your data from the admins" : "Begär din data från administratören",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Tillåt användare att begära export eller radering av sin data. Dessa alternativ kommer att läggas till i användarens personliga inställningar. Administratörer kommer att meddelas via e-post vid användares begäran.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Tillåt användare att begära export av sin data eller radering av sitt konto. Dessa alternativ kommer att läggas till i användarens personliga inställningar. Administratörer kommer att meddelas via e-post vid användares begäran.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Du kan begära export av din data eller radering av ditt konto från systemadministratören. Detta kan ta upp till 30 dagar.",
"Request data export" : "Begär export av data",
"Request account deletion" : "Begär att radera ditt konto",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Tillåt användare att begära export av sin data eller radering av sitt konto. Dessa alternativ kommer att läggas till i användarens personliga inställningar. Administratörer kommer att meddelas via e-post vid användares begäran."
"Request account deletion" : "Begär att radera ditt konto"
},
"nplurals=2; plural=(n != 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Ingen administratör ha angett någon e-postadress",
"Data Request" : "Databegäran",
"Request your data from the admins" : "Begär din data från administratören",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Tillåt användare att begära export eller radering av sin data. Dessa alternativ kommer att läggas till i användarens personliga inställningar. Administratörer kommer att meddelas via e-post vid användares begäran.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Tillåt användare att begära export av sin data eller radering av sitt konto. Dessa alternativ kommer att läggas till i användarens personliga inställningar. Administratörer kommer att meddelas via e-post vid användares begäran.",
"Account" : "Konto",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Du kan begära export av din data eller radering av ditt konto från systemadministratören. Detta kan ta upp till 30 dagar.",
"Request data export" : "Begär export av data",
"Request account deletion" : "Begär att radera ditt konto",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Tillåt användare att begära export av sin data eller radering av sitt konto. Dessa alternativ kommer att läggas till i användarens personliga inställningar. Administratörer kommer att meddelas via e-post vid användares begäran."
"Request account deletion" : "Begär att radera ditt konto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@ -11,11 +11,10 @@ OC.L10N.register(
"No administrator has set an email address" : "Hiç bir yönetici için e-posta adresi ayarlanmamış",
"Data Request" : "Veri İsteği",
"Request your data from the admins" : "Yöneticilerden verilerinizi istemenizi sağlar",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Kullanıcılarınızın kişisel verilerini dışa aktarma ya da silinme isteğinde bulunmasını sağlar. Seçeneklere göre kişisel ayarlar bölümüne eklenir. Yapılan istekler yöneticilere e-posta ile bildirilir.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Kullanıcıların, kişisel ayarlar bölümünde belirtilen seçeneklere göre verilerinin dışa aktarılması ya da silinmesi isteğinde bulunmasını sağlar. Yapılan istek e-posta ile yöneticilere bildirilir.",
"Account" : "Hesap",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Sistem yöneticisinden verilerinizin dışa aktarılmasını ya da hesabınızın silinmesini sistem isteyebilirsiniz. Bu işlemin tamamlanması 30 güne kadar zaman alabilir.",
"Request data export" : "Verilerin dışa aktarılmasını isteyin",
"Request account deletion" : "Hesabınızın silinmesini isteyin",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Kullanıcıların, kişisel ayarlar bölümünde belirtilen seçeneklere göre verilerinin dışa aktarılması ya da silinmesi isteğinde bulunmasını sağlar. Yapılan istek e-posta ile yöneticilere bildirilir."
"Request account deletion" : "Hesabınızın silinmesini isteyin"
},
"nplurals=2; plural=(n > 1);");

View File

@ -9,11 +9,10 @@
"No administrator has set an email address" : "Hiç bir yönetici için e-posta adresi ayarlanmamış",
"Data Request" : "Veri İsteği",
"Request your data from the admins" : "Yöneticilerden verilerinizi istemenizi sağlar",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "Kullanıcılarınızın kişisel verilerini dışa aktarma ya da silinme isteğinde bulunmasını sağlar. Seçeneklere göre kişisel ayarlar bölümüne eklenir. Yapılan istekler yöneticilere e-posta ile bildirilir.",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Kullanıcıların, kişisel ayarlar bölümünde belirtilen seçeneklere göre verilerinin dışa aktarılması ya da silinmesi isteğinde bulunmasını sağlar. Yapılan istek e-posta ile yöneticilere bildirilir.",
"Account" : "Hesap",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "Sistem yöneticisinden verilerinizin dışa aktarılmasını ya da hesabınızın silinmesini sistem isteyebilirsiniz. Bu işlemin tamamlanması 30 güne kadar zaman alabilir.",
"Request data export" : "Verilerin dışa aktarılmasını isteyin",
"Request account deletion" : "Hesabınızın silinmesini isteyin",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "Kullanıcıların, kişisel ayarlar bölümünde belirtilen seçeneklere göre verilerinin dışa aktarılması ya da silinmesi isteğinde bulunmasını sağlar. Yapılan istek e-posta ile yöneticilere bildirilir."
"Request account deletion" : "Hesabınızın silinmesini isteyin"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

View File

@ -11,11 +11,9 @@ OC.L10N.register(
"No administrator has set an email address" : "管理员未设置电子邮件地址",
"Data Request" : "请求数据",
"Request your data from the admins" : "请求管理员提供您的数据",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "允许您的用户请求导出或删除他们的数据。相应选项会加入个人设置部分。管理员将会收到关于请求的电子邮件通知。",
"Account" : "账户",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "您可以向管理员申请导出数据或删除账户。这可能需要长达30天。",
"Request data export" : "请求导出数据",
"Request account deletion" : "请求删除账户",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "允许您的用户请求导出或删除他们的数据。相应选项会加入个人设置部分。管理员将会收到请求的通知电子邮件。"
"Request account deletion" : "请求删除账户"
},
"nplurals=1; plural=0;");

View File

@ -9,11 +9,9 @@
"No administrator has set an email address" : "管理员未设置电子邮件地址",
"Data Request" : "请求数据",
"Request your data from the admins" : "请求管理员提供您的数据",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request." : "允许您的用户请求导出或删除他们的数据。相应选项会加入个人设置部分。管理员将会收到关于请求的电子邮件通知。",
"Account" : "账户",
"You can request an export of your data or account deletion from the system administrator. This can take up to 30 days." : "您可以向管理员申请导出数据或删除账户。这可能需要长达30天。",
"Request data export" : "请求导出数据",
"Request account deletion" : "请求删除账户",
"Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrations will be notified by email about the request." : "允许您的用户请求导出或删除他们的数据。相应选项会加入个人设置部分。管理员将会收到请求的通知电子邮件。"
"Request account deletion" : "请求删除账户"
},"pluralForm" :"nplurals=1; plural=0;"
}

View File

@ -38,10 +38,10 @@ class DataRequestController extends OCSController {
public function __construct(
$appName,
IRequest $request,
Request $dataRequest,
$corsMethods = 'PUT, POST, GET, DELETE, PATCH',
$corsAllowedHeaders = 'Authorization, Content-Type, Accept',
$corsMaxAge = 1728000
$corsMaxAge = 1728000,
Request $dataRequest
) {
parent::__construct($appName, $request, $corsMethods, $corsAllowedHeaders, $corsMaxAge);
$this->dataRequest = $dataRequest;

View File

@ -48,10 +48,10 @@ class DataRequestControllerTest extends \Test\TestCase {
$this->controller = new DataRequestController(
'data_request',
$request,
$this->requestService,
'PUT, POST, GET, DELETE, PATCH',
'Authorization, Content-Type, Accept',
1728000
1728000,
$this->requestService
);
}