Merge remote-tracking branch 'nextcloud/master' into bugfix-create-database-user

This commit is contained in:
Vitor Mattos 2019-04-30 08:11:43 -03:00
commit d12aaa221d
52 changed files with 2202 additions and 183 deletions

View File

@ -27,6 +27,7 @@ OC.L10N.register(
"Error occurred while updating comment with id {id}" : "При обновлении комментария с id {id} произошла ошибка",
"Error occurred while posting comment" : "При сохранении комментария произошла ошибка",
"_%n unread comment_::_%n unread comments_" : ["%n непрочитанный комментарий","%n непрочитанных комментариев","%n непрочитанных комментариев","%n непрочитанных комментариев"],
"_1 new comment_::_{unread} new comments_" : ["1 новый комментарий","{unread} новых комментариев","{unread} новых комментариев","{unread} новых комментариев"],
"Comment" : "Комментарий",
"You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Вы были упомянуты в комментарии к файлу «%s» пользователем, учётная запись которого была удалена",
"%1$s mentioned you in a comment on “%2$s”" : "%1$s упомянул вас в комментарии к \"%2$s\""

View File

@ -25,6 +25,7 @@
"Error occurred while updating comment with id {id}" : "При обновлении комментария с id {id} произошла ошибка",
"Error occurred while posting comment" : "При сохранении комментария произошла ошибка",
"_%n unread comment_::_%n unread comments_" : ["%n непрочитанный комментарий","%n непрочитанных комментариев","%n непрочитанных комментариев","%n непрочитанных комментариев"],
"_1 new comment_::_{unread} new comments_" : ["1 новый комментарий","{unread} новых комментариев","{unread} новых комментариев","{unread} новых комментариев"],
"Comment" : "Комментарий",
"You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Вы были упомянуты в комментарии к файлу «%s» пользователем, учётная запись которого была удалена",
"%1$s mentioned you in a comment on “%2$s”" : "%1$s упомянул вас в комментарии к \"%2$s\""

View File

@ -167,16 +167,19 @@ class PhotoCache {
}
/**
* @param int $addressBookId
* @param string $cardUri
* @return ISimpleFolder
* @throws NotFoundException
* @throws NotPermittedException
*/
private function getFolder($addressBookId, $cardUri) {
private function getFolder(int $addressBookId, string $cardUri, bool $createIfNotExists = true): ISimpleFolder {
$hash = md5($addressBookId . ' ' . $cardUri);
try {
return $this->appData->getFolder($hash);
} catch (NotFoundException $e) {
return $this->appData->newFolder($hash);
if($createIfNotExists) {
return $this->appData->newFolder($hash);
} else {
throw $e;
}
}
}
@ -271,9 +274,14 @@ class PhotoCache {
/**
* @param int $addressBookId
* @param string $cardUri
* @throws NotPermittedException
*/
public function delete($addressBookId, $cardUri) {
$folder = $this->getFolder($addressBookId, $cardUri);
$folder->delete();
try {
$folder = $this->getFolder($addressBookId, $cardUri, false);
$folder->delete();
} catch (NotFoundException $e) {
// that's OK, nothing to do
}
}
}

View File

@ -97,28 +97,28 @@ OC.L10N.register(
"Renamed by {user}" : "Preimenovano od {user}",
"Moved by {user}" : "Premaknjeno od {user}",
"\"remote user\"" : "\"oddaljeni uporabnik\"",
"You created {file}" : "Ustvaril(a) si {file}",
"You created {file}" : "Ustvarite datoteko {file}",
"You created an encrypted file in {file}" : "Ustvarjena je šifrirana datoteka v {file}",
"{user} created {file}" : "{user} ustvaril(a) {file}",
"{user} created an encrypted file in {file}" : "{user} ustvaril(a) kodirano datoteko {file}",
"{user} created {file}" : "{user} ustvari datoteko {file}",
"{user} created an encrypted file in {file}" : "{user} ustvari šifrirano datoteko {file}",
"{file} was created in a public folder" : "{file} ustvarjena je bila v javni mapi",
"You changed {file}" : "Spremenil(a) si {file}",
"You changed an encrypted file in {file}" : "Spremenil(a) si kodirano datoteko v {file}",
"You changed {file}" : "Spremenite datoteko {file}",
"You changed an encrypted file in {file}" : "Spremenite šifrirano datoteko v {file}",
"{user} changed {file}" : "{user} spremenil/a {file}",
"You deleted {file}" : "Izbrisal(a) si {file}",
"{user} deleted {file}" : "{user} izbrisal(a) {file}",
"You restored {file}" : "Obnovil(a) si {file}",
"{user} restored {file}" : "{user} obnovil(a) {file}",
"You renamed {oldfile} to {newfile}" : "Preimenoval(a) si {oldfile} v {newfile}",
"{user} renamed {oldfile} to {newfile}" : "{user} preimenoval(a) {oldfile} v {newfile}",
"You moved {oldfile} to {newfile}" : "Premaknil(a) si {oldfile} v {newfile}",
"{user} moved {oldfile} to {newfile}" : "{user} premaknil(a) {oldfile} v {newfile}",
"You deleted {file}" : "Izbrišete datoteko {file}",
"{user} deleted {file}" : "{user} izbriše datoteko {file}",
"You restored {file}" : "Obnovite datoteko {file}",
"{user} restored {file}" : "{user} obnovi datoteko {file}",
"You renamed {oldfile} to {newfile}" : "Preimenujete {oldfile} v {newfile}",
"{user} renamed {oldfile} to {newfile}" : "{user} preimenuje {oldfile} v {newfile}",
"You moved {oldfile} to {newfile}" : "Premaknete {oldfile} v {newfile}",
"{user} moved {oldfile} to {newfile}" : "{user} premakne {oldfile} v {newfile}",
"A file has been added to or removed from your <strong>favorites</strong>" : "Datoteka je bila ali dodana ali umaknjena iz <strong>priljubljenih</strong>",
"A file or folder has been <strong>changed</strong> or <strong>renamed</strong>" : "Datoteka ali mapa je bila <strong>spremenjena</strong> ali <strong>preimenovana</strong>",
"A new file or folder has been <strong>created</strong>" : "Nova datoteka ali mapa je <strong>ustvarjena</strong>",
"A new file or folder has been <strong>created</strong>" : "Nova datoteka ali mapa je bila <strong>ustvarjena</strong>",
"A file or folder has been <strong>deleted</strong>" : "Datoteka ali mapa je bila <strong>izbrisana</strong>",
"Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Omeji obvestila o ustvarjanju in spreminjanju <strong>najpogosteje uporabljenih </strong> datotek <em>(omogoči pretok)</em>",
"A file or folder has been <strong>restored</strong>" : "A file or folder has been <strong>restored</strong>",
"A file or folder has been <strong>restored</strong>" : "Datoteka ali mapa je bila <strong>obnovljena</strong>",
"Unlimited" : "Neomejeno",
"Upload (max. %s)" : "Pošiljanje (omejitev %s)",
"%s of %s used" : "%s od %s uporabljeno",

View File

@ -95,28 +95,28 @@
"Renamed by {user}" : "Preimenovano od {user}",
"Moved by {user}" : "Premaknjeno od {user}",
"\"remote user\"" : "\"oddaljeni uporabnik\"",
"You created {file}" : "Ustvaril(a) si {file}",
"You created {file}" : "Ustvarite datoteko {file}",
"You created an encrypted file in {file}" : "Ustvarjena je šifrirana datoteka v {file}",
"{user} created {file}" : "{user} ustvaril(a) {file}",
"{user} created an encrypted file in {file}" : "{user} ustvaril(a) kodirano datoteko {file}",
"{user} created {file}" : "{user} ustvari datoteko {file}",
"{user} created an encrypted file in {file}" : "{user} ustvari šifrirano datoteko {file}",
"{file} was created in a public folder" : "{file} ustvarjena je bila v javni mapi",
"You changed {file}" : "Spremenil(a) si {file}",
"You changed an encrypted file in {file}" : "Spremenil(a) si kodirano datoteko v {file}",
"You changed {file}" : "Spremenite datoteko {file}",
"You changed an encrypted file in {file}" : "Spremenite šifrirano datoteko v {file}",
"{user} changed {file}" : "{user} spremenil/a {file}",
"You deleted {file}" : "Izbrisal(a) si {file}",
"{user} deleted {file}" : "{user} izbrisal(a) {file}",
"You restored {file}" : "Obnovil(a) si {file}",
"{user} restored {file}" : "{user} obnovil(a) {file}",
"You renamed {oldfile} to {newfile}" : "Preimenoval(a) si {oldfile} v {newfile}",
"{user} renamed {oldfile} to {newfile}" : "{user} preimenoval(a) {oldfile} v {newfile}",
"You moved {oldfile} to {newfile}" : "Premaknil(a) si {oldfile} v {newfile}",
"{user} moved {oldfile} to {newfile}" : "{user} premaknil(a) {oldfile} v {newfile}",
"You deleted {file}" : "Izbrišete datoteko {file}",
"{user} deleted {file}" : "{user} izbriše datoteko {file}",
"You restored {file}" : "Obnovite datoteko {file}",
"{user} restored {file}" : "{user} obnovi datoteko {file}",
"You renamed {oldfile} to {newfile}" : "Preimenujete {oldfile} v {newfile}",
"{user} renamed {oldfile} to {newfile}" : "{user} preimenuje {oldfile} v {newfile}",
"You moved {oldfile} to {newfile}" : "Premaknete {oldfile} v {newfile}",
"{user} moved {oldfile} to {newfile}" : "{user} premakne {oldfile} v {newfile}",
"A file has been added to or removed from your <strong>favorites</strong>" : "Datoteka je bila ali dodana ali umaknjena iz <strong>priljubljenih</strong>",
"A file or folder has been <strong>changed</strong> or <strong>renamed</strong>" : "Datoteka ali mapa je bila <strong>spremenjena</strong> ali <strong>preimenovana</strong>",
"A new file or folder has been <strong>created</strong>" : "Nova datoteka ali mapa je <strong>ustvarjena</strong>",
"A new file or folder has been <strong>created</strong>" : "Nova datoteka ali mapa je bila <strong>ustvarjena</strong>",
"A file or folder has been <strong>deleted</strong>" : "Datoteka ali mapa je bila <strong>izbrisana</strong>",
"Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Omeji obvestila o ustvarjanju in spreminjanju <strong>najpogosteje uporabljenih </strong> datotek <em>(omogoči pretok)</em>",
"A file or folder has been <strong>restored</strong>" : "A file or folder has been <strong>restored</strong>",
"A file or folder has been <strong>restored</strong>" : "Datoteka ali mapa je bila <strong>obnovljena</strong>",
"Unlimited" : "Neomejeno",
"Upload (max. %s)" : "Pošiljanje (omejitev %s)",
"%s of %s used" : "%s od %s uporabljeno",

View File

@ -3,13 +3,20 @@ OC.L10N.register(
{
"Deleted files" : "Izbrisane datoteke",
"restored" : "obnovljeno",
"This application enables users to restore files that were deleted from the system." : "Program omogoča uporabniku obnovitev datotek, ki so bile predhodno izbrisane iz sistema.",
"This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Program omogoča obnovitev izbrisanih datotek. Datoteke so prikazane kot seznam v spletnem vmesniku, uporabnik pa ima možnost posamezne datoteke obnoviti v ustrezne mape, ali pa jih dokončno izbrisati. Obnovitev povrne tudi shranjene različice datoteke, če so te na voljo. Tudi datoteke, ki so bile izbrisane iz souporabe, je mogoče obnoviti, ne obnovi pa se nastavitev souporabe. Privzeto ostanejo datoteke v košu 30 dni.\nZa preprečevanje popolne zasedenosti, program ne uporabi več kot 50 % trenutno razpoložljivega prostora oziroma količinske omejitve. Če se to zgodi, se najprej do omejitve izbrišejo najstarejše datoteke. Podrobnosti o delovanju in možnostih programa so na voljo v dokumentaciji.",
"Restore" : "Obnovi",
"Delete permanently" : "Trajno izbriši",
"Error while restoring file from trashbin" : "Prišlo je do napake med obnavljanjem datoteke iz koša",
"Error while removing file from trashbin" : "Prišlo je do napake med odstranjevanjem datoteke iz koša",
"Error while restoring files from trashbin" : "Prišlo je do napake med obnavljanjem datotek iz koša",
"Error while emptying trashbin" : "Prišlo je do napake med praznjenjem koša",
"Error while removing files from trashbin" : "Prišlo je do napake med odstranjevanjem datotek iz koša",
"This operation is forbidden" : "To dejanje ni dovoljeno!",
"This directory is unavailable, please check the logs or contact the administrator" : "Mapa ni na voljo. Preverite dnevnik in stopite v stik s skrbnikom sistema.",
"This directory is unavailable, please check the logs or contact the administrator" : "Mapa ni na voljo. Preverite dnevnik opravil in stopite v stik s skrbnikom sistema.",
"No deleted files" : "Ni izbrisanih datotek",
"You will be able to recover deleted files from here" : "Izbrisane datoteke je mogoče povrniti na tem mestu",
"No entries found in this folder" : "V tej mapi ni najdenih predmetov.",
"You will be able to recover deleted files from here" : "Izbrisane datoteke je mogoče tudi povrniti.",
"No entries found in this folder" : "V tej mapi ni datotek in podmap.",
"Select all" : "Izberi vse",
"Name" : "Ime",
"Actions" : "Dejanja",

View File

@ -1,13 +1,20 @@
{ "translations": {
"Deleted files" : "Izbrisane datoteke",
"restored" : "obnovljeno",
"This application enables users to restore files that were deleted from the system." : "Program omogoča uporabniku obnovitev datotek, ki so bile predhodno izbrisane iz sistema.",
"This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Program omogoča obnovitev izbrisanih datotek. Datoteke so prikazane kot seznam v spletnem vmesniku, uporabnik pa ima možnost posamezne datoteke obnoviti v ustrezne mape, ali pa jih dokončno izbrisati. Obnovitev povrne tudi shranjene različice datoteke, če so te na voljo. Tudi datoteke, ki so bile izbrisane iz souporabe, je mogoče obnoviti, ne obnovi pa se nastavitev souporabe. Privzeto ostanejo datoteke v košu 30 dni.\nZa preprečevanje popolne zasedenosti, program ne uporabi več kot 50 % trenutno razpoložljivega prostora oziroma količinske omejitve. Če se to zgodi, se najprej do omejitve izbrišejo najstarejše datoteke. Podrobnosti o delovanju in možnostih programa so na voljo v dokumentaciji.",
"Restore" : "Obnovi",
"Delete permanently" : "Trajno izbriši",
"Error while restoring file from trashbin" : "Prišlo je do napake med obnavljanjem datoteke iz koša",
"Error while removing file from trashbin" : "Prišlo je do napake med odstranjevanjem datoteke iz koša",
"Error while restoring files from trashbin" : "Prišlo je do napake med obnavljanjem datotek iz koša",
"Error while emptying trashbin" : "Prišlo je do napake med praznjenjem koša",
"Error while removing files from trashbin" : "Prišlo je do napake med odstranjevanjem datotek iz koša",
"This operation is forbidden" : "To dejanje ni dovoljeno!",
"This directory is unavailable, please check the logs or contact the administrator" : "Mapa ni na voljo. Preverite dnevnik in stopite v stik s skrbnikom sistema.",
"This directory is unavailable, please check the logs or contact the administrator" : "Mapa ni na voljo. Preverite dnevnik opravil in stopite v stik s skrbnikom sistema.",
"No deleted files" : "Ni izbrisanih datotek",
"You will be able to recover deleted files from here" : "Izbrisane datoteke je mogoče povrniti na tem mestu",
"No entries found in this folder" : "V tej mapi ni najdenih predmetov.",
"You will be able to recover deleted files from here" : "Izbrisane datoteke je mogoče tudi povrniti.",
"No entries found in this folder" : "V tej mapi ni datotek in podmap.",
"Select all" : "Izberi vse",
"Name" : "Ime",
"Actions" : "Dejanja",

View File

@ -2,9 +2,12 @@ OC.L10N.register(
"files_versions",
{
"Versions" : "Različice",
"This application automatically maintains older versions of files that are changed." : "Program samodejno ustvarja zaporedne različice sprememb datotek.",
"This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every users directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesnt run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the users currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Program samodejno ustvarja različice spremenjenih datotek v skriti uporabnikovi mapi. Za uporabnika to pomeni, da lahko prek spletnega vmesnika kadarkoli obnovi starejšo različico datoteke, zamenjana datoteka pa postane ena od različic. Upravljanje vključuje tudi nadzor nad omejitvijo prostora, pri čemer se najprej brišejo najstarejše različice.\nNastavitve določajo tudi omejitev, da shranjene različice ne zasedejo več kot 50 % razpoložljivega prostora oziroma količinske omejitve. Več podrobnosti je na voljo v dokumentaciji programa.",
"Failed to revert {file} to revision {timestamp}." : "Povrnitev datoteke {file} na različico {timestamp} je spodletelo.",
"_%n byte_::_%n bytes_" : ["%n bajt","%n bajta","%n bajti","%n bajtov"],
"Restore" : "Obnovi",
"No other versions available" : "Na voljo ni nobene druge različice datoteke",
"Could not revert: %s" : "Ni mogoče povrniti: %s",
"No earlier versions available" : "Ni starejših različic tega dokumenta.",
"More versions …" : "Več različic ..."

View File

@ -1,8 +1,11 @@
{ "translations": {
"Versions" : "Različice",
"This application automatically maintains older versions of files that are changed." : "Program samodejno ustvarja zaporedne različice sprememb datotek.",
"This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every users directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesnt run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the users currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Program samodejno ustvarja različice spremenjenih datotek v skriti uporabnikovi mapi. Za uporabnika to pomeni, da lahko prek spletnega vmesnika kadarkoli obnovi starejšo različico datoteke, zamenjana datoteka pa postane ena od različic. Upravljanje vključuje tudi nadzor nad omejitvijo prostora, pri čemer se najprej brišejo najstarejše različice.\nNastavitve določajo tudi omejitev, da shranjene različice ne zasedejo več kot 50 % razpoložljivega prostora oziroma količinske omejitve. Več podrobnosti je na voljo v dokumentaciji programa.",
"Failed to revert {file} to revision {timestamp}." : "Povrnitev datoteke {file} na različico {timestamp} je spodletelo.",
"_%n byte_::_%n bytes_" : ["%n bajt","%n bajta","%n bajti","%n bajtov"],
"Restore" : "Obnovi",
"No other versions available" : "Na voljo ni nobene druge različice datoteke",
"Could not revert: %s" : "Ni mogoče povrniti: %s",
"No earlier versions available" : "Ni starejših različic tega dokumenta.",
"More versions …" : "Več različic ..."

View File

@ -1,30 +1,51 @@
OC.L10N.register(
"theming",
{
"Loading preview…" : "Predogled...",
"Loading preview…" : "Poteka nalaganje predogleda ...",
"Saved" : "Shranjeno",
"Admin" : "Admin",
"a safe home for all your data" : "zavetje vseh tvojih podatkov",
"The given name is too long" : "Vpisano ime je predolgo",
"The given web address is too long" : "Vpisana spletna stran je predolga",
"The given slogan is too long" : "Vpisan slogan je predolg",
"The given color is invalid" : "Izbrana barva je neveljavna",
"No file uploaded" : "Ni naložene datoteke",
"Unsupported image type" : "Nepodprt tip datoteke",
"Admin" : "Skrbništvo",
"a safe home for all your data" : "varno okolje za vaše podatke",
"Name cannot be empty" : "Polje imena ne sme biti prazno",
"The given name is too long" : "Podano ime je predolgo",
"The given web address is too long" : "Podan spletni naslov je predolg",
"The given legal notice address is too long" : "Podan naslov pravnega obvestila je predolg",
"The given privacy policy address is too long" : "Podan naslov pravil zasebnosti je predolg",
"The given slogan is too long" : "Podan slogan je predolg",
"The given color is invalid" : "Podana koda barve ni veljavna",
"The file was uploaded" : "Datoteka je uspešno poslana",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Poslana datoteka presega določilo upload_max_filesize v datoteke php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti MAX_FILE_SIZE v zapisu HTML.",
"The file was only partially uploaded" : "Datoteka ni bila poslana v celoti",
"No file was uploaded" : "Datoteka še ni bila poslana",
"Missing a temporary folder" : "Manjka začasna mapa",
"Could not write file to disk" : "Datoteke ni mogoče zapisati na disk",
"A PHP extension stopped the file upload" : "Razširitev PHP je onemogočila pošiljanje datoteke",
"No file uploaded" : "Ni poslanih datotek",
"Unsupported image type" : "Nepodprta vrsta slike",
"You are already using a custom theme. Theming app settings might be overwritten by that." : "Tema po meri je že določena. S spreminjanjem nastavitev bodo stari podatki prepisani.",
"Theming" : "Teme",
"Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teme omogočajo, da enostavno prilagodiš izgled in občutek svojega strežnika in podprtih strank. To bodo videli vsi uporabniki.",
"Legal notice" : "Pravno obvestilo",
"Privacy policy" : "Pravila zasebnosti",
"Adjust the Nextcloud theme" : "Prilagajanje teme Nextcloud",
"Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teme omogočajo enostavno prilagajanje videza in občutka vmesnika in podprtih programskih odjemalcev. Prilagoditve bodo spremenjene za vse uporabnike sistema.",
"Name" : "Ime",
"Reset to default" : "Ponastavi na privzeto",
"Web link" : "Spletni naslov",
"https://…" : "https://…",
"Slogan" : "Slogan",
"Color" : "Barva",
"Logo" : "Logo",
"Upload new logo" : "Naloži nov logo",
"Login image" : "Slika ob prijavi",
"Upload new login background" : "Naloži novo ozadje za prijavo",
"Color" : "Barva vmesnika",
"Logo" : "Logotip",
"Upload new logo" : "Pošlji nov logotip",
"Login image" : "Prijavna slika",
"Upload new login background" : "Pošlji novo ozadje prijavnega okna",
"Remove background image" : "Odstrani sliko ozadja",
"You are already using a custom theme" : "Ti že uporabljaš lastno temo",
"reset to default" : "ponastavi na privzeto",
"Web address" : "Spletni naslov",
"Web address https://…" : "Spletni naslov https://…"
"Advanced options" : "Napredne možnosti",
"Legal notice link" : "Povezava do pravnega obvestila",
"Privacy policy link" : "Povezava do pravil zasebnosti",
"Header logo" : "Logotip glave",
"Upload new header logo" : "Pošlji nov logotip glave",
"Favicon" : "Ikona zaznamka",
"Upload new favicon" : "Pošli novo ikono zaznamka",
"Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Z namestitvijo razširitve Imagemagick PHP s podporo za slike SVG je mogoče samodejno ustvariti ikone zaznamka na podlagi določenega logotipa in barve."
},
"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");

View File

@ -1,28 +1,49 @@
{ "translations": {
"Loading preview…" : "Predogled...",
"Loading preview…" : "Poteka nalaganje predogleda ...",
"Saved" : "Shranjeno",
"Admin" : "Admin",
"a safe home for all your data" : "zavetje vseh tvojih podatkov",
"The given name is too long" : "Vpisano ime je predolgo",
"The given web address is too long" : "Vpisana spletna stran je predolga",
"The given slogan is too long" : "Vpisan slogan je predolg",
"The given color is invalid" : "Izbrana barva je neveljavna",
"No file uploaded" : "Ni naložene datoteke",
"Unsupported image type" : "Nepodprt tip datoteke",
"Admin" : "Skrbništvo",
"a safe home for all your data" : "varno okolje za vaše podatke",
"Name cannot be empty" : "Polje imena ne sme biti prazno",
"The given name is too long" : "Podano ime je predolgo",
"The given web address is too long" : "Podan spletni naslov je predolg",
"The given legal notice address is too long" : "Podan naslov pravnega obvestila je predolg",
"The given privacy policy address is too long" : "Podan naslov pravil zasebnosti je predolg",
"The given slogan is too long" : "Podan slogan je predolg",
"The given color is invalid" : "Podana koda barve ni veljavna",
"The file was uploaded" : "Datoteka je uspešno poslana",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Poslana datoteka presega določilo upload_max_filesize v datoteke php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti MAX_FILE_SIZE v zapisu HTML.",
"The file was only partially uploaded" : "Datoteka ni bila poslana v celoti",
"No file was uploaded" : "Datoteka še ni bila poslana",
"Missing a temporary folder" : "Manjka začasna mapa",
"Could not write file to disk" : "Datoteke ni mogoče zapisati na disk",
"A PHP extension stopped the file upload" : "Razširitev PHP je onemogočila pošiljanje datoteke",
"No file uploaded" : "Ni poslanih datotek",
"Unsupported image type" : "Nepodprta vrsta slike",
"You are already using a custom theme. Theming app settings might be overwritten by that." : "Tema po meri je že določena. S spreminjanjem nastavitev bodo stari podatki prepisani.",
"Theming" : "Teme",
"Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teme omogočajo, da enostavno prilagodiš izgled in občutek svojega strežnika in podprtih strank. To bodo videli vsi uporabniki.",
"Legal notice" : "Pravno obvestilo",
"Privacy policy" : "Pravila zasebnosti",
"Adjust the Nextcloud theme" : "Prilagajanje teme Nextcloud",
"Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teme omogočajo enostavno prilagajanje videza in občutka vmesnika in podprtih programskih odjemalcev. Prilagoditve bodo spremenjene za vse uporabnike sistema.",
"Name" : "Ime",
"Reset to default" : "Ponastavi na privzeto",
"Web link" : "Spletni naslov",
"https://…" : "https://…",
"Slogan" : "Slogan",
"Color" : "Barva",
"Logo" : "Logo",
"Upload new logo" : "Naloži nov logo",
"Login image" : "Slika ob prijavi",
"Upload new login background" : "Naloži novo ozadje za prijavo",
"Color" : "Barva vmesnika",
"Logo" : "Logotip",
"Upload new logo" : "Pošlji nov logotip",
"Login image" : "Prijavna slika",
"Upload new login background" : "Pošlji novo ozadje prijavnega okna",
"Remove background image" : "Odstrani sliko ozadja",
"You are already using a custom theme" : "Ti že uporabljaš lastno temo",
"reset to default" : "ponastavi na privzeto",
"Web address" : "Spletni naslov",
"Web address https://…" : "Spletni naslov https://…"
"Advanced options" : "Napredne možnosti",
"Legal notice link" : "Povezava do pravnega obvestila",
"Privacy policy link" : "Povezava do pravil zasebnosti",
"Header logo" : "Logotip glave",
"Upload new header logo" : "Pošlji nov logotip glave",
"Favicon" : "Ikona zaznamka",
"Upload new favicon" : "Pošli novo ikono zaznamka",
"Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Z namestitvijo razširitve Imagemagick PHP s podporo za slike SVG je mogoče samodejno ustvariti ikone zaznamka na podlagi določenega logotipa in barve."
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
}

View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"_" : "_",
"An error occurred while generating your backup codes" : "Er trad een fout op bij het genereren van je backup codes",
"{name} backup codes" : "{naam} backup codes",
"These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dit zijn je back-upcodes. Bewaar ze en/of druk ze alsjeblieft af, want je ze niet later nog een keer opvragen.",
"Save backup codes" : "Bewaren backup code",
"Print backup codes" : "Afdrukken backup code",

View File

@ -1,6 +1,7 @@
{ "translations": {
"_" : "_",
"An error occurred while generating your backup codes" : "Er trad een fout op bij het genereren van je backup codes",
"{name} backup codes" : "{naam} backup codes",
"These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Dit zijn je back-upcodes. Bewaar ze en/of druk ze alsjeblieft af, want je ze niet later nog een keer opvragen.",
"Save backup codes" : "Bewaren backup code",
"Print backup codes" : "Afdrukken backup code",

View File

@ -1,13 +1,36 @@
OC.L10N.register(
"twofactor_backupcodes",
{
"_" : "_",
"An error occurred while generating your backup codes" : "Prišlo je do namako med ustvarjanjem varnostnih kok",
"{name} backup codes" : "Varnostne kode {name}",
"These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Varnostne kode je priporočljivo shraniti oziroma natisniti, saj jih v tej obliki prebrati ne bo več mogoče.",
"Save backup codes" : "Shrani varnostne kode",
"Print backup codes" : "Natisni varnostne kode",
"Backup codes have been generated. {used} of {total} codes have been used." : "Varnostne kode so bile uspešno ustvarjene. Uporabljeno {used} od skupno {total}.",
"Regenerate backup codes" : "Osveži varnostne kode",
"If you regenerate backup codes, you automatically invalidate old codes." : "Z osvežitvijo varnostnih kod bo preklicana veljavnost starih.",
"Generate backup codes" : "Ustvari rezervne šifre",
"Save backup codes" : "Shrani rezervne šifre",
"Print backup codes" : "Natisni rezervne šifre",
"Regenerate backup codes" : "Osveži rezervne šifre",
"An error occurred while generating your backup codes" : "Zgodila se je napaka med izdelavo revervnih šifer",
"Nextcloud backup codes" : "Nextcloud rezervne šifre",
"Backup code" : "Rezervna šifra",
"Use backup code" : "Uporabi rezervno šifro"
"You created two-factor backup codes for your account" : "Za račun so uspešno ustvarjene dvo-stopenjske varnostne kode",
"Second-factor backup codes" : "Varnostne kode druge stopnje",
"You have enabled two-factor authentication but have not yet generated backup codes. Be sure to do this in case you lose access to your second factor." : "Omogočena je dvostopenjska overitev, ni pa še ustvarjenih varnostnih kod. Prepričajte se, da so te ustvarjene za primer neveljavnosti kode druge stopnje.",
"Backup code" : "Varnostna koda",
"Use backup code" : "Uporabi varnostno kodo",
"Two factor backup codes" : "Dvostopenjske varnostne kode",
"A two-factor auth backup codes provider" : "Ponudnik varnostnih kod za dvostopenjsko overitev",
"Use one of the backup codes you saved when setting up two-factor authentication." : "Uporabite eno izmed varnostnih kod, ki ste jo shranili pri nastavljanju dvostopenjske overitve",
"Submit" : "Pošlji",
"Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Varnostne kode so bile uspešno ustvarjene. Uporabljeno je {{used}} od skupno {{total}}.",
"Nextcloud backup codes" : "Varnostne kode Nextcloud",
"activated" : "omogočeno",
"updated" : "posodobljeno",
"mounted" : "priklopljeno",
"deactivated" : "onemogočeno",
"beforeCreate" : "pred ustvarjanjem",
"created" : "ustvarjeno",
"beforeUpdate" : "pred posodabljanjem",
"beforeDestroy" : "pred uničenjem",
"destroyed" : "uničeno",
"beforeMount" : "pred priklapljanjem"
},
"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");

View File

@ -1,11 +1,34 @@
{ "translations": {
"_" : "_",
"An error occurred while generating your backup codes" : "Prišlo je do namako med ustvarjanjem varnostnih kok",
"{name} backup codes" : "Varnostne kode {name}",
"These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Varnostne kode je priporočljivo shraniti oziroma natisniti, saj jih v tej obliki prebrati ne bo več mogoče.",
"Save backup codes" : "Shrani varnostne kode",
"Print backup codes" : "Natisni varnostne kode",
"Backup codes have been generated. {used} of {total} codes have been used." : "Varnostne kode so bile uspešno ustvarjene. Uporabljeno {used} od skupno {total}.",
"Regenerate backup codes" : "Osveži varnostne kode",
"If you regenerate backup codes, you automatically invalidate old codes." : "Z osvežitvijo varnostnih kod bo preklicana veljavnost starih.",
"Generate backup codes" : "Ustvari rezervne šifre",
"Save backup codes" : "Shrani rezervne šifre",
"Print backup codes" : "Natisni rezervne šifre",
"Regenerate backup codes" : "Osveži rezervne šifre",
"An error occurred while generating your backup codes" : "Zgodila se je napaka med izdelavo revervnih šifer",
"Nextcloud backup codes" : "Nextcloud rezervne šifre",
"Backup code" : "Rezervna šifra",
"Use backup code" : "Uporabi rezervno šifro"
"You created two-factor backup codes for your account" : "Za račun so uspešno ustvarjene dvo-stopenjske varnostne kode",
"Second-factor backup codes" : "Varnostne kode druge stopnje",
"You have enabled two-factor authentication but have not yet generated backup codes. Be sure to do this in case you lose access to your second factor." : "Omogočena je dvostopenjska overitev, ni pa še ustvarjenih varnostnih kod. Prepričajte se, da so te ustvarjene za primer neveljavnosti kode druge stopnje.",
"Backup code" : "Varnostna koda",
"Use backup code" : "Uporabi varnostno kodo",
"Two factor backup codes" : "Dvostopenjske varnostne kode",
"A two-factor auth backup codes provider" : "Ponudnik varnostnih kod za dvostopenjsko overitev",
"Use one of the backup codes you saved when setting up two-factor authentication." : "Uporabite eno izmed varnostnih kod, ki ste jo shranili pri nastavljanju dvostopenjske overitve",
"Submit" : "Pošlji",
"Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Varnostne kode so bile uspešno ustvarjene. Uporabljeno je {{used}} od skupno {{total}}.",
"Nextcloud backup codes" : "Varnostne kode Nextcloud",
"activated" : "omogočeno",
"updated" : "posodobljeno",
"mounted" : "priklopljeno",
"deactivated" : "onemogočeno",
"beforeCreate" : "pred ustvarjanjem",
"created" : "ustvarjeno",
"beforeUpdate" : "pred posodabljanjem",
"beforeDestroy" : "pred uničenjem",
"destroyed" : "uničeno",
"beforeMount" : "pred priklapljanjem"
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
}

View File

@ -7,8 +7,8 @@ OC.L10N.register(
"The update server could not be reached since %d days to check for new updates." : "Połączenie z serwerem z aktualizacjami w celu sprawdzenia nowych aktualizacji nie powiodło się od %d dni.",
"Please check the Nextcloud and server log files for errors." : "Proszę sprawdzić pliki z logami Nextcloud i serwera w celu znalezienia błędów.",
"Update to %1$s is available." : "Aktualizacja do %1$s jest dostępna.",
"Update for %1$s to version %2$s is available." : "Dostępna jest aktualizacja dla %1$s do wersji %2$s",
"Update for {app} to version %s is available." : "Aktualizacja dla {app} do wersji %s jest dostępna.",
"Update for %1$s to version %2$s is available." : "Dostępna jest aktualizacja dla %1$s do wersji %2$s.",
"Update for {app} to version %s is available." : "Dostępna jest aktualizacja dla {app} do wersji %s.",
"Update notification" : "Powiadomienie o aktualizacji",
"Displays update notifications for Nextcloud and provides the SSO for the updater." : "Wyświetla powiadomienia o aktualizacji dla usługi Nextcloud i udostępnia SSO dla aktualizatora.",
"The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Wersja, której używasz, nie jest już wspierana. Pamiętaj, aby jak najszybciej zaktualizować do nowszej wersji.",

View File

@ -5,8 +5,8 @@
"The update server could not be reached since %d days to check for new updates." : "Połączenie z serwerem z aktualizacjami w celu sprawdzenia nowych aktualizacji nie powiodło się od %d dni.",
"Please check the Nextcloud and server log files for errors." : "Proszę sprawdzić pliki z logami Nextcloud i serwera w celu znalezienia błędów.",
"Update to %1$s is available." : "Aktualizacja do %1$s jest dostępna.",
"Update for %1$s to version %2$s is available." : "Dostępna jest aktualizacja dla %1$s do wersji %2$s",
"Update for {app} to version %s is available." : "Aktualizacja dla {app} do wersji %s jest dostępna.",
"Update for %1$s to version %2$s is available." : "Dostępna jest aktualizacja dla %1$s do wersji %2$s.",
"Update for {app} to version %s is available." : "Dostępna jest aktualizacja dla {app} do wersji %s.",
"Update notification" : "Powiadomienie o aktualizacji",
"Displays update notifications for Nextcloud and provides the SSO for the updater." : "Wyświetla powiadomienia o aktualizacji dla usługi Nextcloud i udostępnia SSO dla aktualizatora.",
"The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Wersja, której używasz, nie jest już wspierana. Pamiętaj, aby jak najszybciej zaktualizować do nowszej wersji.",

View File

@ -8,6 +8,7 @@ OC.L10N.register(
"No data specified" : "Ni navedenih podatkov",
" Could not set configuration %s" : "Ni mogoče uveljaviti nastavitev %s",
"Action does not exist" : "Dejanje ne obstaja",
"Very weak password" : "Zelo šibko geslo",
"The Base DN appears to be wrong" : "Enoznačno ime (DN) podatkovne zbirke je napačno",
"Testing configuration…" : "Poteka preizkušanje nastavitev ...",
"Configuration incorrect" : "Nastavitev ni ustrezna",
@ -83,6 +84,8 @@ OC.L10N.register(
"Saving" : "Poteka shranjevanje ...",
"Back" : "Nazaj",
"Continue" : "Nadaljuj",
"Current password" : "Trenutno geslo",
"New password" : "Novo geslo",
"Cancel" : "Prekliči",
"Server" : "Strežnik",
"Users" : "Uporabniki",

View File

@ -6,6 +6,7 @@
"No data specified" : "Ni navedenih podatkov",
" Could not set configuration %s" : "Ni mogoče uveljaviti nastavitev %s",
"Action does not exist" : "Dejanje ne obstaja",
"Very weak password" : "Zelo šibko geslo",
"The Base DN appears to be wrong" : "Enoznačno ime (DN) podatkovne zbirke je napačno",
"Testing configuration…" : "Poteka preizkušanje nastavitev ...",
"Configuration incorrect" : "Nastavitev ni ustrezna",
@ -81,6 +82,8 @@
"Saving" : "Poteka shranjevanje ...",
"Back" : "Nazaj",
"Continue" : "Nadaljuj",
"Current password" : "Trenutno geslo",
"New password" : "Novo geslo",
"Cancel" : "Prekliči",
"Server" : "Strežnik",
"Users" : "Uporabniki",

View File

@ -309,8 +309,10 @@ select,
}
/* Radio & Checkboxes */
$checkbox-radio-size: 14px;
$color-checkbox-radio-disabled: nc-darken($color-main-background, 27%);
$color-checkbox-radio-border: nc-darken($color-main-background, 47%);
$color-checkbox-radio-white: #fff;
input {
&[type='checkbox'],
@ -333,12 +335,11 @@ input {
+ label:before {
content: '';
display: inline-block;
height: 12px;
width: 12px;
height: $checkbox-radio-size;
width: $checkbox-radio-size;
vertical-align: middle;
border-radius: 50%;
margin: 3px;
margin-top: 1px;
margin: 0 6px 3px 3px;
border: 1px solid $color-checkbox-radio-border;
}
&:not(:disabled):not(:checked) + label:hover:before,
@ -367,14 +368,14 @@ input {
margin-left: 18px;
}
& + label ~ em:last-of-type {
margin-bottom: 12px;
margin-bottom: $checkbox-radio-size;
}
}
&.checkbox {
+ label:before {
border-radius: 1px;
height: 10px;
width: 10px;
height: $checkbox-radio-size;
width: $checkbox-radio-size;
box-shadow: none !important;
background-position: center;
}
@ -387,7 +388,6 @@ input {
}
/* We do not use the nc-darken function as this is not supposed to be changed */
$color-checkbox-radio-white: #fff;
&.radio--white,
&.checkbox--white {
+ label:before,

View File

@ -117,7 +117,7 @@ function(e){var t,n,i,r,s,o,a,l,u,c,d,h,p,f,m,g,_,v,y,b="sizzle"+1*new Date,w=e.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
function j(e){for(var t,n=[],i=0,r=-1,s=0;i<e.length;){t=e.charAt(i);var o=!s&&"."===t||t>="0"&&t<="9";o!==s&&(n[++r]="",s=o),n[r]+=t,i++}return n}var z={History:{_handlers:[],_pushState:function(e,t,n){var i;if(i="string"==typeof e?e:F.buildQueryString(e),window.history.pushState){if(t=t||location.pathname+"?"+i,navigator.userAgent.toLowerCase().indexOf("firefox")>-1&&parseInt(navigator.userAgent.split("/").pop())<51)for(var r,s=document.querySelectorAll('[fill^="url(#"], [stroke^="url(#"], [filter^="url(#invert"]'),o=0,a=s.length;o<a;o++)(r=s[o]).style.fill=r.style.fill,r.style.stroke=r.style.stroke,r.removeAttribute("filter"),r.setAttribute("filter","url(#invert)");n?window.history.replaceState(e,"",t):window.history.pushState(e,"",t)}else window.location.hash="?"+i,this._cancelPop=!0},pushState:function(e,t){return this._pushState(e,t,!1)},replaceState:function(e,t){return this._pushState(e,t,!0)},addOnPopStateHandler:function(e){this._handlers.push(e)},_parseHashQuery:function(){var e=window.location.hash,t=e.indexOf("?");return t>=0?e.substr(t+1):e.length?e.substr(1):""},_decodeQuery:function(e){return e.replace(/\+/g," ")},parseUrlQuery:function(){var e,t=this._parseHashQuery();return t&&(e=F.parseQueryString(this._decodeQuery(t))),(e=c.a.extend(e||{},F.parseQueryString(this._decodeQuery(location.search))))||{}},_onPopState:function(e){var t;if(this._cancelPop)this._cancelPop=!1;else if(this._handlers.length){t=e&&e.state,c.a.isString(t)?t=F.parseQueryString(t):t||(t=this.parseUrlQuery()||{});for(var n=0;n<this._handlers.length;n++)this._handlers[n](t)}}},humanFileSize:i(74).a,computerFileSize:function(e){if("string"!=typeof e)return null;var t=e.toLowerCase().trim(),n=null,i=t.match(/^[\s+]?([0-9]*)(\.([0-9]+))?( +)?([kmgtp]?b?)$/i);return null===i?null:(n=parseFloat(t),isFinite(n)?(i[5]&&(n*={b:1,k:1024,kb:1024,mb:1048576,m:1048576,gb:1073741824,g:1073741824,tb:1099511627776,t:1099511627776,pb:0x4000000000000,p:0x4000000000000}[i[5]]),n=Math.round(n)):null)},formatDate:function(e,t){return t=t||"LLL",H()(e).format(t)},relativeModifiedDate:function(e){var n=H()().diff(H()(e));return n>=0&&n<45e3?t("core","seconds ago"):H()(e).fromNow()},isIE:function(){return M()("html").hasClass("ie")},getScrollBarWidth:function(){if(this._scrollBarWidth)return this._scrollBarWidth;var e=document.createElement("p");e.style.width="100%",e.style.height="200px";var t=document.createElement("div");t.style.position="absolute",t.style.top="0px",t.style.left="0px",t.style.visibility="hidden",t.style.width="200px",t.style.height="150px",t.style.overflow="hidden",t.appendChild(e),document.body.appendChild(t);var n=e.offsetWidth;t.style.overflow="scroll";var i=e.offsetWidth;return n===i&&(i=t.clientWidth),document.body.removeChild(t),this._scrollBarWidth=n-i,this._scrollBarWidth},stripTime:function(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate())},naturalSortCompare:function(e,t){var n,i=j(e),r=j(t);for(n=0;i[n]&&r[n];n++)if(i[n]!==r[n]){var s=Number(i[n]),o=Number(r[n]);return s==i[n]&&o==r[n]?s-o:i[n].localeCompare(r[n],F.getLanguage())}return i.length-r.length},waitFor:function(e,t){!function n(){!0!==e()&&setTimeout(n,t)}()},isCookieSetToValue:function(e,t){for(var n=document.cookie.split(";"),i=0;i<n.length;i++){var r=n[i].split("=");if(r[0].trim()===e&&r[1].trim()===t)return!0}return!1}},F=n.a={Apps:r.a,AppConfig:o,Backbone:b,ContactsMenu:w.a,EventSource:A,L10N:Y,msg:S,Notification:C,PasswordConfirmation:P,Plugins:{_plugins:{},register:function(e,t){var n=this._plugins[e];n||(n=this._plugins[e]=[]),n.push(t)},getPlugins:function(e){return this._plugins[e]||[]},attach:function(e,t,n){for(var i=this.getPlugins(e),r=0;r<i.length;r++)i[r].attach&&i[r].attach(t,n)},detach:function(e,t,n){for(var i=this.getPlugins(e),r=0;r<i.length;r++)i[r].detach&&i[r].detach(t,n)}},search:I,Util:z};
function j(e){for(var t,n=[],i=0,r=-1,s=0;i<e.length;){t=e.charAt(i);var o=!s&&"."===t||t>="0"&&t<="9";o!==s&&(n[++r]="",s=o),n[r]+=t,i++}return n}var z={History:{_handlers:[],_pushState:function(e,t,n){var i;if(i="string"==typeof e?e:F.buildQueryString(e),window.history.pushState){if(t=t||location.pathname+"?"+i,navigator.userAgent.toLowerCase().indexOf("firefox")>-1&&parseInt(navigator.userAgent.split("/").pop())<51)for(var r,s=document.querySelectorAll('[fill^="url(#"], [stroke^="url(#"], [filter^="url(#invert"]'),o=0,a=s.length;o<a;o++)(r=s[o]).style.fill=r.style.fill,r.style.stroke=r.style.stroke,r.removeAttribute("filter"),r.setAttribute("filter","url(#invert)");n?window.history.replaceState(e,"",t):window.history.pushState(e,"",t)}else window.location.hash="?"+i,this._cancelPop=!0},pushState:function(e,t){return this._pushState(e,t,!1)},replaceState:function(e,t){return this._pushState(e,t,!0)},addOnPopStateHandler:function(e){this._handlers.push(e)},_parseHashQuery:function(){var e=window.location.hash,t=e.indexOf("?");return t>=0?e.substr(t+1):e.length?e.substr(1):""},_decodeQuery:function(e){return e.replace(/\+/g," ")},parseUrlQuery:function(){var e,t=this._parseHashQuery();return t&&(e=F.parseQueryString(this._decodeQuery(t))),(e=c.a.extend(e||{},F.parseQueryString(this._decodeQuery(location.search))))||{}},_onPopState:function(e){var t;if(this._cancelPop)this._cancelPop=!1;else if(this._handlers.length){t=e&&e.state,c.a.isString(t)?t=F.parseQueryString(t):t||(t=this.parseUrlQuery()||{});for(var n=0;n<this._handlers.length;n++)this._handlers[n](t)}}},humanFileSize:i(74).a,computerFileSize:function(e){if("string"!=typeof e)return null;var t=e.toLowerCase().trim(),n=null,i=t.match(/^[\s+]?([0-9]*)(\.([0-9]+))?( +)?([kmgtp]?b?)$/i);return null===i?null:(n=parseFloat(t),isFinite(n)?(i[5]&&(n*={b:1,k:1024,kb:1024,mb:1048576,m:1048576,gb:1073741824,g:1073741824,tb:1099511627776,t:1099511627776,pb:0x4000000000000,p:0x4000000000000}[i[5]]),n=Math.round(n)):null)},formatDate:function(e,t){return t=t||"LLL",H()(e).format(t)},relativeModifiedDate:function(e){var n=H()().diff(H()(e));return n>=0&&n<45e3?t("core","seconds ago"):H()(e).fromNow()},isIE:function(){return M()("html").hasClass("ie")},getScrollBarWidth:function(){if(this._scrollBarWidth)return this._scrollBarWidth;var e=document.createElement("p");e.style.width="100%",e.style.height="200px";var t=document.createElement("div");t.style.position="absolute",t.style.top="0px",t.style.left="0px",t.style.visibility="hidden",t.style.width="200px",t.style.height="150px",t.style.overflow="hidden",t.appendChild(e),document.body.appendChild(t);var n=e.offsetWidth;t.style.overflow="scroll";var i=e.offsetWidth;return n===i&&(i=t.clientWidth),document.body.removeChild(t),this._scrollBarWidth=n-i,this._scrollBarWidth},stripTime:function(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate())},naturalSortCompare:function(e,t){var n,i=j(e),r=j(t);for(n=0;i[n]&&r[n];n++)if(i[n]!==r[n]){var s=Number(i[n]),o=Number(r[n]);return s==i[n]&&o==r[n]?s-o:i[n].localeCompare(r[n],F.getLanguage())}return i.length-r.length},waitFor:function(e,t){!function n(){!0!==e()&&setTimeout(n,t)}()},isCookieSetToValue:function(e,t){for(var n=document.cookie.split(";"),i=0;i<n.length;i++){var r=n[i].split("=");if(r[0].trim()===e&&r[1].trim()===t)return!0}return!1}},F=n.a={Apps:r.a,AppConfig:o,Backbone:b,ContactsMenu:w.a,EventSource:A,L10N:Y,msg:S,Notification:C,PasswordConfirmation:P,Plugins:{_plugins:{},register:function(e,t){var n=this._plugins[e];n||(n=this._plugins[e]=[]),n.push(t)},getPlugins:function(e){return this._plugins[e]||[]},attach:function(e,t,n){for(var i=this.getPlugins(e),r=0;r<i.length;r++)i[r].attach&&i[r].attach(t,n)},detach:function(e,t,n){for(var i=this.getPlugins(e),r=0;r<i.length;r++)i[r].detach&&i[r].detach(t,n)}},search:I,Util:z,redirect:function(e){return window.location=e},reload:function(){return window.location.reload()}};
/*
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
*

File diff suppressed because one or more lines are too long

View File

@ -206,21 +206,6 @@ Object.assign(window.OC, {
return !!(file.match(oc_config.blacklist_files_regex));
},
/**
* Redirect to the target URL, can also be used for downloads.
* @param {string} targetURL URL to redirect to
*/
redirect: function(targetURL) {
window.location = targetURL;
},
/**
* Reloads the current page
*/
reload: function() {
window.location.reload();
},
/**
* Protocol that is used to access this Nextcloud instance
* @return {string} Used protocol

View File

@ -244,13 +244,13 @@ OC.L10N.register(
"Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "組み込みのphpメーラーの使用はサポートされていません。 <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">メールサーバーの設定を更新してください。↗<a/>",
"The PHP memory limit is below the recommended value of 512MB." : "PHPのメモリ制限は推奨値512MBを下回ります。",
"Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "一部のアプリディレクトリは、Webサーバーディレクトリとは異なるユーザーによって所有されています。 アプリが手動でインストールされた場合、これがそのケースに値します。 次のアプリディレクトリの権限を確認します。",
"MySQL is used as database but does not support 4-byte characters. To be able to handle 4-byte characters (like emojis) without issues in filenames or comments for example it is recommended to enable the 4-byte support in MySQL. For further details read <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">the documentation page about this</a>." : "MySQLはデータベースとして使用されますが、4バイト文字をサポートしません。 たとえば、ファイル名やコメントの問題なしにemojisのような4バイト文字を処理できるようにするには、MySQLで4バイトサポートを有効にすることをお勧めします。 詳細については<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">これに関するドキュメントページを読んでください。</a>",
"This instance uses an S3 based object store as primary storage. The uploaded files are stored temporarily on the server and thus it is recommended to have 50 GB of free space available in the temp directory of PHP. Check the logs for full details about the path and the available space. To improve this please change the temporary directory in the php.ini or make more space available in that path." : "このインスタンスは、S3ベースのオブジェクトストアをプライマリストレージとして使用します。 アップロードされたファイルは一時的にサーバーに保存されるため、PHPの一時ディレクトリに50 GBの空き容量を確保することをお勧めします。 パスと使用可能スペースについての完全な詳細についてはログを確認してください。 これを改善するには、php.iniの一時ディレクトリを変更するか、またはそのパスでより多くのスペースを利用できるようにしてください。",
"MySQL is used as database but does not support 4-byte characters. To be able to handle 4-byte characters (like emojis) without issues in filenames or comments for example it is recommended to enable the 4-byte support in MySQL. For further details read <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">the documentation page about this</a>." : "MySQLをデータベースとして使用していますが、4バイト文字をサポートしていません。たとえば、ファイル名やコメントの問題なしに絵文字のような4バイト文字を処理できるようにするには、MySQLで4バイトサポートを有効にすることをお勧めします。 詳細については<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">これに関するドキュメントページを読んでください。</a>",
"This instance uses an S3 based object store as primary storage. The uploaded files are stored temporarily on the server and thus it is recommended to have 50 GB of free space available in the temp directory of PHP. Check the logs for full details about the path and the available space. To improve this please change the temporary directory in the php.ini or make more space available in that path." : "このインスタンスは、S3ベースのオブジェクトストアをプライマリストレージとして使用します。 アップロードされたファイルは一時的にサーバーに保存されるため、PHPの一時ディレクトリに50 GBの空き容量を確保することをお勧めします。 パスと空き容量についての完全な詳細はログを確認してください。 一時ディレクトリを修正するには、php.iniの一時ディレクトリを変更するか、またはそのパスでより多くのスペースを利用できるようにしてください。",
"Error occurred while checking server setup" : "サーバー設定のチェック中にエラーが発生しました",
"Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "あなたのデータディレクトリとファイルはおそらくインターネットからアクセス可能です。 .htaccessファイルが機能していません。 データディレクトリにアクセスできなくなるようにWebサーバーを設定するか、データディレクトリをWebサーバーのドキュメントルートの外側に移動することを強くお勧めします。",
"The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 それに応じてこの設定を調整することをお勧めしますので、これは潜在的なセキュリティまたはプライバシーのリスクです。",
"The \"{header}\" HTTP header is not set to \"{expected}\". Some features might not work correctly, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 それに応じてこの設定を調整することが推奨されるため、一部の機能は正しく機能しない可能性があります。",
"The \"{header}\" HTTP header doesn't contain \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーに \"{expected}\"が含まれていません。 それに応じてこの設定を調整することをお勧めされるため、これらは潜在的なセキュリティまたはプライバシーのリスクになります。",
"The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 これは潜在的なセキュリティまたはプライバシーのリスクになります。この設定を調整することをお勧めします",
"The \"{header}\" HTTP header is not set to \"{expected}\". Some features might not work correctly, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 一部の機能は正しく機能しない可能性があります。この設定を調整することを推奨します。",
"The \"{header}\" HTTP header doesn't contain \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーに \"{expected}\"が含まれていません。 これらは潜在的なセキュリティまたはプライバシーのリスクになります。この設定を調整することをお勧めします。",
"The \"{header}\" HTTP header is not set to \"{val1}\", \"{val2}\", \"{val3}\", \"{val4}\" or \"{val5}\". This can leak referer information. See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{link}\">W3C Recommendation ↗</a>." : "\"{header}\" HTTPヘッダーが \"{val1}\"、 \"{val2}\"、 \"{val3}\"、 \"{val4}\"、または \"{val5}\"に設定されていません。 これにより、参照元情報が漏れる可能性があります。 <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{link}\">W3C勧告↗</a>を参照してください。",
"The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips ↗</a>." : "\"Strict-Transport-Security\" HTTPヘッダが最低でも \"{seconds}\" 秒に設定されていません。セキュリティを強化するには、<a href=\"{docUrl}\" rel=\"noreferrer noopener\">セキュリティTips ↗</a>で解説しているHSTSを有効にすることを推奨します。",
"Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips ↗</a>." : "セキュアではないHTTP経由でアクセスしています。<a href=\"{docUrl}\">セキュリティTips ↗</a>で述べているように、代わりにHTTPSを必要とするようサーバーを設定することを強くおすすめします。",
@ -320,7 +320,7 @@ OC.L10N.register(
"Finishing …" : "作業を完了しています ...",
"Need help?" : "ヘルプが必要ですか?",
"See the documentation" : "ドキュメントを確認してください",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Nextcloudを再インストールしようとしているようです。 しかし、ファイルCAN_INSTALLがconfigディレクトリにありません。 続行するには、configフォルダーにCAN_INSTALLファイルを作成してください。",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Nextcloudを再インストールしようとしているようです。 しかし、CAN_INSTALLファイルがconfigディレクトリにありません。 続行するには、configフォルダーにCAN_INSTALLファイルを作成してください。",
"Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "設定フォルダーからCAN_INSTALLを削除できませんでした。 このファイルを手動で削除してください。",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "このアプリケーションの動作にはJavaScriptが必要です。\n {linkstart}JavaScriptを有効にし{linkend} 、ページを更新してください。 ",
"Get your own free account" : "あなた自身の無料アカウントを入手",
@ -353,8 +353,8 @@ OC.L10N.register(
"Alternative log in using app token" : "アプリトークンを使って代替ログイン",
"Account access" : "アカウントによるアクセス許可",
"You are about to grant %1$s access to your %2$s account." : "%2$s アカウントに あなたのアカウント %1$s へのアクセスを許可",
"Account connected" : "アカウント接続",
"Your client should now be connected! You can close this window." : "あなたのクライアントは接続されているはずです。 このウィンドウを閉じることができます。",
"Account connected" : "アカウント接続",
"Your client should now be connected! You can close this window." : "あなたのクライアントは接続されているはずです。 このウィンドウは閉じても構いません。",
"New password" : "新しいパスワードを入力",
"New Password" : "新しいパスワード",
"This share is password-protected" : "この共有はパスワードで保護されています",
@ -362,13 +362,13 @@ OC.L10N.register(
"Two-factor authentication" : "二要素認証",
"Enhanced security is enabled for your account. Choose a second factor for authentication:" : "このアカウントは強化セキュリティが適用されています。二要素認証を行ってください。",
"Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "有効な二要素認証方式のうち少なくとも1つをロードできませんでした。 管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "二要素認証が実施されていますが、アカウントに設定されていません。 管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance." : "二要素認証が実施されていますが、アカウントに設定されていません。 バックアップコードを使用してログインするか、管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "二要素認証が強制されていますが、アカウントに設定されていません。 不明な点は管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance." : "二要素認証が強制されていますが、アカウントに設定されていません。 バックアップコードを使用してログインするか、不明点は管理者に連絡してください。",
"Use backup code" : "バックアップコードを使用する",
"Cancel log in" : "ログインをキャンセルする",
"Error while validating your second factor" : "第二要素の検証でエラーが発生しました",
"Access through untrusted domain" : "信頼できないドメインを介したアクセス",
"Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "管理者に連絡してください。 あなたが管理者であれば、config.sample.phpの例のようにconfig / config.phpの \"trusted_domains\"設定を編集してください。",
"Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "管理者に連絡してください。 管理者の場合は、config.sample.phpを参照して config/config.phpの \"trusted_domains\" を設定してください。",
"Further information how to configure this can be found in the %1$sdocumentation%2$s." : "これを構成する方法の詳細は、%1$sドキュメント%2$sにあります。",
"App update required" : "アプリの更新が必要",
"%1$s will be updated to version %2$s" : "%1$s は バーション %2$s にアップデートされます",

View File

@ -242,13 +242,13 @@
"Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "組み込みのphpメーラーの使用はサポートされていません。 <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">メールサーバーの設定を更新してください。↗<a/>",
"The PHP memory limit is below the recommended value of 512MB." : "PHPのメモリ制限は推奨値512MBを下回ります。",
"Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "一部のアプリディレクトリは、Webサーバーディレクトリとは異なるユーザーによって所有されています。 アプリが手動でインストールされた場合、これがそのケースに値します。 次のアプリディレクトリの権限を確認します。",
"MySQL is used as database but does not support 4-byte characters. To be able to handle 4-byte characters (like emojis) without issues in filenames or comments for example it is recommended to enable the 4-byte support in MySQL. For further details read <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">the documentation page about this</a>." : "MySQLはデータベースとして使用されますが、4バイト文字をサポートしません。 たとえば、ファイル名やコメントの問題なしにemojisのような4バイト文字を処理できるようにするには、MySQLで4バイトサポートを有効にすることをお勧めします。 詳細については<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">これに関するドキュメントページを読んでください。</a>",
"This instance uses an S3 based object store as primary storage. The uploaded files are stored temporarily on the server and thus it is recommended to have 50 GB of free space available in the temp directory of PHP. Check the logs for full details about the path and the available space. To improve this please change the temporary directory in the php.ini or make more space available in that path." : "このインスタンスは、S3ベースのオブジェクトストアをプライマリストレージとして使用します。 アップロードされたファイルは一時的にサーバーに保存されるため、PHPの一時ディレクトリに50 GBの空き容量を確保することをお勧めします。 パスと使用可能スペースについての完全な詳細についてはログを確認してください。 これを改善するには、php.iniの一時ディレクトリを変更するか、またはそのパスでより多くのスペースを利用できるようにしてください。",
"MySQL is used as database but does not support 4-byte characters. To be able to handle 4-byte characters (like emojis) without issues in filenames or comments for example it is recommended to enable the 4-byte support in MySQL. For further details read <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">the documentation page about this</a>." : "MySQLをデータベースとして使用していますが、4バイト文字をサポートしていません。たとえば、ファイル名やコメントの問題なしに絵文字のような4バイト文字を処理できるようにするには、MySQLで4バイトサポートを有効にすることをお勧めします。 詳細については<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">これに関するドキュメントページを読んでください。</a>",
"This instance uses an S3 based object store as primary storage. The uploaded files are stored temporarily on the server and thus it is recommended to have 50 GB of free space available in the temp directory of PHP. Check the logs for full details about the path and the available space. To improve this please change the temporary directory in the php.ini or make more space available in that path." : "このインスタンスは、S3ベースのオブジェクトストアをプライマリストレージとして使用します。 アップロードされたファイルは一時的にサーバーに保存されるため、PHPの一時ディレクトリに50 GBの空き容量を確保することをお勧めします。 パスと空き容量についての完全な詳細はログを確認してください。 一時ディレクトリを修正するには、php.iniの一時ディレクトリを変更するか、またはそのパスでより多くのスペースを利用できるようにしてください。",
"Error occurred while checking server setup" : "サーバー設定のチェック中にエラーが発生しました",
"Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "あなたのデータディレクトリとファイルはおそらくインターネットからアクセス可能です。 .htaccessファイルが機能していません。 データディレクトリにアクセスできなくなるようにWebサーバーを設定するか、データディレクトリをWebサーバーのドキュメントルートの外側に移動することを強くお勧めします。",
"The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 それに応じてこの設定を調整することをお勧めしますので、これは潜在的なセキュリティまたはプライバシーのリスクです。",
"The \"{header}\" HTTP header is not set to \"{expected}\". Some features might not work correctly, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 それに応じてこの設定を調整することが推奨されるため、一部の機能は正しく機能しない可能性があります。",
"The \"{header}\" HTTP header doesn't contain \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーに \"{expected}\"が含まれていません。 それに応じてこの設定を調整することをお勧めされるため、これらは潜在的なセキュリティまたはプライバシーのリスクになります。",
"The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 これは潜在的なセキュリティまたはプライバシーのリスクになります。この設定を調整することをお勧めします",
"The \"{header}\" HTTP header is not set to \"{expected}\". Some features might not work correctly, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーが \"{expected}\"に設定されていません。 一部の機能は正しく機能しない可能性があります。この設定を調整することを推奨します。",
"The \"{header}\" HTTP header doesn't contain \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTPヘッダーに \"{expected}\"が含まれていません。 これらは潜在的なセキュリティまたはプライバシーのリスクになります。この設定を調整することをお勧めします。",
"The \"{header}\" HTTP header is not set to \"{val1}\", \"{val2}\", \"{val3}\", \"{val4}\" or \"{val5}\". This can leak referer information. See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{link}\">W3C Recommendation ↗</a>." : "\"{header}\" HTTPヘッダーが \"{val1}\"、 \"{val2}\"、 \"{val3}\"、 \"{val4}\"、または \"{val5}\"に設定されていません。 これにより、参照元情報が漏れる可能性があります。 <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{link}\">W3C勧告↗</a>を参照してください。",
"The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips ↗</a>." : "\"Strict-Transport-Security\" HTTPヘッダが最低でも \"{seconds}\" 秒に設定されていません。セキュリティを強化するには、<a href=\"{docUrl}\" rel=\"noreferrer noopener\">セキュリティTips ↗</a>で解説しているHSTSを有効にすることを推奨します。",
"Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips ↗</a>." : "セキュアではないHTTP経由でアクセスしています。<a href=\"{docUrl}\">セキュリティTips ↗</a>で述べているように、代わりにHTTPSを必要とするようサーバーを設定することを強くおすすめします。",
@ -318,7 +318,7 @@
"Finishing …" : "作業を完了しています ...",
"Need help?" : "ヘルプが必要ですか?",
"See the documentation" : "ドキュメントを確認してください",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Nextcloudを再インストールしようとしているようです。 しかし、ファイルCAN_INSTALLがconfigディレクトリにありません。 続行するには、configフォルダーにCAN_INSTALLファイルを作成してください。",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Nextcloudを再インストールしようとしているようです。 しかし、CAN_INSTALLファイルがconfigディレクトリにありません。 続行するには、configフォルダーにCAN_INSTALLファイルを作成してください。",
"Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "設定フォルダーからCAN_INSTALLを削除できませんでした。 このファイルを手動で削除してください。",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "このアプリケーションの動作にはJavaScriptが必要です。\n {linkstart}JavaScriptを有効にし{linkend} 、ページを更新してください。 ",
"Get your own free account" : "あなた自身の無料アカウントを入手",
@ -351,8 +351,8 @@
"Alternative log in using app token" : "アプリトークンを使って代替ログイン",
"Account access" : "アカウントによるアクセス許可",
"You are about to grant %1$s access to your %2$s account." : "%2$s アカウントに あなたのアカウント %1$s へのアクセスを許可",
"Account connected" : "アカウント接続",
"Your client should now be connected! You can close this window." : "あなたのクライアントは接続されているはずです。 このウィンドウを閉じることができます。",
"Account connected" : "アカウント接続",
"Your client should now be connected! You can close this window." : "あなたのクライアントは接続されているはずです。 このウィンドウは閉じても構いません。",
"New password" : "新しいパスワードを入力",
"New Password" : "新しいパスワード",
"This share is password-protected" : "この共有はパスワードで保護されています",
@ -360,13 +360,13 @@
"Two-factor authentication" : "二要素認証",
"Enhanced security is enabled for your account. Choose a second factor for authentication:" : "このアカウントは強化セキュリティが適用されています。二要素認証を行ってください。",
"Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "有効な二要素認証方式のうち少なくとも1つをロードできませんでした。 管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "二要素認証が実施されていますが、アカウントに設定されていません。 管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance." : "二要素認証が実施されていますが、アカウントに設定されていません。 バックアップコードを使用してログインするか、管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "二要素認証が強制されていますが、アカウントに設定されていません。 不明な点は管理者に連絡してください。",
"Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance." : "二要素認証が強制されていますが、アカウントに設定されていません。 バックアップコードを使用してログインするか、不明点は管理者に連絡してください。",
"Use backup code" : "バックアップコードを使用する",
"Cancel log in" : "ログインをキャンセルする",
"Error while validating your second factor" : "第二要素の検証でエラーが発生しました",
"Access through untrusted domain" : "信頼できないドメインを介したアクセス",
"Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "管理者に連絡してください。 あなたが管理者であれば、config.sample.phpの例のようにconfig / config.phpの \"trusted_domains\"設定を編集してください。",
"Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "管理者に連絡してください。 管理者の場合は、config.sample.phpを参照して config/config.phpの \"trusted_domains\" を設定してください。",
"Further information how to configure this can be found in the %1$sdocumentation%2$s." : "これを構成する方法の詳細は、%1$sドキュメント%2$sにあります。",
"App update required" : "アプリの更新が必要",
"%1$s will be updated to version %2$s" : "%1$s は バーション %2$s にアップデートされます",

View File

@ -28,6 +28,8 @@ OC.L10N.register(
"Reset your password" : "Herstel je wachtwoord",
"Couldn't send reset email. Please contact your administrator." : "Kon herstel email niet versturen. Neem contact op met je beheerder.",
"Couldn't send reset email. Please make sure your username is correct." : "Kon herstel email niet versturen. Controleer je gebruikersnaam.",
"Some of your link shares have been removed" : "Sommige van je deellinks zijn verwijderd",
"Due to a security bug we had to remove some of your link shares. Please see the link for more information." : "Door een security-bug moesten we sommige van je deellinks verwijderen. Bekijk de link voor meer informatie.",
"Preparing update" : "Update voorbereiden",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair step:" : "Herstel stap:",
@ -318,6 +320,8 @@ OC.L10N.register(
"Finishing …" : "Afronden ...",
"Need help?" : "Hulp nodig?",
"See the documentation" : "Zie de documentatie",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Het lijkt erop of je Nextcloud wilt herinstalleren. Maar het bestand CAN_INSTALL ontbreekt in de configdirectory. Maak het bestand CAN_INSTALL aan in je config map om verder te gaan.",
"Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "Kon CAN_INSTALL niet verwijderen uit de config map. Verwijder het bestand handmatig.",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Deze applicatie heeft JavaScript nodig. {linkstart}Activeer JavaScript{linkend} en ververs deze pagina.",
"Get your own free account" : "Maak je eigen gratis account",
"Skip to main content" : "Ga naar hoofdinhoud",

View File

@ -26,6 +26,8 @@
"Reset your password" : "Herstel je wachtwoord",
"Couldn't send reset email. Please contact your administrator." : "Kon herstel email niet versturen. Neem contact op met je beheerder.",
"Couldn't send reset email. Please make sure your username is correct." : "Kon herstel email niet versturen. Controleer je gebruikersnaam.",
"Some of your link shares have been removed" : "Sommige van je deellinks zijn verwijderd",
"Due to a security bug we had to remove some of your link shares. Please see the link for more information." : "Door een security-bug moesten we sommige van je deellinks verwijderen. Bekijk de link voor meer informatie.",
"Preparing update" : "Update voorbereiden",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair step:" : "Herstel stap:",
@ -316,6 +318,8 @@
"Finishing …" : "Afronden ...",
"Need help?" : "Hulp nodig?",
"See the documentation" : "Zie de documentatie",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Het lijkt erop of je Nextcloud wilt herinstalleren. Maar het bestand CAN_INSTALL ontbreekt in de configdirectory. Maak het bestand CAN_INSTALL aan in je config map om verder te gaan.",
"Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "Kon CAN_INSTALL niet verwijderen uit de config map. Verwijder het bestand handmatig.",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Deze applicatie heeft JavaScript nodig. {linkstart}Activeer JavaScript{linkend} en ververs deze pagina.",
"Get your own free account" : "Maak je eigen gratis account",
"Skip to main content" : "Ga naar hoofdinhoud",

View File

@ -132,6 +132,7 @@ OC.L10N.register(
"Access control" : "Управление доступом",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} предоставил(а) доступ созданием ссылки",
"Share details could not be loaded for this item." : "Не удалось загрузить информацию об общем доступе для этого элемента.",
"Search globally" : "Искать глобально",
"_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Для автозавершения требуется как минимум {count} символ.","Для автозавершения требуется как минимум {count} символа.","Для автозавершения требуется как минимум {count} символов.","Для автозавершения требуется как минимум {count} символа."],
"This list is maybe truncated - please refine your search term to see more results." : "Этот список может быть показан не полностью — уточните запрос чтобы просмотреть больше результатов.",
"No users or groups found for {search}" : "По запросу «{search}» пользователей или групп не найдено",
@ -174,6 +175,9 @@ OC.L10N.register(
"No files in here" : "Здесь нет файлов",
"New folder" : "Новая папка",
"No more subfolders in here" : "Здесь нет больше подпапок",
"Name" : "Имя",
"Size" : "Размер",
"Modified" : "Изменён",
"{newName} already exists" : "«{newName}» уже существует",
"Choose" : "Выбрать",
"Move" : "Переместить",

View File

@ -130,6 +130,7 @@
"Access control" : "Управление доступом",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} предоставил(а) доступ созданием ссылки",
"Share details could not be loaded for this item." : "Не удалось загрузить информацию об общем доступе для этого элемента.",
"Search globally" : "Искать глобально",
"_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Для автозавершения требуется как минимум {count} символ.","Для автозавершения требуется как минимум {count} символа.","Для автозавершения требуется как минимум {count} символов.","Для автозавершения требуется как минимум {count} символа."],
"This list is maybe truncated - please refine your search term to see more results." : "Этот список может быть показан не полностью — уточните запрос чтобы просмотреть больше результатов.",
"No users or groups found for {search}" : "По запросу «{search}» пользователей или групп не найдено",
@ -172,6 +173,9 @@
"No files in here" : "Здесь нет файлов",
"New folder" : "Новая папка",
"No more subfolders in here" : "Здесь нет больше подпапок",
"Name" : "Имя",
"Size" : "Размер",
"Modified" : "Изменён",
"{newName} already exists" : "«{newName}» уже существует",
"Choose" : "Выбрать",
"Move" : "Переместить",

View File

@ -43,7 +43,7 @@ OC.L10N.register(
"Set log level to debug" : "Nastavi raven beleženja za razhroščevanje",
"Reset log level" : "Počisti raven beleženja",
"Starting code integrity check" : "Začenjanje preverjanja stanja kode",
"Finished code integrity check" : "Končano preverjanje stanja kode",
"Finished code integrity check" : "Preverjanje stanja kode je končano",
"%s (incompatible)" : "%s (neskladno)",
"Following apps have been disabled: %s" : "Navedeni programi so onemogočeni: %s",
"Already up to date" : "Sistem je že posodobljen",
@ -67,8 +67,8 @@ OC.L10N.register(
"Error" : "Napaka",
"Error while sharing" : "Napaka med omogočanjem souporabe",
"Error removing share" : "Napaka odstranjevanja souporabe",
"Shared with you and the group {group} by {owner}" : "V souporabi z vami in skupino {group}. Lastnik je {owner}.",
"Shared with you by {owner}" : "V souporabi z vami. Lastnik je {owner}.",
"Shared with you and the group {group} by {owner}" : "{owner} omogoči souporabo z vami in s skupino {group}.",
"Shared with you by {owner}" : "{owner} vam omogoči souporabo",
"Choose a password for the public link" : "Izberite geslo za javno povezavo",
"Choose a password for the public link or press the \"Enter\" key" : "Izberite geslo za javno povezavo ali pritisnite \"Enter\"",
"Copied!" : "Naslov je kopiran!",
@ -222,7 +222,7 @@ OC.L10N.register(
"Search" : "Poišči",
"Settings menu" : "Meni nastavitev",
"Confirm your password" : "Potrdi svoje geslo",
"Server side authentication failed!" : "Overitev s strežnika je spodletela!",
"Server side authentication failed!" : "Overitev na strani strežnika je spodletela!",
"Please contact your administrator." : "Stopite v stik s skrbnikom sistema.",
"An internal error occurred." : "Prišlo je do notranje napake.",
"Please try again or contact your administrator." : "Poskusite znova ali pa stopite v stik s skrbnikom sistema.",

View File

@ -41,7 +41,7 @@
"Set log level to debug" : "Nastavi raven beleženja za razhroščevanje",
"Reset log level" : "Počisti raven beleženja",
"Starting code integrity check" : "Začenjanje preverjanja stanja kode",
"Finished code integrity check" : "Končano preverjanje stanja kode",
"Finished code integrity check" : "Preverjanje stanja kode je končano",
"%s (incompatible)" : "%s (neskladno)",
"Following apps have been disabled: %s" : "Navedeni programi so onemogočeni: %s",
"Already up to date" : "Sistem je že posodobljen",
@ -65,8 +65,8 @@
"Error" : "Napaka",
"Error while sharing" : "Napaka med omogočanjem souporabe",
"Error removing share" : "Napaka odstranjevanja souporabe",
"Shared with you and the group {group} by {owner}" : "V souporabi z vami in skupino {group}. Lastnik je {owner}.",
"Shared with you by {owner}" : "V souporabi z vami. Lastnik je {owner}.",
"Shared with you and the group {group} by {owner}" : "{owner} omogoči souporabo z vami in s skupino {group}.",
"Shared with you by {owner}" : "{owner} vam omogoči souporabo",
"Choose a password for the public link" : "Izberite geslo za javno povezavo",
"Choose a password for the public link or press the \"Enter\" key" : "Izberite geslo za javno povezavo ali pritisnite \"Enter\"",
"Copied!" : "Naslov je kopiran!",
@ -220,7 +220,7 @@
"Search" : "Poišči",
"Settings menu" : "Meni nastavitev",
"Confirm your password" : "Potrdi svoje geslo",
"Server side authentication failed!" : "Overitev s strežnika je spodletela!",
"Server side authentication failed!" : "Overitev na strani strežnika je spodletela!",
"Please contact your administrator." : "Stopite v stik s skrbnikom sistema.",
"An internal error occurred." : "Prišlo je do notranje napake.",
"Please try again or contact your administrator." : "Poskusite znova ali pa stopite v stik s skrbnikom sistema.",

View File

@ -31,6 +31,7 @@ import PasswordConfirmation from './password-confirmation'
import Plugins from './plugins'
import search from './search'
import Util from './util'
import {redirect, reload} from './navigation'
/** @namespace OC */
export default {
@ -46,4 +47,6 @@ export default {
Plugins,
search,
Util,
redirect,
reload,
}

31
core/src/OC/navigation.js Normal file
View File

@ -0,0 +1,31 @@
/*
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
*
* @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Redirect to the target URL, can also be used for downloads.
* @param {string} targetURL URL to redirect to
*/
export const redirect = targetURL => window.location = targetURL
/**
* Reloads the current page
*/
export const reload = () => window.location.reload()

View File

@ -7,6 +7,7 @@ OC.L10N.register(
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Of, als je liever config.php alleen-lezen wilt houden, stel de optie \"config_is_read_only\" in op true.",
"This can usually be fixed by giving the webserver write access to the config directory. See %s" : "Dit kan opgelost worden door de config map op de webserver schrijf rechten te geven. See %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Of, als je liever config.php Alleen-lezen houdt, stel de optie \"config_is_read_only\" in op true. Zie %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "De bestanden van app %1$szijn niet correct vervangen. Zorg ervoor dat de versie compatible is met de server.",
"Sample configuration detected" : "Voorbeeld configuratie gevonden",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Er is gedetecteerd dat de voorbeeld configuratie is gekopieerd. Dit kan je installatie beschadigen en wordt dan ook niet ondersteund. Lees de documentatie voordat je wijzigingen aan config.php doorvoert",
"%1$s and %2$s" : "%1$s en %2$s",

View File

@ -5,6 +5,7 @@
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Of, als je liever config.php alleen-lezen wilt houden, stel de optie \"config_is_read_only\" in op true.",
"This can usually be fixed by giving the webserver write access to the config directory. See %s" : "Dit kan opgelost worden door de config map op de webserver schrijf rechten te geven. See %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Of, als je liever config.php Alleen-lezen houdt, stel de optie \"config_is_read_only\" in op true. Zie %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "De bestanden van app %1$szijn niet correct vervangen. Zorg ervoor dat de versie compatible is met de server.",
"Sample configuration detected" : "Voorbeeld configuratie gevonden",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Er is gedetecteerd dat de voorbeeld configuratie is gekopieerd. Dit kan je installatie beschadigen en wordt dan ook niet ondersteund. Lees de documentatie voordat je wijzigingen aan config.php doorvoert",
"%1$s and %2$s" : "%1$s en %2$s",

View File

@ -23,8 +23,10 @@ OC.L10N.register(
"tomorrow" : "mâine",
"yesterday" : "ieri",
"_%n day ago_::_%n days ago_" : ["Acum o zi","Acum %n zile","Acum %n zile"],
"next month" : "luna viitoare",
"last month" : "ultima lună",
"_%n month ago_::_%n months ago_" : ["%n lună în urmă","%n luni în urmă","%n luni în urmă"],
"next year" : "anul viitor",
"last year" : "ultimul an",
"_%n year ago_::_%n years ago_" : ["%n an în urmă","%n ani în urmâ","%n ani în urmâ"],
"in a few seconds" : "în câteva secunde",

View File

@ -21,8 +21,10 @@
"tomorrow" : "mâine",
"yesterday" : "ieri",
"_%n day ago_::_%n days ago_" : ["Acum o zi","Acum %n zile","Acum %n zile"],
"next month" : "luna viitoare",
"last month" : "ultima lună",
"_%n month ago_::_%n months ago_" : ["%n lună în urmă","%n luni în urmă","%n luni în urmă"],
"next year" : "anul viitor",
"last year" : "ultimul an",
"_%n year ago_::_%n years ago_" : ["%n an în urmă","%n ani în urmâ","%n ani în urmâ"],
"in a few seconds" : "în câteva secunde",

View File

@ -79,7 +79,7 @@ OC.L10N.register(
"The username is already being used" : "Vpisano uporabniško ime je že v uporabi",
"User disabled" : "Uporabnik je onemogočen",
"Login canceled by app" : "Program onemogoča prijavo",
"a safe home for all your data" : "Varno okolje za vse vaše podatke!",
"a safe home for all your data" : "Varno okolje za vaše podatke!",
"File is currently busy, please try again later" : "Datoteka je trenutno v uporabi. Poskusite znova kasneje.",
"Can't read file" : "Datoteke ni mogoče prebrati.",
"Application is not enabled" : "Program ni omogočen",

View File

@ -77,7 +77,7 @@
"The username is already being used" : "Vpisano uporabniško ime je že v uporabi",
"User disabled" : "Uporabnik je onemogočen",
"Login canceled by app" : "Program onemogoča prijavo",
"a safe home for all your data" : "Varno okolje za vse vaše podatke!",
"a safe home for all your data" : "Varno okolje za vaše podatke!",
"File is currently busy, please try again later" : "Datoteka je trenutno v uporabi. Poskusite znova kasneje.",
"Can't read file" : "Datoteke ni mogoče prebrati.",
"Application is not enabled" : "Program ni omogočen",

View File

@ -158,7 +158,9 @@ class Folder extends Node implements \OCP\Files\Folder {
$nonExisting = new NonExistingFolder($this->root, $this->view, $fullPath);
$this->root->emit('\OC\Files', 'preWrite', array($nonExisting));
$this->root->emit('\OC\Files', 'preCreate', array($nonExisting));
$this->view->mkdir($fullPath);
if(!$this->view->mkdir($fullPath)) {
throw new NotPermittedException('Could not create folder');
}
$node = new Folder($this->root, $this->view, $fullPath);
$this->root->emit('\OC\Files', 'postWrite', array($node));
$this->root->emit('\OC\Files', 'postCreate', array($node));

View File

@ -2,7 +2,16 @@ OC.L10N.register(
"settings",
{
"{actor} added you to group {group}" : "{actor} us ha afegit al grup {group}",
"You added {user} to group {group}" : "Has afegit {user} al grup {group}",
"{actor} added {user} to group {group}" : "{actor} ha afegit {user} al grup {group}",
"An administrator added you to group {group}" : "Un administrador us ha afegit al grup {group}",
"An administrator added {user} to group {group}" : "Un administrador ha afegit {user} al grup {group}",
"{actor} removed you from group {group}" : "{actor} t'ha tret del grup {group}",
"You removed {user} from group {group}" : "Tu has tret {user} del grup {group}",
"{actor} removed {user} from group {group}" : "{actor} ha tret {user} del grup {group}",
"An administrator removed you from group {group}" : "Un administrador t'ha tret del grup {group}",
"An administrator removed {user} from group {group}" : "Un administrador ha tret {user} del grup {group}",
"Your <strong>group memberships</strong> were modified" : "La teva <strong>pertinença al grup</strong> ha estat modificada",
"{actor} changed your password" : "{actor} ha canviat la vostra contrasenya",
"You changed your password" : "Heu canviat la vostra contrasenya",
"Your password was reset by an administrator" : "La seva contrasenya s'ha restablert per un administrador",

View File

@ -1,6 +1,15 @@
{ "translations": {
"{actor} added you to group {group}" : "{actor} us ha afegit al grup {group}",
"You added {user} to group {group}" : "Has afegit {user} al grup {group}",
"{actor} added {user} to group {group}" : "{actor} ha afegit {user} al grup {group}",
"An administrator added you to group {group}" : "Un administrador us ha afegit al grup {group}",
"An administrator added {user} to group {group}" : "Un administrador ha afegit {user} al grup {group}",
"{actor} removed you from group {group}" : "{actor} t'ha tret del grup {group}",
"You removed {user} from group {group}" : "Tu has tret {user} del grup {group}",
"{actor} removed {user} from group {group}" : "{actor} ha tret {user} del grup {group}",
"An administrator removed you from group {group}" : "Un administrador t'ha tret del grup {group}",
"An administrator removed {user} from group {group}" : "Un administrador ha tret {user} del grup {group}",
"Your <strong>group memberships</strong> were modified" : "La teva <strong>pertinença al grup</strong> ha estat modificada",
"{actor} changed your password" : "{actor} ha canviat la vostra contrasenya",
"You changed your password" : "Heu canviat la vostra contrasenya",
"Your password was reset by an administrator" : "La seva contrasenya s'ha restablert per un administrador",

View File

@ -331,6 +331,212 @@ OC.L10N.register(
"Khmer" : "camboyano",
"Kikuyu (Kenya)" : "kikuyu (Kenia)",
"Kikuyu" : "kikuyu",
"Kinyarwanda (Rwanda)" : "kinyaruanda (Ruanda)",
"Kinyarwanda" : "kinyaruanda",
"Konkani (India)" : "konkani (India)",
"Konkani" : "konkani",
"Korean (South Korea)" : "coreano (Corea del Sur)",
"Korean" : "coreano",
"Koyra Chiini (Mali)" : "koyra chiini (Mali)",
"Koyra Chiini" : "koyra chiini",
"Koyraboro Senni (Mali)" : "koyraboro senni (Mali)",
"Koyraboro Senni" : "koyraboro senni",
"Langi (Tanzania)" : "langi (Tanzania)",
"Langi" : "langi",
"Latvian (Latvia)" : "letón (Letonia)",
"Latvian" : "letón",
"Lithuanian (Lithuania)" : "lituano (Lituania)",
"Lithuanian" : "lituano",
"Luo (Kenya)" : "luo (Kenia)",
"Luo" : "luo",
"Luyia (Kenya)" : "luyia (Kenia)",
"Luyia" : "luyia",
"Macedonian (Macedonia)" : "macedonio (Macedonia del Norte)",
"Macedonian" : "macedonio",
"Machame (Tanzania)" : "machame (Tanzania)",
"Machame" : "machame",
"Makonde (Tanzania)" : "makonde (Tanzania)",
"Makonde" : "makonde",
"Malagasy (Madagascar)" : "malgache (Madagascar)",
"Malagasy" : "malgache",
"Malay (Brunei)" : "malayo (Brunéi)",
"Malay (Malaysia)" : "malayo (Malasia)",
"Malay" : "malayo",
"Malayalam (India)" : "malayalam (India)",
"Malayalam" : "malayalam",
"Maltese (Malta)" : "maltés (Malta)",
"Maltese" : "maltés",
"Manx (United Kingdom)" : "manés (Reino Unido)",
"Manx" : "manés",
"Marathi (India)" : "marati (India)",
"Marathi" : "marati",
"Masai (Kenya)" : "masái (Kenia)",
"Masai (Tanzania)" : "masái (Tanzania)",
"Masai" : "masái",
"Meru (Kenya)" : "meru (Kenia)",
"Meru" : "meru",
"Morisyen (Mauritius)" : "mauricio (Mauricio)",
"Morisyen" : "mauricio",
"Nama (Namibia)" : "nama (Namibia)",
"Nama" : "nama",
"Nepali (India)" : "nepalí (India)",
"Nepali (Nepal)" : "nepalí (Nepal)",
"Nepali" : "nepalí",
"North Ndebele (Zimbabwe)" : "ndebele del norte (Zimbabue)",
"North Ndebele" : "ndebele del norte",
"Norwegian Bokmål (Norway)" : "bokmål noruego (Noruega)",
"Norwegian Bokmål" : "bokmål noruego",
"Norwegian Nynorsk (Norway)" : "nynorsk noruego (Noruega)",
"Norwegian Nynorsk" : "nynorsk noruego",
"Nyankole (Uganda)" : "nyankole (Uganda)",
"Nyankole" : "nyankole",
"Oriya (India)" : "oriya (India)",
"Oriya" : "oriya",
"Oromo (Ethiopia)" : "oromo (Etiopía)",
"Oromo (Kenya)" : "oromo (Kenia)",
"Oromo" : "oromo",
"Pashto (Afghanistan)" : "pastún (Afganistán)",
"Pashto" : "pastún",
"Persian (Afghanistan)" : "persa (Afganistán)",
"Persian (Iran)" : "persa (Irán)",
"Persian" : "persa",
"Polish (Poland)" : "polaco (Polonia)",
"Polish" : "polaco",
"Portuguese (Brazil)" : "portugués (Brasil)",
"Portuguese (Guinea-Bissau)" : "portugués (Guinea-Bisau)",
"Portuguese (Mozambique)" : "portugués (Mozambique)",
"Portuguese (Portugal)" : "portugués (Portugal)",
"Portuguese" : "portugués",
"Punjabi (Arabic)" : "punyabí (arábigo)",
"Punjabi (Arabic, Pakistan)" : "punyabí (arábigo, Pakistán)",
"Punjabi (Gurmukhi)" : "punyabí (gurmukhi)",
"Punjabi (Gurmukhi, India)" : "punyabí (gurmukhi, India)",
"Punjabi" : "punyabí",
"Romanian (Moldova)" : "rumano (Moldavia)",
"Romanian (Romania)" : "rumano (Rumanía)",
"Romanian" : "rumano",
"Romansh (Switzerland)" : "romanche (Suiza)",
"Romansh" : "romanche",
"Rombo (Tanzania)" : "rombo (Tanzania)",
"Rombo" : "rombo",
"Russian (Moldova)" : "ruso (Moldavia)",
"Russian (Russia)" : "ruso (Rusia)",
"Russian (Ukraine)" : "ruso (Ucrania)",
"Russian" : "ruso",
"Rwa (Tanzania)" : "rwa (Tanzania)",
"Rwa" : "rwa",
"Samburu (Kenya)" : "samburu (Kenia)",
"Samburu" : "samburu",
"Sango (Central African Republic)" : "sango (República Centroafricana)",
"Sango" : "sango",
"Sena (Mozambique)" : "sena (Mozambique)",
"Sena" : "sena",
"Serbian (Cyrillic)" : "serbio (cirílico)",
"Serbian (Cyrillic, Bosnia and Herzegovina)" : "serbio (cirílico, Bosnia y Herzegovina)",
"Serbian (Cyrillic, Montenegro)" : "sergbio (cirílico, Montenegro)",
"Serbian (Cyrillic, Serbia)" : "serbio (cirílico, Serbia)",
"Serbian (Latin)" : "serbio (latino)",
"Serbian (Latin, Bosnia and Herzegovina)" : "serbio (latino, Bosnia y Herzegovina)",
"Serbian (Latin, Montenegro)" : "serbio (latino, Montenegro)",
"Serbian (Latin, Serbia)" : "serbio (latino, Serbia)",
"Serbian" : "serbio",
"Shona (Zimbabwe)" : "shona (Zimbabue)",
"Shona" : "shona",
"Sichuan Yi (China)" : "sichuan yi (China)",
"Sichuan Yi" : "sichuan yi",
"Sinhala (Sri Lanka)" : "sinhala (Sri Lanka)",
"Sinhala" : "sinhala",
"Slovak (Slovakia)" : "eslovaco (Eslovaquia)",
"Slovak" : "eslovaco",
"Slovenian (Slovenia)" : "eslovenio (Eslovenia)",
"Slovenian" : "esloveno",
"Soga (Uganda)" : "soga (uganda)",
"Soga" : "soga",
"Somali (Djibouti)" : "somalí (Yibuti)",
"Somali (Ethiopia)" : "somalí (Etiopía)",
"Somali (Kenya)" : "somalí (Kenia)",
"Somali (Somalia)" : "somalí (Somalia)",
"Somali" : "somalí",
"Spanish (Argentina)" : "español (Argentina)",
"Spanish (Bolivia)" : "español (Bolivia)",
"Spanish (Chile)" : "español (Chile)",
"Spanish (Colombia)" : "español (Colombia)",
"Spanish (Costa Rica)" : "español (Costa Rica)",
"Spanish (Dominican Republic)" : "español (República Dominicana)",
"Spanish (Ecuador)" : "español (Ecuador)",
"Spanish (El Salvador)" : "español (El Salvador)",
"Spanish (Equatorial Guinea)" : "español (Guinea Ecuatorial)",
"Spanish (Guatemala)" : "español (Guatemala)",
"Spanish (Honduras)" : "español (Honduras)",
"Spanish (Latin America)" : "español (latinoamericano)",
"Spanish (Mexico)" : "español (México)",
"Spanish (Nicaragua)" : "español (Nicaragua)",
"Spanish (Panama)" : "español (Panamá)",
"Spanish (Paraguay)" : "español (Paraguay)",
"Spanish (Peru)" : "español (Perú)",
"Spanish (Puerto Rico)" : "español (Puerto Rico)",
"Spanish (Spain)" : "español (España)",
"Spanish (United States)" : "español (Estados Unidos)",
"Spanish (Uruguay)" : "español (Uruguay)",
"Spanish (Venezuela)" : "español (Venezuela)",
"Spanish" : "español",
"Swahili (Kenya)" : "suajili (Kenia)",
"Swahili (Tanzania)" : "suajili (Tanzania)",
"Swahili" : "suajili",
"Swedish (Finland)" : "sueco (Finlandia)",
"Swedish (Sweden)" : "sueco (Suecia)",
"Swedish" : "sueco",
"Swiss German (Switzerland)" : "alemán suizo (Suiza) ",
"Swiss German" : "alemán suizo",
"Tachelhit (Latin)" : "tachelhit (latino)",
"Tachelhit (Latin, Morocco)" : "tachelhit (latino, Marruecos)",
"Tachelhit (Tifinagh)" : "tachelhit (tifinagh)",
"Tachelhit (Tifinagh, Morocco)" : "tachelhit (tifinagh, Marruecos)",
"Tachelhit" : "tachelhit",
"Taita (Kenya)" : "taita (Kenia)",
"Taita" : "taita",
"Tamil (India)" : "tamil (India)",
"Tamil (Sri Lanka)" : "tamil (Sri Lanka)",
"Tamil" : "tamil",
"Telugu (India)" : "telugu (India)",
"Telugu" : "telugu",
"Teso (Kenya)" : "teso (Kenia)",
"Teso (Uganda)" : "teso (Uganda)",
"Teso" : "teso",
"Thai (Thailand)" : "tailandés (Tailandia)",
"Thai" : "tailandés",
"Tibetan (China)" : "tibetano (China)",
"Tibetan (India)" : "tibetano (India)",
"Tibetan" : "tibetano",
"Tigrinya (Eritrea)" : "tingrinya (Eritrea)",
"Tigrinya (Ethiopia)" : "tigrinya (Etiopía)",
"Tigrinya" : "tigrinya",
"Tonga (Tonga)" : "tonga (Tonga)",
"Tonga" : "tonga",
"Turkish (Turkey)" : "turco (Turquía)",
"Turkish" : "turco",
"Ukrainian (Ukraine)" : "ucraniano (Ucrania)",
"Ukrainian" : "ucraniano",
"Urdu (India)" : "urdu (India)",
"Urdu (Pakistan)" : "urdu (Pakistán)",
"Urdu" : "urdu",
"Uzbek (Arabic)" : "uzbeco (arábigo)",
"Uzbek (Arabic, Afghanistan)" : "uzbeco (arábigo, Afganistán)",
"Uzbek (Cyrillic)" : "uzbeco (cirílico)",
"Uzbek (Cyrillic, Uzbekistan)" : "uzbeco (cirílico, Uzbekistán)",
"Uzbek (Latin)" : "uzbeco (latino)",
"Uzbek (Latin, Uzbekistan)" : "uzbeco (latino, Uzbekistán)",
"Uzbek" : "uzbeco",
"Vietnamese (Vietnam)" : "vietnamita (Vietnam)",
"Vietnamese" : "vietnamita",
"Vunjo (Tanzania)" : "vunjo (Tanzania)",
"Vunjo" : "vunjo",
"Welsh (United Kingdom)" : "galés (Reino Unido)",
"Welsh" : "galés",
"Yoruba (Nigeria)" : "yoruba (Nigeria)",
"Yoruba" : "yoruba",
"Zulu (South Africa)" : "zulú (Sudáfrica)",
"Zulu" : "zulú",
"Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "La verificación en dos pasos se puede aplicar para todos\tlos usuarios y grupos específicos. Si no tienen configurado un proveedor de dos pasos, no podrán iniciar sesión en el sistema.",
"Enforce two-factor authentication" : "Imponer verificación en dos pasos",
"Limit to groups" : "Límite para grupos",

View File

@ -329,6 +329,212 @@
"Khmer" : "camboyano",
"Kikuyu (Kenya)" : "kikuyu (Kenia)",
"Kikuyu" : "kikuyu",
"Kinyarwanda (Rwanda)" : "kinyaruanda (Ruanda)",
"Kinyarwanda" : "kinyaruanda",
"Konkani (India)" : "konkani (India)",
"Konkani" : "konkani",
"Korean (South Korea)" : "coreano (Corea del Sur)",
"Korean" : "coreano",
"Koyra Chiini (Mali)" : "koyra chiini (Mali)",
"Koyra Chiini" : "koyra chiini",
"Koyraboro Senni (Mali)" : "koyraboro senni (Mali)",
"Koyraboro Senni" : "koyraboro senni",
"Langi (Tanzania)" : "langi (Tanzania)",
"Langi" : "langi",
"Latvian (Latvia)" : "letón (Letonia)",
"Latvian" : "letón",
"Lithuanian (Lithuania)" : "lituano (Lituania)",
"Lithuanian" : "lituano",
"Luo (Kenya)" : "luo (Kenia)",
"Luo" : "luo",
"Luyia (Kenya)" : "luyia (Kenia)",
"Luyia" : "luyia",
"Macedonian (Macedonia)" : "macedonio (Macedonia del Norte)",
"Macedonian" : "macedonio",
"Machame (Tanzania)" : "machame (Tanzania)",
"Machame" : "machame",
"Makonde (Tanzania)" : "makonde (Tanzania)",
"Makonde" : "makonde",
"Malagasy (Madagascar)" : "malgache (Madagascar)",
"Malagasy" : "malgache",
"Malay (Brunei)" : "malayo (Brunéi)",
"Malay (Malaysia)" : "malayo (Malasia)",
"Malay" : "malayo",
"Malayalam (India)" : "malayalam (India)",
"Malayalam" : "malayalam",
"Maltese (Malta)" : "maltés (Malta)",
"Maltese" : "maltés",
"Manx (United Kingdom)" : "manés (Reino Unido)",
"Manx" : "manés",
"Marathi (India)" : "marati (India)",
"Marathi" : "marati",
"Masai (Kenya)" : "masái (Kenia)",
"Masai (Tanzania)" : "masái (Tanzania)",
"Masai" : "masái",
"Meru (Kenya)" : "meru (Kenia)",
"Meru" : "meru",
"Morisyen (Mauritius)" : "mauricio (Mauricio)",
"Morisyen" : "mauricio",
"Nama (Namibia)" : "nama (Namibia)",
"Nama" : "nama",
"Nepali (India)" : "nepalí (India)",
"Nepali (Nepal)" : "nepalí (Nepal)",
"Nepali" : "nepalí",
"North Ndebele (Zimbabwe)" : "ndebele del norte (Zimbabue)",
"North Ndebele" : "ndebele del norte",
"Norwegian Bokmål (Norway)" : "bokmål noruego (Noruega)",
"Norwegian Bokmål" : "bokmål noruego",
"Norwegian Nynorsk (Norway)" : "nynorsk noruego (Noruega)",
"Norwegian Nynorsk" : "nynorsk noruego",
"Nyankole (Uganda)" : "nyankole (Uganda)",
"Nyankole" : "nyankole",
"Oriya (India)" : "oriya (India)",
"Oriya" : "oriya",
"Oromo (Ethiopia)" : "oromo (Etiopía)",
"Oromo (Kenya)" : "oromo (Kenia)",
"Oromo" : "oromo",
"Pashto (Afghanistan)" : "pastún (Afganistán)",
"Pashto" : "pastún",
"Persian (Afghanistan)" : "persa (Afganistán)",
"Persian (Iran)" : "persa (Irán)",
"Persian" : "persa",
"Polish (Poland)" : "polaco (Polonia)",
"Polish" : "polaco",
"Portuguese (Brazil)" : "portugués (Brasil)",
"Portuguese (Guinea-Bissau)" : "portugués (Guinea-Bisau)",
"Portuguese (Mozambique)" : "portugués (Mozambique)",
"Portuguese (Portugal)" : "portugués (Portugal)",
"Portuguese" : "portugués",
"Punjabi (Arabic)" : "punyabí (arábigo)",
"Punjabi (Arabic, Pakistan)" : "punyabí (arábigo, Pakistán)",
"Punjabi (Gurmukhi)" : "punyabí (gurmukhi)",
"Punjabi (Gurmukhi, India)" : "punyabí (gurmukhi, India)",
"Punjabi" : "punyabí",
"Romanian (Moldova)" : "rumano (Moldavia)",
"Romanian (Romania)" : "rumano (Rumanía)",
"Romanian" : "rumano",
"Romansh (Switzerland)" : "romanche (Suiza)",
"Romansh" : "romanche",
"Rombo (Tanzania)" : "rombo (Tanzania)",
"Rombo" : "rombo",
"Russian (Moldova)" : "ruso (Moldavia)",
"Russian (Russia)" : "ruso (Rusia)",
"Russian (Ukraine)" : "ruso (Ucrania)",
"Russian" : "ruso",
"Rwa (Tanzania)" : "rwa (Tanzania)",
"Rwa" : "rwa",
"Samburu (Kenya)" : "samburu (Kenia)",
"Samburu" : "samburu",
"Sango (Central African Republic)" : "sango (República Centroafricana)",
"Sango" : "sango",
"Sena (Mozambique)" : "sena (Mozambique)",
"Sena" : "sena",
"Serbian (Cyrillic)" : "serbio (cirílico)",
"Serbian (Cyrillic, Bosnia and Herzegovina)" : "serbio (cirílico, Bosnia y Herzegovina)",
"Serbian (Cyrillic, Montenegro)" : "sergbio (cirílico, Montenegro)",
"Serbian (Cyrillic, Serbia)" : "serbio (cirílico, Serbia)",
"Serbian (Latin)" : "serbio (latino)",
"Serbian (Latin, Bosnia and Herzegovina)" : "serbio (latino, Bosnia y Herzegovina)",
"Serbian (Latin, Montenegro)" : "serbio (latino, Montenegro)",
"Serbian (Latin, Serbia)" : "serbio (latino, Serbia)",
"Serbian" : "serbio",
"Shona (Zimbabwe)" : "shona (Zimbabue)",
"Shona" : "shona",
"Sichuan Yi (China)" : "sichuan yi (China)",
"Sichuan Yi" : "sichuan yi",
"Sinhala (Sri Lanka)" : "sinhala (Sri Lanka)",
"Sinhala" : "sinhala",
"Slovak (Slovakia)" : "eslovaco (Eslovaquia)",
"Slovak" : "eslovaco",
"Slovenian (Slovenia)" : "eslovenio (Eslovenia)",
"Slovenian" : "esloveno",
"Soga (Uganda)" : "soga (uganda)",
"Soga" : "soga",
"Somali (Djibouti)" : "somalí (Yibuti)",
"Somali (Ethiopia)" : "somalí (Etiopía)",
"Somali (Kenya)" : "somalí (Kenia)",
"Somali (Somalia)" : "somalí (Somalia)",
"Somali" : "somalí",
"Spanish (Argentina)" : "español (Argentina)",
"Spanish (Bolivia)" : "español (Bolivia)",
"Spanish (Chile)" : "español (Chile)",
"Spanish (Colombia)" : "español (Colombia)",
"Spanish (Costa Rica)" : "español (Costa Rica)",
"Spanish (Dominican Republic)" : "español (República Dominicana)",
"Spanish (Ecuador)" : "español (Ecuador)",
"Spanish (El Salvador)" : "español (El Salvador)",
"Spanish (Equatorial Guinea)" : "español (Guinea Ecuatorial)",
"Spanish (Guatemala)" : "español (Guatemala)",
"Spanish (Honduras)" : "español (Honduras)",
"Spanish (Latin America)" : "español (latinoamericano)",
"Spanish (Mexico)" : "español (México)",
"Spanish (Nicaragua)" : "español (Nicaragua)",
"Spanish (Panama)" : "español (Panamá)",
"Spanish (Paraguay)" : "español (Paraguay)",
"Spanish (Peru)" : "español (Perú)",
"Spanish (Puerto Rico)" : "español (Puerto Rico)",
"Spanish (Spain)" : "español (España)",
"Spanish (United States)" : "español (Estados Unidos)",
"Spanish (Uruguay)" : "español (Uruguay)",
"Spanish (Venezuela)" : "español (Venezuela)",
"Spanish" : "español",
"Swahili (Kenya)" : "suajili (Kenia)",
"Swahili (Tanzania)" : "suajili (Tanzania)",
"Swahili" : "suajili",
"Swedish (Finland)" : "sueco (Finlandia)",
"Swedish (Sweden)" : "sueco (Suecia)",
"Swedish" : "sueco",
"Swiss German (Switzerland)" : "alemán suizo (Suiza) ",
"Swiss German" : "alemán suizo",
"Tachelhit (Latin)" : "tachelhit (latino)",
"Tachelhit (Latin, Morocco)" : "tachelhit (latino, Marruecos)",
"Tachelhit (Tifinagh)" : "tachelhit (tifinagh)",
"Tachelhit (Tifinagh, Morocco)" : "tachelhit (tifinagh, Marruecos)",
"Tachelhit" : "tachelhit",
"Taita (Kenya)" : "taita (Kenia)",
"Taita" : "taita",
"Tamil (India)" : "tamil (India)",
"Tamil (Sri Lanka)" : "tamil (Sri Lanka)",
"Tamil" : "tamil",
"Telugu (India)" : "telugu (India)",
"Telugu" : "telugu",
"Teso (Kenya)" : "teso (Kenia)",
"Teso (Uganda)" : "teso (Uganda)",
"Teso" : "teso",
"Thai (Thailand)" : "tailandés (Tailandia)",
"Thai" : "tailandés",
"Tibetan (China)" : "tibetano (China)",
"Tibetan (India)" : "tibetano (India)",
"Tibetan" : "tibetano",
"Tigrinya (Eritrea)" : "tingrinya (Eritrea)",
"Tigrinya (Ethiopia)" : "tigrinya (Etiopía)",
"Tigrinya" : "tigrinya",
"Tonga (Tonga)" : "tonga (Tonga)",
"Tonga" : "tonga",
"Turkish (Turkey)" : "turco (Turquía)",
"Turkish" : "turco",
"Ukrainian (Ukraine)" : "ucraniano (Ucrania)",
"Ukrainian" : "ucraniano",
"Urdu (India)" : "urdu (India)",
"Urdu (Pakistan)" : "urdu (Pakistán)",
"Urdu" : "urdu",
"Uzbek (Arabic)" : "uzbeco (arábigo)",
"Uzbek (Arabic, Afghanistan)" : "uzbeco (arábigo, Afganistán)",
"Uzbek (Cyrillic)" : "uzbeco (cirílico)",
"Uzbek (Cyrillic, Uzbekistan)" : "uzbeco (cirílico, Uzbekistán)",
"Uzbek (Latin)" : "uzbeco (latino)",
"Uzbek (Latin, Uzbekistan)" : "uzbeco (latino, Uzbekistán)",
"Uzbek" : "uzbeco",
"Vietnamese (Vietnam)" : "vietnamita (Vietnam)",
"Vietnamese" : "vietnamita",
"Vunjo (Tanzania)" : "vunjo (Tanzania)",
"Vunjo" : "vunjo",
"Welsh (United Kingdom)" : "galés (Reino Unido)",
"Welsh" : "galés",
"Yoruba (Nigeria)" : "yoruba (Nigeria)",
"Yoruba" : "yoruba",
"Zulu (South Africa)" : "zulú (Sudáfrica)",
"Zulu" : "zulú",
"Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "La verificación en dos pasos se puede aplicar para todos\tlos usuarios y grupos específicos. Si no tienen configurado un proveedor de dos pasos, no podrán iniciar sesión en el sistema.",
"Enforce two-factor authentication" : "Imponer verificación en dos pasos",
"Limit to groups" : "Límite para grupos",

View File

@ -103,6 +103,440 @@ OC.L10N.register(
"Groups" : "Groepen",
"Group list is empty" : "Groepenlijst is leeg",
"Unable to retrieve the group list" : "Kan groepenoverzicht niet ophalen",
"Afrikaans (Namibia)" : "Afrikaans (Namibië)",
"Afrikaans (South Africa)" : "Afrikaans (Zuid-Afrika)",
"Afrikaans" : "Afrikaans",
"Akan (Ghana)" : "Akan (Ghana)",
"Akan" : "Akan",
"Albanian (Albania)" : "Albanees (Albanië)",
"Albanian" : "Albaans",
"Amharic (Ethiopia)" : "Amhaars (Ethiopië)",
"Amharic" : "Amhaar",
"Arabic (Algeria)" : "Arabisch (Algerije)",
"Arabic (Bahrain)" : "Arabisch (Bahrain)",
"Arabic (Egypt)" : "Arabisch (Egypte)",
"Arabic (Iraq)" : "Arabisch (Irak)",
"Arabic (Jordan)" : "Arabisch (Jordanië)",
"Arabic (Kuwait)" : "Arabisch (Koeweit)",
"Arabic (Lebanon)" : "Arabisch (Libanon)",
"Arabic (Libya)" : "Arabisch (Libië)",
"Arabic (Morocco)" : "Arabisch (Marokko)",
"Arabic (Oman)" : "Arabisch (Oman)",
"Arabic (Qatar)" : "Arabisch (Katar)",
"Arabic (Saudi Arabia)" : "Arabisch (Saoedi-Arabië)",
"Arabic (Sudan)" : "Arabisch (Soedan)",
"Arabic (Syria)" : "Arabisch (Syrië)",
"Arabic (Tunisia)" : "Arabisch (Tunisië)",
"Arabic (United Arab Emirates)" : "Arabisch (Verenigde Arabische Emiraten )",
"Arabic (Yemen)" : "Arabisch (Jemen)",
"Arabic" : "Arabisch",
"Armenian (Armenia)" : "Armeens (Armenië)",
"Armenian" : "Armeens",
"Assamese (India)" : "Assamees (India)",
"Assamese" : "Assamees",
"Asu (Tanzania)" : "Asu (Tanzania)",
"Asu" : "Asu",
"Azerbaijani (Cyrillic)" : "Azerbeidzjaans (Cyrillisch)",
"Azerbaijani (Cyrillic, Azerbaijan)" : "Azerbeidzjaans (Cyrillisch, Azerbeidzjaan)",
"Azerbaijani (Latin)" : "Azerbeidzjaans (Latijns)",
"Azerbaijani (Latin, Azerbaijan)" : "Azerbeidzjaans (Latijn, Azerbeidzjaan)",
"Azerbaijani" : "Azerbaidzjaans",
"Bambara (Mali)" : "Bambara (Mali)",
"Bambara" : "Bambara",
"Basque (Spain)" : "Baskisch (Spanje)",
"Basque" : "Baskisch",
"Belarusian (Belarus)" : "Wit-Russisch (Wit-Rusland)",
"Belarusian" : "Wit-Russisch",
"Bemba (Zambia)" : "Bemba (Zambia)",
"Bemba" : "Bemba",
"Bena (Tanzania)" : "Bena (Tanzania)",
"Bena" : "Bena",
"Bengali (Bangladesh)" : "Bengaals (Bangladesh)",
"Bengali (India)" : "Bengaals (India)",
"Bengali" : "Bengaals",
"Bosnian (Bosnia and Herzegovina)" : "Bosnisch (Bosnië en Herzegovina)",
"Bosnian" : "Bosnisch",
"Bulgarian (Bulgaria)" : "Bulgaars (Bulgarije)",
"Bulgarian" : "Bulgaars",
"Burmese (Myanmar [Burma])" : "Birmees (Myanmar [Burma])",
"Burmese" : "Burmees",
"Catalan (Spain)" : "Catalaans (Spanje)",
"Catalan" : "Catalaans",
"Central Morocco Tamazight (Latin)" : "Centraal Marokko Tamazight (Latijns)",
"Central Morocco Tamazight (Latin, Morocco)" : "Centraal Marokko Tamazight (Latijns, Marokko)",
"Central Morocco Tamazight" : "Centraal Marokko Tamazight",
"Cherokee (United States)" : "Cherokee (Verenigde Staten van Amerika)",
"Cherokee" : "Cherokee",
"Chiga (Uganda)" : "Chiga (Oeganda)",
"Chiga" : "Chiga",
"Chinese (Simplified Han)" : "Chinees (Gesimplificeerd Han)",
"Chinese (Simplified Han, China)" : "Chinees (Gesimplificeerd Han, China)",
"Chinese (Simplified Han, Hong Kong SAR China)" : "Chinees (Gesimplificeerd Han, Hong Kong SAR China)",
"Chinese (Simplified Han, Macau SAR China)" : "Chinees (Gesimplificeerd Han, Macao SAR China)",
"Chinese (Simplified Han, Singapore)" : "Chinees (Gesimplificeerd Han, Singapore)",
"Chinese (Traditional Han)" : "Chinees (traditioneel Han)",
"Chinese (Traditional Han, Hong Kong SAR China)" : "Chinees (Traditioneel Han, Hong Kong SAR China)",
"Chinese (Traditional Han, Macau SAR China)" : "Chinees (Traditioneel Han, Macao SAR China)",
"Chinese (Traditional Han, Taiwan)" : "Chinees (Traditioneel Han, Taiwan)",
"Chinese" : "Chinees",
"Cornish (United Kingdom)" : "Cornish (Verenigd Koninkrijk)",
"Cornish" : "Cornish",
"Croatian (Croatia)" : "Kroatisch (Kroatië)",
"Croatian" : "Kroatisch",
"Czech (Czech Republic)" : "Tsjechisch (Tsjechische Republiek)",
"Czech" : "Tsjechisch",
"Danish (Denmark)" : "Deens (Denemarken)",
"Danish" : "Deens",
"Dutch (Belgium)" : "Nederlands (België)",
"Dutch (Netherlands)" : "Nederlands (Nederland)",
"Dutch" : "Nederlands",
"Embu (Kenya)" : "Embu (Kenia)",
"Embu" : "Embu",
"English (American Samoa)" : "Engels (Amerikaans Samoa)",
"English (Australia)" : "Engels (Australië)",
"English (Belgium)" : "Engels (België)",
"English (Belize)" : "Engels (Belize)",
"English (Botswana)" : "Engels (Botswana)",
"English (Canada)" : "Engels (Canada)",
"English (Guam)" : "Engels (Guam)",
"English (Hong Kong SAR China)" : "Engels (Hong Kong SAR China)",
"English (India)" : "Engels (India)",
"English (Ireland)" : "Engels (Ierland)",
"English (Jamaica)" : "Engels (Jamaica)",
"English (Malta)" : "Engels (Malta)",
"English (Marshall Islands)" : "Engels (Marshalleilanden)",
"English (Mauritius)" : "Engels (Mauritius)",
"English (Namibia)" : "Engels (Namibië)",
"English (New Zealand)" : "Engels (Nieuw Zeeland)",
"English (Northern Mariana Islands)" : "Engels (Noordelijke Marianen)",
"English (Pakistan)" : "Engels (Pakistan)",
"English (Philippines)" : "Engels (Filippijnen)",
"English (Singapore)" : "Engels (Singapore)",
"English (South Africa)" : "Engels (Zuid-Afrika)",
"English (Trinidad and Tobago)" : "Engels (Trinidad en Tobago)",
"English (U.S. Minor Outlying Islands)" : "Engels (Kleine afgelegen eilanden van de Verenigde Staten)",
"English (U.S. Virgin Islands)" : "Engels (Maagdeneilanden)",
"English (United Kingdom)" : "Engels (Verenigd Koninkrijk)",
"English (United States)" : "Engels (Verenigde Staten van Amerika)",
"English (Zimbabwe)" : "Engels (Zimbabwe)",
"English" : "Engels",
"Esperanto" : "Esperanto",
"Estonian (Estonia)" : "Ests (Estland)",
"Estonian" : "Ests",
"Ewe (Ghana)" : "Ewe (Ghana)",
"Ewe (Togo)" : "Ewe (Togo)",
"Ewe" : "Ewe",
"Faroese (Faroe Islands)" : "Faeröes (Faeröereilanden)",
"Faroese" : "Faeröers",
"Filipino (Philippines)" : "Filipijns (Filippijnen)",
"Filipino" : "Filipijns",
"Finnish (Finland)" : "Fins (Finland)",
"Finnish" : "Fins",
"French (Belgium)" : "Frans (België)",
"French (Benin)" : "Frans (Benin)",
"French (Burkina Faso)" : "Frans (Burkina Faso)",
"French (Burundi)" : "Frans (Burundi)",
"French (Cameroon)" : "Frans (Kameroen)",
"French (Canada)" : "Frans (Canada)",
"French (Central African Republic)" : "Frans (Centraal Afrikaanse Republiek)",
"French (Chad)" : "Frans (Tsjaad)",
"French (Comoros)" : "Frans (Komoren)",
"French (Congo - Brazzaville)" : "Frans (Congo - Brazzaville)",
"French (Congo - Kinshasa)" : "Frans (Kongo - Kinshasa)",
"French (Côte dIvoire)" : "Frans (Ivoorkust)",
"French (Djibouti)" : "Frans (Djibouti)",
"French (Equatorial Guinea)" : "Frans (Equatoriaal Guinea)",
"French (France)" : "Frans (Frankrijk)",
"French (Gabon)" : "Frans (Gabon)",
"French (Guadeloupe)" : "Frans (Guadeloupe)",
"French (Guinea)" : "Frans (Guinea)",
"French (Luxembourg)" : "Frans (Luxemburg)",
"French (Madagascar)" : "Frans (Madagascar)",
"French (Mali)" : "Frans (Mali)",
"French (Martinique)" : "Frans (Martinique)",
"French (Monaco)" : "Frans (Monaco)",
"French (Niger)" : "Frans (Niger)",
"French (Rwanda)" : "Frans (Rwanda)",
"French (Réunion)" : "Frans (Réunion)",
"French (Saint Barthélemy)" : "Frans (Saint Barthélemy)",
"French (Saint Martin)" : "Frans (Saint Martin)",
"French (Senegal)" : "Frans (Senegal)",
"French (Switzerland)" : "Frans (Zwitserland)",
"French (Togo)" : "Frans (Togo)",
"French" : "Frans",
"Fulah (Senegal)" : "Fulah (Senegal)",
"Fulah" : "Fulah",
"Galician (Spain)" : "Galisisch (Spanje)",
"Galician" : "Galisisch",
"Ganda (Uganda)" : "Ganda (Oeganda)",
"Ganda" : "Ganda",
"Georgian (Georgia)" : "Georgisch (Georgië)",
"Georgian" : "Georgisch",
"German (Austria)" : "Duits (Oostenrijk)",
"German (Belgium)" : "Duits (België)",
"German (Germany)" : "Duits (Duitsland)",
"German (Liechtenstein)" : "Duits (Liechtenstein)",
"German (Luxembourg)" : "Duits (Luxemburg)",
"German (Switzerland)" : "Duits (Zwitserland)",
"German" : "Duits",
"Greek (Cyprus)" : "Grieks (Cyprus)",
"Greek (Greece)" : "Grieks (Griekenland)",
"Greek" : "Grieks",
"Gujarati (India)" : "Gujarati (India)",
"Gujarati" : "Gujarati",
"Gusii (Kenya)" : "Gusii (Kenia)",
"Gusii" : "Gusii",
"Hausa (Latin)" : "Hausa (Latijns)",
"Hausa (Latin, Ghana)" : "Hausa (Latijns, Ghana)",
"Hausa (Latin, Niger)" : "Hausa (Latijns, Niger)",
"Hausa (Latin, Nigeria)" : "Hausa (Latijns, Nigeria)",
"Hausa" : "Hausa",
"Hawaiian (United States)" : "Hawaiaans (Verenigde Staten van Amerika)",
"Hawaiian" : "Hawaiaans",
"Hebrew (Israel)" : "Hebreeuws (Israel)",
"Hebrew" : "Hebreeuws",
"Hindi (India)" : "Hindi (India)",
"Hindi" : "Hindi",
"Hungarian (Hungary)" : "Hongaars (Hongarije)",
"Hungarian" : "Hongaars",
"Icelandic (Iceland)" : "IJslands (IJsland)",
"Icelandic" : "Ijslands",
"Igbo (Nigeria)" : "Igbo (Nigeria)",
"Igbo" : "Igbo",
"Indonesian (Indonesia)" : "Indonesisch (Indonesië)",
"Indonesian" : "Indonesisch",
"Irish (Ireland)" : "Iers (Ierland)",
"Irish" : "Iers",
"Italian (Italy)" : "Italiaans (Italië)",
"Italian (Switzerland)" : "Italiaans (Zwitserland)",
"Italian" : "Italiaans",
"Japanese (Japan)" : "Japans (Japan)",
"Japanese" : "Japans",
"Kabuverdianu (Cape Verde)" : "Kaapverdiaans (Kaapverdië)",
"Kabuverdianu" : "Kaapverdiaans",
"Kabyle (Algeria)" : "Kabyle (Algerije)",
"Kabyle" : "Kabyle",
"Kalaallisut (Greenland)" : "Kalaallisut (Groenland)",
"Kalaallisut" : "Kalaallisut",
"Kalenjin (Kenya)" : "Kalenjin (Kenia)",
"Kalenjin" : "Kalenjin",
"Kamba (Kenya)" : "Kamba (Kenia)",
"Kamba" : "Kamba",
"Kannada (India)" : "Kannada (India)",
"Kannada" : "Kannada",
"Kazakh (Cyrillic)" : "Kazaks (Cyrillisch)",
"Kazakh (Cyrillic, Kazakhstan)" : "Kazaks (Cyrillisch, Kazachstan)",
"Kazakh" : "Kazachs",
"Khmer (Cambodia)" : "Khmer (Cambodja)",
"Khmer" : "Khmer",
"Kikuyu (Kenya)" : "Kikuyu (Kenia)",
"Kikuyu" : "Kikuyu",
"Kinyarwanda (Rwanda)" : "Kinyarwanda (Rwanda)",
"Kinyarwanda" : "Kinyarwanda",
"Konkani (India)" : "Konkani (India)",
"Konkani" : "Konkani",
"Korean (South Korea)" : "Koreaans",
"Korean" : "Koreaans",
"Koyra Chiini (Mali)" : "Koyra Chiini (Mali)",
"Koyra Chiini" : "Koyra Chiini",
"Koyraboro Senni (Mali)" : "Koyraboro Senni (Mali)",
"Koyraboro Senni" : "Koyraboro Senni",
"Langi (Tanzania)" : "Langi (Tanzania)",
"Langi" : "Langi",
"Latvian (Latvia)" : "Lets (Letland)",
"Latvian" : "Lets",
"Lithuanian (Lithuania)" : "Litouws (Litouwen)",
"Lithuanian" : "Litouws",
"Luo (Kenya)" : "Luo (Kenia)",
"Luo" : "Luo",
"Luyia (Kenya)" : "Luyia (Kenia)",
"Luyia" : "Luyia",
"Macedonian (Macedonia)" : "Macedonisch (Macedonië)",
"Macedonian" : "Macedonisch",
"Machame (Tanzania)" : "Machame (Tanzania)",
"Machame" : "Machame",
"Makonde (Tanzania)" : "Makonde (Tanzania)",
"Makonde" : "Makonde",
"Malagasy (Madagascar)" : "Malagasy (Madagascar)",
"Malagasy" : "Malagasitalen",
"Malay (Brunei)" : "Maleis (Brunei)",
"Malay (Malaysia)" : "Maleis (Maleisië)",
"Malay" : "Maleis",
"Malayalam (India)" : "Maleis (India)",
"Malayalam" : "Maleis",
"Maltese (Malta)" : "Maltees (Malta)",
"Maltese" : "Maltees",
"Manx (United Kingdom)" : "Manx (Verenigd Koninkrijk)",
"Manx" : "Manx-Gaelisch",
"Marathi (India)" : "Marathi (India)",
"Marathi" : "Marathi",
"Masai (Kenya)" : "Masai (Kenia)",
"Masai (Tanzania)" : "Masai (Tanzania)",
"Masai" : "Masai",
"Meru (Kenya)" : "Meru (Kenia)",
"Meru" : "Meru",
"Morisyen (Mauritius)" : "Morisyen (Mauritius)",
"Morisyen" : "Morisyen",
"Nama (Namibia)" : "Nama (Namibië)",
"Nama" : "Nama",
"Nepali (India)" : "Nepalees (India)",
"Nepali (Nepal)" : "Nepalees (Nepal)",
"Nepali" : "Nepalees",
"North Ndebele (Zimbabwe)" : "Noord Ndebele (Zimbabwe)",
"North Ndebele" : "Ndebele",
"Norwegian Bokmål (Norway)" : "Noors Bokmål (Noorwegen)",
"Norwegian Bokmål" : "Noors Bokmål",
"Norwegian Nynorsk (Norway)" : "Noors Nynorsk (Noorwegen)",
"Norwegian Nynorsk" : "Noors Nynorsk",
"Nyankole (Uganda)" : "Nyankole (Oeganda)",
"Nyankole" : "Nyankole",
"Oriya (India)" : "Oriya (India)",
"Oriya" : "Oriya",
"Oromo (Ethiopia)" : "Oromo (Ethiopië)",
"Oromo (Kenya)" : "Oromo (Kenia)",
"Oromo" : "Oromo",
"Pashto (Afghanistan)" : "Pashto (Afghanistan)",
"Pashto" : "Pashto",
"Persian (Afghanistan)" : "Persisch (Afghanistan)",
"Persian (Iran)" : "Persisch (Iran)",
"Persian" : "Persisch",
"Polish (Poland)" : "Pools (Polen)",
"Polish" : "Pools",
"Portuguese (Brazil)" : "Portugees (Brazilië)",
"Portuguese (Guinea-Bissau)" : "Portugees (Guinea-Bissau)",
"Portuguese (Mozambique)" : "Portugees (Mozambique)",
"Portuguese (Portugal)" : "Portugees (Portugal)",
"Portuguese" : "Portugees",
"Punjabi (Arabic)" : "Punjabi (Arabisch)",
"Punjabi (Arabic, Pakistan)" : "Punjabi (Arabisch, Pakistan)",
"Punjabi (Gurmukhi)" : "Punjabi (Gurmukhi)",
"Punjabi (Gurmukhi, India)" : "Punjabi (Gurmukhi, India)",
"Punjabi" : "Punjabi",
"Romanian (Moldova)" : "Roemeens (Moldavië)",
"Romanian (Romania)" : "Roemeens (Roemenië)",
"Romanian" : "Roemeens",
"Romansh (Switzerland)" : "Romaan (Zwitserland)",
"Romansh" : "Romaans",
"Rombo (Tanzania)" : "Rombo (Tanzania)",
"Rombo" : "Rombo",
"Russian (Moldova)" : "Russisch (Moldavië)",
"Russian (Russia)" : "Russisch (Rusland)",
"Russian (Ukraine)" : "Russisch (Oekraine)",
"Russian" : "Russisch",
"Rwa (Tanzania)" : "Rwa (Tanzania)",
"Rwa" : "Rwa",
"Samburu (Kenya)" : "Samburu (Kenya)",
"Samburu" : "Samburu",
"Sango (Central African Republic)" : "Sango (Centraal Afrikaanse Republiek)",
"Sango" : "Sango",
"Sena (Mozambique)" : "Sena (Mozambique)",
"Sena" : "Sena",
"Serbian (Cyrillic)" : "Servisch (Cyrillisch)",
"Serbian (Cyrillic, Bosnia and Herzegovina)" : "Servisch (Cyrillisch, Bosnië en Herzegovina)",
"Serbian (Cyrillic, Montenegro)" : "Servisch (Cyrillisch, Montenegro)",
"Serbian (Cyrillic, Serbia)" : "Servisch (Cyrillisch, Servië)",
"Serbian (Latin)" : "Servisch (Latijns)",
"Serbian (Latin, Bosnia and Herzegovina)" : "Servisch (Latijns, Bosnië en Herzegovina)",
"Serbian (Latin, Montenegro)" : "Servisch (Latijns, Montenegro)",
"Serbian (Latin, Serbia)" : "Servisch (Latijns, Servië)",
"Serbian" : "Servisch",
"Shona (Zimbabwe)" : "Shona (Zimbabwe)",
"Shona" : "Shona",
"Sichuan Yi (China)" : "Sichuan Yi (China)",
"Sichuan Yi" : "Sichuan Yi; Nuosu",
"Sinhala (Sri Lanka)" : "Singalees (Sri Lanka)",
"Sinhala" : "Sinhala",
"Slovak (Slovakia)" : "Slowaaks (Slowakije)",
"Slovak" : "Slowaaks",
"Slovenian (Slovenia)" : "Sloveens (Slovenië)",
"Slovenian" : "Sloveens",
"Soga (Uganda)" : "Soga (Oeganda)",
"Soga" : "Soga",
"Somali (Djibouti)" : "Somalies (Djibouti)",
"Somali (Ethiopia)" : "Somalisch (Ethiopië)",
"Somali (Kenya)" : "Somalisch (Kenoa)",
"Somali (Somalia)" : "Somalisch (Somalië)",
"Somali" : "Somalisch",
"Spanish (Argentina)" : "Spaans (Argentinië)",
"Spanish (Bolivia)" : "Spaans (Bolivia)",
"Spanish (Chile)" : "Spaans (Chili)",
"Spanish (Colombia)" : "Spaans (Colombia)",
"Spanish (Costa Rica)" : "Spaans (Costa Rica)",
"Spanish (Dominican Republic)" : "Spaans (Dominicaanse Republiek)",
"Spanish (Ecuador)" : "Spaans (Ecuador)",
"Spanish (El Salvador)" : "Spaans (El Salvador)",
"Spanish (Equatorial Guinea)" : "Spaans (Equatoriaal Guinea)",
"Spanish (Guatemala)" : "Spaans (Guatemala)",
"Spanish (Honduras)" : "Spaans (Honduras)",
"Spanish (Latin America)" : "Spaans (Latijns Amerika)",
"Spanish (Mexico)" : "Spaans (Mexico)",
"Spanish (Nicaragua)" : "Spaans (Nicaragua)",
"Spanish (Panama)" : "Spaans (Panama)",
"Spanish (Paraguay)" : "Spaans (Paraguay)",
"Spanish (Peru)" : "Spaans (Peru)",
"Spanish (Puerto Rico)" : "Spaans (Puerto Rico)",
"Spanish (Spain)" : "Spaans (Spanje)",
"Spanish (United States)" : "Spaans (Verenigde Staten van Amerika)",
"Spanish (Uruguay)" : "Spaans (Uruguay)",
"Spanish (Venezuela)" : "Spaans (Venezuela)",
"Spanish" : "Spaans",
"Swahili (Kenya)" : "Swahili (Kenia)",
"Swahili (Tanzania)" : "Swahili (Tanzania)",
"Swahili" : "Swahili",
"Swedish (Finland)" : "Zweeds (Finland)",
"Swedish (Sweden)" : "Zweeds (Zweden)",
"Swedish" : "Zweeds",
"Swiss German (Switzerland)" : "Schweizerdeutsch (Zwitserland)",
"Swiss German" : "Schweizerdeutsch",
"Tachelhit (Latin)" : "Tachelhit (Latijns)",
"Tachelhit (Latin, Morocco)" : "Tachelhit (Latijns, Marokko)",
"Tachelhit (Tifinagh)" : "Tachelhit (Tifinagh)",
"Tachelhit (Tifinagh, Morocco)" : "Tachelhit (Tifinagh, Marokko)",
"Tachelhit" : "Tachelhit",
"Taita (Kenya)" : "Taita (Kenia)",
"Taita" : "Taita",
"Tamil (India)" : "Tamil (India)",
"Tamil (Sri Lanka)" : "Tamil (Sri Lanka)",
"Tamil" : "Tamil",
"Telugu (India)" : "Telugu (India)",
"Telugu" : "Telugu",
"Teso (Kenya)" : "Teso (Kenia)",
"Teso (Uganda)" : "Teso (Oeganda)",
"Teso" : "Teso",
"Thai (Thailand)" : "Thais (Thailand)",
"Thai" : "Thais",
"Tibetan (China)" : "Tibetaans (China)",
"Tibetan (India)" : "Tibetaans (India)",
"Tibetan" : "Tibetaans",
"Tigrinya (Eritrea)" : "Tigrinya (Eritrea)",
"Tigrinya (Ethiopia)" : "Tigrinya (Ethiopië)",
"Tigrinya" : "Tigrinya",
"Tonga (Tonga)" : "Tonga (Tonga)",
"Tonga" : "Tonga",
"Turkish (Turkey)" : "Turks (Turkije)",
"Turkish" : "Turks",
"Ukrainian (Ukraine)" : "Oekrains (Oekraine)",
"Ukrainian" : "Oekrains",
"Urdu (India)" : "Urdu (India)",
"Urdu (Pakistan)" : "Urdu (Pakistan)",
"Urdu" : "Urdu",
"Uzbek (Arabic)" : "Oezbeeks (Arabisch)",
"Uzbek (Arabic, Afghanistan)" : "Oezbeeks (Arabisch, Afghanistan)",
"Uzbek (Cyrillic)" : "Oezbeeks (Cyrillisch)",
"Uzbek (Cyrillic, Uzbekistan)" : "Oezbeeks (Cyrillisch, Oezbekistan)",
"Uzbek (Latin)" : "Oezbeeks (Latijns)",
"Uzbek (Latin, Uzbekistan)" : "Oezbeeks (Latijns, Oezbekistan)",
"Uzbek" : "Oezbeeks",
"Vietnamese (Vietnam)" : "Vietnamees(Vietnam)",
"Vietnamese" : "Viëtnamees",
"Vunjo (Tanzania)" : "Vunjo (Tanzania)",
"Vunjo" : "Vunjo",
"Welsh (United Kingdom)" : "Welsh (Verenigd Koninkrijk)",
"Welsh" : "Welsh",
"Yoruba (Nigeria)" : "Yoruba (Nigeria)",
"Yoruba" : "Yoruba",
"Zulu (South Africa)" : "Zoeloe (Zuid-Afrika)",
"Zulu" : "Zoeloe",
"Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Twee-factor authenticatie kan worden afgedwongen voor alle \tgebruikers en specifieke groepen. Als ze geen twee-factor provider hebben ingesteld, dan kunnen ze niet inloggen in het systeem.",
"Enforce two-factor authentication" : "Forceren gebruik tweefactor authenticatie",
"Limit to groups" : "Beperk tot groepen",
@ -136,6 +570,8 @@ OC.L10N.register(
"Devices & sessions" : "Apparaten & sessies",
"Web, desktop and mobile clients currently logged in to your account." : "Web, desktop en mobiele clients zijn nu ingelogd op je account.",
"Error while creating device token" : "Fout bij creëren apparaat-token",
"Error while updating device token scope" : "Fout tijdens bijwerken device tokenscope",
"Error while updating device token name" : "Fout tijdens bijwerken device tokennaam",
"Error while deleting the token" : "Fout bij verwijderen token",
"App name" : "Appnaam",
"Create new app password" : "Creëer een nieuw app wachtwoord",
@ -147,6 +583,7 @@ OC.L10N.register(
"Show QR code for mobile apps" : "Toon QR code voor mobiele apps",
"Copied!" : "Gekopieerd!",
"Copy" : "Kopiëren",
"Could not copy app password. Please copy it manually." : "Kon app wachtwoord niet kopiëren. Kopieer het handmatig.",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiële apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.",
"Official" : "Officieel",
"by" : "door",
@ -357,13 +794,19 @@ OC.L10N.register(
"Current password" : "Huidig wachtwoord",
"Change password" : "Wijzig wachtwoord",
"Use a second factor besides your password to increase security for your account." : "Gebruik een tweede faktor naast je paswoord om de zekerheid van je account te verhogen. ",
"cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cUrl gebruikt een verouderde %s versie (%s). Werk het besturingssysteem bij, want anders zullen functies als %s niet betrouwbaar werken.",
"Disconnect" : "Verbreek verbinding",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS apparaat",
"Android Client" : "Android apparaat",
"Not supported!" : "Niet ondersteund!",
"Press ⌘-C to copy." : "Druk ⌘-C om te kopiëren.",
"Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.",
"Error while loading browser sessions and device tokens" : "Fout bij het laden van de browsersessie en apparaattokens",
"Default quota :" : "Standaardquota:",
"Please double check the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Controleer a.u.b. de <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">installatiegidsen</a>, en controleer de <a href=\"%s\">log</a> op fouten en waarschuwingen.",
"Follow us on Google+" : "Volg ons op Google+",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Je gebruikt <strong>%s</strong> van <strong>%s</strong> (<strong>%s %%</strong>)"
},
"nplurals=2; plural=(n != 1);");

View File

@ -101,6 +101,440 @@
"Groups" : "Groepen",
"Group list is empty" : "Groepenlijst is leeg",
"Unable to retrieve the group list" : "Kan groepenoverzicht niet ophalen",
"Afrikaans (Namibia)" : "Afrikaans (Namibië)",
"Afrikaans (South Africa)" : "Afrikaans (Zuid-Afrika)",
"Afrikaans" : "Afrikaans",
"Akan (Ghana)" : "Akan (Ghana)",
"Akan" : "Akan",
"Albanian (Albania)" : "Albanees (Albanië)",
"Albanian" : "Albaans",
"Amharic (Ethiopia)" : "Amhaars (Ethiopië)",
"Amharic" : "Amhaar",
"Arabic (Algeria)" : "Arabisch (Algerije)",
"Arabic (Bahrain)" : "Arabisch (Bahrain)",
"Arabic (Egypt)" : "Arabisch (Egypte)",
"Arabic (Iraq)" : "Arabisch (Irak)",
"Arabic (Jordan)" : "Arabisch (Jordanië)",
"Arabic (Kuwait)" : "Arabisch (Koeweit)",
"Arabic (Lebanon)" : "Arabisch (Libanon)",
"Arabic (Libya)" : "Arabisch (Libië)",
"Arabic (Morocco)" : "Arabisch (Marokko)",
"Arabic (Oman)" : "Arabisch (Oman)",
"Arabic (Qatar)" : "Arabisch (Katar)",
"Arabic (Saudi Arabia)" : "Arabisch (Saoedi-Arabië)",
"Arabic (Sudan)" : "Arabisch (Soedan)",
"Arabic (Syria)" : "Arabisch (Syrië)",
"Arabic (Tunisia)" : "Arabisch (Tunisië)",
"Arabic (United Arab Emirates)" : "Arabisch (Verenigde Arabische Emiraten )",
"Arabic (Yemen)" : "Arabisch (Jemen)",
"Arabic" : "Arabisch",
"Armenian (Armenia)" : "Armeens (Armenië)",
"Armenian" : "Armeens",
"Assamese (India)" : "Assamees (India)",
"Assamese" : "Assamees",
"Asu (Tanzania)" : "Asu (Tanzania)",
"Asu" : "Asu",
"Azerbaijani (Cyrillic)" : "Azerbeidzjaans (Cyrillisch)",
"Azerbaijani (Cyrillic, Azerbaijan)" : "Azerbeidzjaans (Cyrillisch, Azerbeidzjaan)",
"Azerbaijani (Latin)" : "Azerbeidzjaans (Latijns)",
"Azerbaijani (Latin, Azerbaijan)" : "Azerbeidzjaans (Latijn, Azerbeidzjaan)",
"Azerbaijani" : "Azerbaidzjaans",
"Bambara (Mali)" : "Bambara (Mali)",
"Bambara" : "Bambara",
"Basque (Spain)" : "Baskisch (Spanje)",
"Basque" : "Baskisch",
"Belarusian (Belarus)" : "Wit-Russisch (Wit-Rusland)",
"Belarusian" : "Wit-Russisch",
"Bemba (Zambia)" : "Bemba (Zambia)",
"Bemba" : "Bemba",
"Bena (Tanzania)" : "Bena (Tanzania)",
"Bena" : "Bena",
"Bengali (Bangladesh)" : "Bengaals (Bangladesh)",
"Bengali (India)" : "Bengaals (India)",
"Bengali" : "Bengaals",
"Bosnian (Bosnia and Herzegovina)" : "Bosnisch (Bosnië en Herzegovina)",
"Bosnian" : "Bosnisch",
"Bulgarian (Bulgaria)" : "Bulgaars (Bulgarije)",
"Bulgarian" : "Bulgaars",
"Burmese (Myanmar [Burma])" : "Birmees (Myanmar [Burma])",
"Burmese" : "Burmees",
"Catalan (Spain)" : "Catalaans (Spanje)",
"Catalan" : "Catalaans",
"Central Morocco Tamazight (Latin)" : "Centraal Marokko Tamazight (Latijns)",
"Central Morocco Tamazight (Latin, Morocco)" : "Centraal Marokko Tamazight (Latijns, Marokko)",
"Central Morocco Tamazight" : "Centraal Marokko Tamazight",
"Cherokee (United States)" : "Cherokee (Verenigde Staten van Amerika)",
"Cherokee" : "Cherokee",
"Chiga (Uganda)" : "Chiga (Oeganda)",
"Chiga" : "Chiga",
"Chinese (Simplified Han)" : "Chinees (Gesimplificeerd Han)",
"Chinese (Simplified Han, China)" : "Chinees (Gesimplificeerd Han, China)",
"Chinese (Simplified Han, Hong Kong SAR China)" : "Chinees (Gesimplificeerd Han, Hong Kong SAR China)",
"Chinese (Simplified Han, Macau SAR China)" : "Chinees (Gesimplificeerd Han, Macao SAR China)",
"Chinese (Simplified Han, Singapore)" : "Chinees (Gesimplificeerd Han, Singapore)",
"Chinese (Traditional Han)" : "Chinees (traditioneel Han)",
"Chinese (Traditional Han, Hong Kong SAR China)" : "Chinees (Traditioneel Han, Hong Kong SAR China)",
"Chinese (Traditional Han, Macau SAR China)" : "Chinees (Traditioneel Han, Macao SAR China)",
"Chinese (Traditional Han, Taiwan)" : "Chinees (Traditioneel Han, Taiwan)",
"Chinese" : "Chinees",
"Cornish (United Kingdom)" : "Cornish (Verenigd Koninkrijk)",
"Cornish" : "Cornish",
"Croatian (Croatia)" : "Kroatisch (Kroatië)",
"Croatian" : "Kroatisch",
"Czech (Czech Republic)" : "Tsjechisch (Tsjechische Republiek)",
"Czech" : "Tsjechisch",
"Danish (Denmark)" : "Deens (Denemarken)",
"Danish" : "Deens",
"Dutch (Belgium)" : "Nederlands (België)",
"Dutch (Netherlands)" : "Nederlands (Nederland)",
"Dutch" : "Nederlands",
"Embu (Kenya)" : "Embu (Kenia)",
"Embu" : "Embu",
"English (American Samoa)" : "Engels (Amerikaans Samoa)",
"English (Australia)" : "Engels (Australië)",
"English (Belgium)" : "Engels (België)",
"English (Belize)" : "Engels (Belize)",
"English (Botswana)" : "Engels (Botswana)",
"English (Canada)" : "Engels (Canada)",
"English (Guam)" : "Engels (Guam)",
"English (Hong Kong SAR China)" : "Engels (Hong Kong SAR China)",
"English (India)" : "Engels (India)",
"English (Ireland)" : "Engels (Ierland)",
"English (Jamaica)" : "Engels (Jamaica)",
"English (Malta)" : "Engels (Malta)",
"English (Marshall Islands)" : "Engels (Marshalleilanden)",
"English (Mauritius)" : "Engels (Mauritius)",
"English (Namibia)" : "Engels (Namibië)",
"English (New Zealand)" : "Engels (Nieuw Zeeland)",
"English (Northern Mariana Islands)" : "Engels (Noordelijke Marianen)",
"English (Pakistan)" : "Engels (Pakistan)",
"English (Philippines)" : "Engels (Filippijnen)",
"English (Singapore)" : "Engels (Singapore)",
"English (South Africa)" : "Engels (Zuid-Afrika)",
"English (Trinidad and Tobago)" : "Engels (Trinidad en Tobago)",
"English (U.S. Minor Outlying Islands)" : "Engels (Kleine afgelegen eilanden van de Verenigde Staten)",
"English (U.S. Virgin Islands)" : "Engels (Maagdeneilanden)",
"English (United Kingdom)" : "Engels (Verenigd Koninkrijk)",
"English (United States)" : "Engels (Verenigde Staten van Amerika)",
"English (Zimbabwe)" : "Engels (Zimbabwe)",
"English" : "Engels",
"Esperanto" : "Esperanto",
"Estonian (Estonia)" : "Ests (Estland)",
"Estonian" : "Ests",
"Ewe (Ghana)" : "Ewe (Ghana)",
"Ewe (Togo)" : "Ewe (Togo)",
"Ewe" : "Ewe",
"Faroese (Faroe Islands)" : "Faeröes (Faeröereilanden)",
"Faroese" : "Faeröers",
"Filipino (Philippines)" : "Filipijns (Filippijnen)",
"Filipino" : "Filipijns",
"Finnish (Finland)" : "Fins (Finland)",
"Finnish" : "Fins",
"French (Belgium)" : "Frans (België)",
"French (Benin)" : "Frans (Benin)",
"French (Burkina Faso)" : "Frans (Burkina Faso)",
"French (Burundi)" : "Frans (Burundi)",
"French (Cameroon)" : "Frans (Kameroen)",
"French (Canada)" : "Frans (Canada)",
"French (Central African Republic)" : "Frans (Centraal Afrikaanse Republiek)",
"French (Chad)" : "Frans (Tsjaad)",
"French (Comoros)" : "Frans (Komoren)",
"French (Congo - Brazzaville)" : "Frans (Congo - Brazzaville)",
"French (Congo - Kinshasa)" : "Frans (Kongo - Kinshasa)",
"French (Côte dIvoire)" : "Frans (Ivoorkust)",
"French (Djibouti)" : "Frans (Djibouti)",
"French (Equatorial Guinea)" : "Frans (Equatoriaal Guinea)",
"French (France)" : "Frans (Frankrijk)",
"French (Gabon)" : "Frans (Gabon)",
"French (Guadeloupe)" : "Frans (Guadeloupe)",
"French (Guinea)" : "Frans (Guinea)",
"French (Luxembourg)" : "Frans (Luxemburg)",
"French (Madagascar)" : "Frans (Madagascar)",
"French (Mali)" : "Frans (Mali)",
"French (Martinique)" : "Frans (Martinique)",
"French (Monaco)" : "Frans (Monaco)",
"French (Niger)" : "Frans (Niger)",
"French (Rwanda)" : "Frans (Rwanda)",
"French (Réunion)" : "Frans (Réunion)",
"French (Saint Barthélemy)" : "Frans (Saint Barthélemy)",
"French (Saint Martin)" : "Frans (Saint Martin)",
"French (Senegal)" : "Frans (Senegal)",
"French (Switzerland)" : "Frans (Zwitserland)",
"French (Togo)" : "Frans (Togo)",
"French" : "Frans",
"Fulah (Senegal)" : "Fulah (Senegal)",
"Fulah" : "Fulah",
"Galician (Spain)" : "Galisisch (Spanje)",
"Galician" : "Galisisch",
"Ganda (Uganda)" : "Ganda (Oeganda)",
"Ganda" : "Ganda",
"Georgian (Georgia)" : "Georgisch (Georgië)",
"Georgian" : "Georgisch",
"German (Austria)" : "Duits (Oostenrijk)",
"German (Belgium)" : "Duits (België)",
"German (Germany)" : "Duits (Duitsland)",
"German (Liechtenstein)" : "Duits (Liechtenstein)",
"German (Luxembourg)" : "Duits (Luxemburg)",
"German (Switzerland)" : "Duits (Zwitserland)",
"German" : "Duits",
"Greek (Cyprus)" : "Grieks (Cyprus)",
"Greek (Greece)" : "Grieks (Griekenland)",
"Greek" : "Grieks",
"Gujarati (India)" : "Gujarati (India)",
"Gujarati" : "Gujarati",
"Gusii (Kenya)" : "Gusii (Kenia)",
"Gusii" : "Gusii",
"Hausa (Latin)" : "Hausa (Latijns)",
"Hausa (Latin, Ghana)" : "Hausa (Latijns, Ghana)",
"Hausa (Latin, Niger)" : "Hausa (Latijns, Niger)",
"Hausa (Latin, Nigeria)" : "Hausa (Latijns, Nigeria)",
"Hausa" : "Hausa",
"Hawaiian (United States)" : "Hawaiaans (Verenigde Staten van Amerika)",
"Hawaiian" : "Hawaiaans",
"Hebrew (Israel)" : "Hebreeuws (Israel)",
"Hebrew" : "Hebreeuws",
"Hindi (India)" : "Hindi (India)",
"Hindi" : "Hindi",
"Hungarian (Hungary)" : "Hongaars (Hongarije)",
"Hungarian" : "Hongaars",
"Icelandic (Iceland)" : "IJslands (IJsland)",
"Icelandic" : "Ijslands",
"Igbo (Nigeria)" : "Igbo (Nigeria)",
"Igbo" : "Igbo",
"Indonesian (Indonesia)" : "Indonesisch (Indonesië)",
"Indonesian" : "Indonesisch",
"Irish (Ireland)" : "Iers (Ierland)",
"Irish" : "Iers",
"Italian (Italy)" : "Italiaans (Italië)",
"Italian (Switzerland)" : "Italiaans (Zwitserland)",
"Italian" : "Italiaans",
"Japanese (Japan)" : "Japans (Japan)",
"Japanese" : "Japans",
"Kabuverdianu (Cape Verde)" : "Kaapverdiaans (Kaapverdië)",
"Kabuverdianu" : "Kaapverdiaans",
"Kabyle (Algeria)" : "Kabyle (Algerije)",
"Kabyle" : "Kabyle",
"Kalaallisut (Greenland)" : "Kalaallisut (Groenland)",
"Kalaallisut" : "Kalaallisut",
"Kalenjin (Kenya)" : "Kalenjin (Kenia)",
"Kalenjin" : "Kalenjin",
"Kamba (Kenya)" : "Kamba (Kenia)",
"Kamba" : "Kamba",
"Kannada (India)" : "Kannada (India)",
"Kannada" : "Kannada",
"Kazakh (Cyrillic)" : "Kazaks (Cyrillisch)",
"Kazakh (Cyrillic, Kazakhstan)" : "Kazaks (Cyrillisch, Kazachstan)",
"Kazakh" : "Kazachs",
"Khmer (Cambodia)" : "Khmer (Cambodja)",
"Khmer" : "Khmer",
"Kikuyu (Kenya)" : "Kikuyu (Kenia)",
"Kikuyu" : "Kikuyu",
"Kinyarwanda (Rwanda)" : "Kinyarwanda (Rwanda)",
"Kinyarwanda" : "Kinyarwanda",
"Konkani (India)" : "Konkani (India)",
"Konkani" : "Konkani",
"Korean (South Korea)" : "Koreaans",
"Korean" : "Koreaans",
"Koyra Chiini (Mali)" : "Koyra Chiini (Mali)",
"Koyra Chiini" : "Koyra Chiini",
"Koyraboro Senni (Mali)" : "Koyraboro Senni (Mali)",
"Koyraboro Senni" : "Koyraboro Senni",
"Langi (Tanzania)" : "Langi (Tanzania)",
"Langi" : "Langi",
"Latvian (Latvia)" : "Lets (Letland)",
"Latvian" : "Lets",
"Lithuanian (Lithuania)" : "Litouws (Litouwen)",
"Lithuanian" : "Litouws",
"Luo (Kenya)" : "Luo (Kenia)",
"Luo" : "Luo",
"Luyia (Kenya)" : "Luyia (Kenia)",
"Luyia" : "Luyia",
"Macedonian (Macedonia)" : "Macedonisch (Macedonië)",
"Macedonian" : "Macedonisch",
"Machame (Tanzania)" : "Machame (Tanzania)",
"Machame" : "Machame",
"Makonde (Tanzania)" : "Makonde (Tanzania)",
"Makonde" : "Makonde",
"Malagasy (Madagascar)" : "Malagasy (Madagascar)",
"Malagasy" : "Malagasitalen",
"Malay (Brunei)" : "Maleis (Brunei)",
"Malay (Malaysia)" : "Maleis (Maleisië)",
"Malay" : "Maleis",
"Malayalam (India)" : "Maleis (India)",
"Malayalam" : "Maleis",
"Maltese (Malta)" : "Maltees (Malta)",
"Maltese" : "Maltees",
"Manx (United Kingdom)" : "Manx (Verenigd Koninkrijk)",
"Manx" : "Manx-Gaelisch",
"Marathi (India)" : "Marathi (India)",
"Marathi" : "Marathi",
"Masai (Kenya)" : "Masai (Kenia)",
"Masai (Tanzania)" : "Masai (Tanzania)",
"Masai" : "Masai",
"Meru (Kenya)" : "Meru (Kenia)",
"Meru" : "Meru",
"Morisyen (Mauritius)" : "Morisyen (Mauritius)",
"Morisyen" : "Morisyen",
"Nama (Namibia)" : "Nama (Namibië)",
"Nama" : "Nama",
"Nepali (India)" : "Nepalees (India)",
"Nepali (Nepal)" : "Nepalees (Nepal)",
"Nepali" : "Nepalees",
"North Ndebele (Zimbabwe)" : "Noord Ndebele (Zimbabwe)",
"North Ndebele" : "Ndebele",
"Norwegian Bokmål (Norway)" : "Noors Bokmål (Noorwegen)",
"Norwegian Bokmål" : "Noors Bokmål",
"Norwegian Nynorsk (Norway)" : "Noors Nynorsk (Noorwegen)",
"Norwegian Nynorsk" : "Noors Nynorsk",
"Nyankole (Uganda)" : "Nyankole (Oeganda)",
"Nyankole" : "Nyankole",
"Oriya (India)" : "Oriya (India)",
"Oriya" : "Oriya",
"Oromo (Ethiopia)" : "Oromo (Ethiopië)",
"Oromo (Kenya)" : "Oromo (Kenia)",
"Oromo" : "Oromo",
"Pashto (Afghanistan)" : "Pashto (Afghanistan)",
"Pashto" : "Pashto",
"Persian (Afghanistan)" : "Persisch (Afghanistan)",
"Persian (Iran)" : "Persisch (Iran)",
"Persian" : "Persisch",
"Polish (Poland)" : "Pools (Polen)",
"Polish" : "Pools",
"Portuguese (Brazil)" : "Portugees (Brazilië)",
"Portuguese (Guinea-Bissau)" : "Portugees (Guinea-Bissau)",
"Portuguese (Mozambique)" : "Portugees (Mozambique)",
"Portuguese (Portugal)" : "Portugees (Portugal)",
"Portuguese" : "Portugees",
"Punjabi (Arabic)" : "Punjabi (Arabisch)",
"Punjabi (Arabic, Pakistan)" : "Punjabi (Arabisch, Pakistan)",
"Punjabi (Gurmukhi)" : "Punjabi (Gurmukhi)",
"Punjabi (Gurmukhi, India)" : "Punjabi (Gurmukhi, India)",
"Punjabi" : "Punjabi",
"Romanian (Moldova)" : "Roemeens (Moldavië)",
"Romanian (Romania)" : "Roemeens (Roemenië)",
"Romanian" : "Roemeens",
"Romansh (Switzerland)" : "Romaan (Zwitserland)",
"Romansh" : "Romaans",
"Rombo (Tanzania)" : "Rombo (Tanzania)",
"Rombo" : "Rombo",
"Russian (Moldova)" : "Russisch (Moldavië)",
"Russian (Russia)" : "Russisch (Rusland)",
"Russian (Ukraine)" : "Russisch (Oekraine)",
"Russian" : "Russisch",
"Rwa (Tanzania)" : "Rwa (Tanzania)",
"Rwa" : "Rwa",
"Samburu (Kenya)" : "Samburu (Kenya)",
"Samburu" : "Samburu",
"Sango (Central African Republic)" : "Sango (Centraal Afrikaanse Republiek)",
"Sango" : "Sango",
"Sena (Mozambique)" : "Sena (Mozambique)",
"Sena" : "Sena",
"Serbian (Cyrillic)" : "Servisch (Cyrillisch)",
"Serbian (Cyrillic, Bosnia and Herzegovina)" : "Servisch (Cyrillisch, Bosnië en Herzegovina)",
"Serbian (Cyrillic, Montenegro)" : "Servisch (Cyrillisch, Montenegro)",
"Serbian (Cyrillic, Serbia)" : "Servisch (Cyrillisch, Servië)",
"Serbian (Latin)" : "Servisch (Latijns)",
"Serbian (Latin, Bosnia and Herzegovina)" : "Servisch (Latijns, Bosnië en Herzegovina)",
"Serbian (Latin, Montenegro)" : "Servisch (Latijns, Montenegro)",
"Serbian (Latin, Serbia)" : "Servisch (Latijns, Servië)",
"Serbian" : "Servisch",
"Shona (Zimbabwe)" : "Shona (Zimbabwe)",
"Shona" : "Shona",
"Sichuan Yi (China)" : "Sichuan Yi (China)",
"Sichuan Yi" : "Sichuan Yi; Nuosu",
"Sinhala (Sri Lanka)" : "Singalees (Sri Lanka)",
"Sinhala" : "Sinhala",
"Slovak (Slovakia)" : "Slowaaks (Slowakije)",
"Slovak" : "Slowaaks",
"Slovenian (Slovenia)" : "Sloveens (Slovenië)",
"Slovenian" : "Sloveens",
"Soga (Uganda)" : "Soga (Oeganda)",
"Soga" : "Soga",
"Somali (Djibouti)" : "Somalies (Djibouti)",
"Somali (Ethiopia)" : "Somalisch (Ethiopië)",
"Somali (Kenya)" : "Somalisch (Kenoa)",
"Somali (Somalia)" : "Somalisch (Somalië)",
"Somali" : "Somalisch",
"Spanish (Argentina)" : "Spaans (Argentinië)",
"Spanish (Bolivia)" : "Spaans (Bolivia)",
"Spanish (Chile)" : "Spaans (Chili)",
"Spanish (Colombia)" : "Spaans (Colombia)",
"Spanish (Costa Rica)" : "Spaans (Costa Rica)",
"Spanish (Dominican Republic)" : "Spaans (Dominicaanse Republiek)",
"Spanish (Ecuador)" : "Spaans (Ecuador)",
"Spanish (El Salvador)" : "Spaans (El Salvador)",
"Spanish (Equatorial Guinea)" : "Spaans (Equatoriaal Guinea)",
"Spanish (Guatemala)" : "Spaans (Guatemala)",
"Spanish (Honduras)" : "Spaans (Honduras)",
"Spanish (Latin America)" : "Spaans (Latijns Amerika)",
"Spanish (Mexico)" : "Spaans (Mexico)",
"Spanish (Nicaragua)" : "Spaans (Nicaragua)",
"Spanish (Panama)" : "Spaans (Panama)",
"Spanish (Paraguay)" : "Spaans (Paraguay)",
"Spanish (Peru)" : "Spaans (Peru)",
"Spanish (Puerto Rico)" : "Spaans (Puerto Rico)",
"Spanish (Spain)" : "Spaans (Spanje)",
"Spanish (United States)" : "Spaans (Verenigde Staten van Amerika)",
"Spanish (Uruguay)" : "Spaans (Uruguay)",
"Spanish (Venezuela)" : "Spaans (Venezuela)",
"Spanish" : "Spaans",
"Swahili (Kenya)" : "Swahili (Kenia)",
"Swahili (Tanzania)" : "Swahili (Tanzania)",
"Swahili" : "Swahili",
"Swedish (Finland)" : "Zweeds (Finland)",
"Swedish (Sweden)" : "Zweeds (Zweden)",
"Swedish" : "Zweeds",
"Swiss German (Switzerland)" : "Schweizerdeutsch (Zwitserland)",
"Swiss German" : "Schweizerdeutsch",
"Tachelhit (Latin)" : "Tachelhit (Latijns)",
"Tachelhit (Latin, Morocco)" : "Tachelhit (Latijns, Marokko)",
"Tachelhit (Tifinagh)" : "Tachelhit (Tifinagh)",
"Tachelhit (Tifinagh, Morocco)" : "Tachelhit (Tifinagh, Marokko)",
"Tachelhit" : "Tachelhit",
"Taita (Kenya)" : "Taita (Kenia)",
"Taita" : "Taita",
"Tamil (India)" : "Tamil (India)",
"Tamil (Sri Lanka)" : "Tamil (Sri Lanka)",
"Tamil" : "Tamil",
"Telugu (India)" : "Telugu (India)",
"Telugu" : "Telugu",
"Teso (Kenya)" : "Teso (Kenia)",
"Teso (Uganda)" : "Teso (Oeganda)",
"Teso" : "Teso",
"Thai (Thailand)" : "Thais (Thailand)",
"Thai" : "Thais",
"Tibetan (China)" : "Tibetaans (China)",
"Tibetan (India)" : "Tibetaans (India)",
"Tibetan" : "Tibetaans",
"Tigrinya (Eritrea)" : "Tigrinya (Eritrea)",
"Tigrinya (Ethiopia)" : "Tigrinya (Ethiopië)",
"Tigrinya" : "Tigrinya",
"Tonga (Tonga)" : "Tonga (Tonga)",
"Tonga" : "Tonga",
"Turkish (Turkey)" : "Turks (Turkije)",
"Turkish" : "Turks",
"Ukrainian (Ukraine)" : "Oekrains (Oekraine)",
"Ukrainian" : "Oekrains",
"Urdu (India)" : "Urdu (India)",
"Urdu (Pakistan)" : "Urdu (Pakistan)",
"Urdu" : "Urdu",
"Uzbek (Arabic)" : "Oezbeeks (Arabisch)",
"Uzbek (Arabic, Afghanistan)" : "Oezbeeks (Arabisch, Afghanistan)",
"Uzbek (Cyrillic)" : "Oezbeeks (Cyrillisch)",
"Uzbek (Cyrillic, Uzbekistan)" : "Oezbeeks (Cyrillisch, Oezbekistan)",
"Uzbek (Latin)" : "Oezbeeks (Latijns)",
"Uzbek (Latin, Uzbekistan)" : "Oezbeeks (Latijns, Oezbekistan)",
"Uzbek" : "Oezbeeks",
"Vietnamese (Vietnam)" : "Vietnamees(Vietnam)",
"Vietnamese" : "Viëtnamees",
"Vunjo (Tanzania)" : "Vunjo (Tanzania)",
"Vunjo" : "Vunjo",
"Welsh (United Kingdom)" : "Welsh (Verenigd Koninkrijk)",
"Welsh" : "Welsh",
"Yoruba (Nigeria)" : "Yoruba (Nigeria)",
"Yoruba" : "Yoruba",
"Zulu (South Africa)" : "Zoeloe (Zuid-Afrika)",
"Zulu" : "Zoeloe",
"Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Twee-factor authenticatie kan worden afgedwongen voor alle \tgebruikers en specifieke groepen. Als ze geen twee-factor provider hebben ingesteld, dan kunnen ze niet inloggen in het systeem.",
"Enforce two-factor authentication" : "Forceren gebruik tweefactor authenticatie",
"Limit to groups" : "Beperk tot groepen",
@ -134,6 +568,8 @@
"Devices & sessions" : "Apparaten & sessies",
"Web, desktop and mobile clients currently logged in to your account." : "Web, desktop en mobiele clients zijn nu ingelogd op je account.",
"Error while creating device token" : "Fout bij creëren apparaat-token",
"Error while updating device token scope" : "Fout tijdens bijwerken device tokenscope",
"Error while updating device token name" : "Fout tijdens bijwerken device tokennaam",
"Error while deleting the token" : "Fout bij verwijderen token",
"App name" : "Appnaam",
"Create new app password" : "Creëer een nieuw app wachtwoord",
@ -145,6 +581,7 @@
"Show QR code for mobile apps" : "Toon QR code voor mobiele apps",
"Copied!" : "Gekopieerd!",
"Copy" : "Kopiëren",
"Could not copy app password. Please copy it manually." : "Kon app wachtwoord niet kopiëren. Kopieer het handmatig.",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiële apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.",
"Official" : "Officieel",
"by" : "door",
@ -355,13 +792,19 @@
"Current password" : "Huidig wachtwoord",
"Change password" : "Wijzig wachtwoord",
"Use a second factor besides your password to increase security for your account." : "Gebruik een tweede faktor naast je paswoord om de zekerheid van je account te verhogen. ",
"cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cUrl gebruikt een verouderde %s versie (%s). Werk het besturingssysteem bij, want anders zullen functies als %s niet betrouwbaar werken.",
"Disconnect" : "Verbreek verbinding",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS apparaat",
"Android Client" : "Android apparaat",
"Not supported!" : "Niet ondersteund!",
"Press ⌘-C to copy." : "Druk ⌘-C om te kopiëren.",
"Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.",
"Error while loading browser sessions and device tokens" : "Fout bij het laden van de browsersessie en apparaattokens",
"Default quota :" : "Standaardquota:",
"Please double check the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Controleer a.u.b. de <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">installatiegidsen</a>, en controleer de <a href=\"%s\">log</a> op fouten en waarschuwingen.",
"Follow us on Google+" : "Volg ons op Google+",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Je gebruikt <strong>%s</strong> van <strong>%s</strong> (<strong>%s %%</strong>)"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

166
settings/l10n/ro.js Normal file
View File

@ -0,0 +1,166 @@
OC.L10N.register(
"settings",
{
"You changed your password" : "Ți-ai schimbat parola",
"Your password was reset by an administrator" : "Parola dumneavoastră a fost resetată de un administrator",
"You changed your email address" : "Ți-ai schimbat adresa de email",
"Your email address was changed by an administrator" : "Adresa ta de email a fost modificată de un administrator",
"Security" : "Securitate",
"Couldn't remove app." : "Nu s-a putut înlătura aplicația.",
"Couldn't update app." : "Aplicaţia nu s-a putut actualiza.",
"Wrong password" : "Parolă greșită",
"Saved" : "Salvat",
"No user supplied" : "Nu a fost furnizat niciun utilizator",
"Unable to change password" : "Imposibil de schimbat parola",
"Authentication error" : "Eroare la autentificare",
"Wrong admin recovery password. Please check the password and try again." : "Parolă administrativă de recuperare greșită. Verifică parola și încearcă din nou.",
"Federated Cloud Sharing" : "Partajare federalizata cloud",
"Invalid SMTP password." : "Parolă SMTP invalidă.",
"Email setting test" : "Test setări email",
"A problem occurred while sending the email. Please revise your settings. (Error: %s)" : " A apărut o problemă la trimiterea emailului. Verifică-ți setărie. (Eroare: %s)",
"You need to set your user email before being able to send test emails." : "Trebuie să îți setezi emailul de utilizator înainte de a putea să trimiți emailuri.",
"Invalid mail address" : "Adresa mail invalidă",
"Unable to change full name" : "Nu s-a putut schimba numele complet",
"Email address changed for %s" : "Adresa de email schimbată în %s",
"The new email address is %s" : "Adresa de email nouă este%s",
"Your %s account was created" : "Contul tău %s a fost creat",
"Your username is: %s" : "Utilizatorul tău este: %s",
"Set your password" : "Setează parola",
"Install Client" : "Instalează client",
"Migration in progress. Please wait until the migration is finished" : "Migrare în progres. Așteaptă până când migrarea este finalizată",
"Migration started …" : "Migrarea a început...",
"Not saved" : "Nu a fost salvat",
"Sending…" : "Se trimite...",
"Email sent" : "Mesajul a fost expediat",
"Valid until {date}" : "Valabil până la {date}",
"Delete" : "Șterge",
"Contacts" : "Contacte",
"Verify" : "Verifică",
"Verifying …" : "Se verifică ...",
"Very weak password" : "Parolă foarte slabă",
"Weak password" : "Parolă slabă",
"So-so password" : "Parolă medie",
"Good password" : "Parolă bună",
"Strong password" : "Parolă puternică",
"Select a profile picture" : "Selectează o imagine de profil",
"Week starts on {fdow}" : "Săptămâna începe {fdow}",
"Groups" : "Grupuri",
"Edge" : "Edge",
"Firefox" : "Firefox",
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Google Chrome for Android",
"Device" : "Dispozitiv",
"Error while deleting the token" : "Eroare de ștergere token",
"App name" : "Numele aplicației",
"Create new app password" : "Crează o nouă parolă pentru aplicație",
"Username" : "Nume utilizator",
"Password" : "Parolă",
"Done" : "Realizat",
"Copied!" : "S-a copiat!",
"Copy" : "Copiază",
"Official" : "Oficial",
"Disable" : "Dezactivați",
"All" : "Toate ",
"Visit website" : "Viziteaza pagina web",
"Report a bug" : "Raportează un defect",
"User documentation" : "Documentație utilizator",
"Admin documentation" : "Documentație pentru administrare",
"Developer documentation" : "Documentație pentru dezvoltatori",
"No apps found for your version" : "Nu au fost găsite aplicații pentru versiunea ta",
"Enable" : "Activare",
"The app will be downloaded from the app store" : "Aplicația va fi descărcată din magazin",
"You do not have permissions to see the details of this user" : "Nu aveți permisiuni pentru a vedea detaliile acestui utilizator",
"New password" : "Noua parolă",
"{size} used" : "{size} folosită",
"Email" : "Email",
"Quota" : "Cotă",
"Language" : "Limba",
"Default language" : "Limba implicită",
"Unlimited" : "Nelimitată",
"Your apps" : "Aplicațiile tale",
"Disabled apps" : "Aplicații inactive",
"Updates" : "Actualizări",
"Show user backend" : "Arată administrare utilizator",
"Admins" : "Administratori",
"Everyone" : "Toți",
"Add group" : "Adaugă grup",
"SSL Root Certificates" : "Certificate SSL rădăcină",
"Common Name" : "Nume comun",
"Valid until" : "Valabil până la",
"Issued By" : "Emis de",
"Valid until %s" : "Valabil până la %s",
"Import root certificate" : "Importă certificat rădăcină",
"Administrator documentation" : "Documentație pentru administrare",
"Forum" : "Forum",
"None" : "Niciuna",
"Login" : "Autentificare",
"Plain" : "Plain",
"NT LAN Manager" : "NT LAN Manager",
"SSL/TLS" : "SSL/TLS",
"STARTTLS" : "STARTTLS",
"Email server" : "Server de email",
"Open documentation" : "Deschide documentația",
"Send mode" : "Modul de expediere",
"Encryption" : "Încriptare",
"From address" : "De la adresa",
"mail" : "poștă",
"Authentication method" : "Modul de autentificare",
"Authentication required" : "Autentificare necesară",
"Server address" : "Adresa server-ului",
"Port" : "Portul",
"Credentials" : "Detalii de autentificare",
"SMTP Username" : "Nume utilizator SMTP",
"SMTP Password" : "Parolă SMTP",
"Store credentials" : "Stochează datele de autentificare",
"Test email settings" : "Verifică setările de e-mail",
"Send email" : "Expediază mesajul",
"Security & setup warnings" : "Alerte de securitate & configurare",
"All checks passed." : "Toate verificările s-au terminat fără erori.",
"Version" : "Versiunea",
"Server-side encryption" : "Criptare la nivel de server",
"Enable server-side encryption" : "Activează criptarea pe server",
"Please read carefully before activating server-side encryption: " : "Citește cu atenție înainte să activezi criptarea pe server:",
"This is the final warning: Do you really want to enable encryption?" : "Aceasta este avertizarea finală: Chiar vrei să activezi criptarea?",
"Enable encryption" : "Activează criptarea",
"Select default encryption module:" : "Selectează modulul implicit de criptare:",
"Start migration" : "Pornește migrarea",
"Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată",
"Sharing" : "Partajare",
"Allow apps to use the Share API" : "Permite aplicațiilor să folosească API-ul de partajare",
"Allow users to share via link" : "Permite utilizatorilor să partajeze via link",
"Allow public uploads" : "Permite încărcări publice",
"Enforce password protection" : "Impune protecția prin parolă",
"Set default expiration date" : "Setează data implicită de expirare",
"Expire after " : "Expiră după",
"days" : "zile",
"Enforce expiration date" : "Impune data de expirare",
"Allow resharing" : "Permite repartajarea",
"Allow sharing with groups" : "Permite partajarea cu grupuri",
"Exclude groups from sharing" : "Exclude grupuri de la partajare",
"Administration" : "Administrare",
"Profile picture" : "Imagine de profil",
"Upload new" : "Încarcă una nouă",
"Select from Files" : "Selectează din fișiere",
"Remove image" : "Înlătură imagine",
"png or jpg, max. 20 MB" : "png sau jpg, max. 20 MB",
"Cancel" : "Anulare",
"Choose as profile picture" : "Alege ca imagine de profil",
"Details" : "Detalii",
"You are using <strong>%1$s</strong> of <strong>%2$s</strong> (<strong>%3$s %%</strong>)" : "Utilizezi <strong>%1$s</strong> din <strong>%2$s</strong> (<strong>%3$s %%</strong>)",
"Full name" : "Nume complet",
"Your email address" : "Adresa ta de email",
"No email address set" : "Fără adresă de email setată",
"Phone number" : "Număr telefon",
"Your phone number" : "Numărul tău de telefon",
"Address" : "Adresă",
"Your postal address" : "Adresă poștală",
"Website" : "Site web",
"Link https://…" : "Link https://…",
"Twitter" : "Twitter",
"Help translate" : "Ajută la traducere",
"Current password" : "Parola curentă",
"Change password" : "Schimbă parola",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Utilizezi <strong>%s</strong> din <strong>%s</strong> (<strong>%s %%</strong>)"
},
"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));");

164
settings/l10n/ro.json Normal file
View File

@ -0,0 +1,164 @@
{ "translations": {
"You changed your password" : "Ți-ai schimbat parola",
"Your password was reset by an administrator" : "Parola dumneavoastră a fost resetată de un administrator",
"You changed your email address" : "Ți-ai schimbat adresa de email",
"Your email address was changed by an administrator" : "Adresa ta de email a fost modificată de un administrator",
"Security" : "Securitate",
"Couldn't remove app." : "Nu s-a putut înlătura aplicația.",
"Couldn't update app." : "Aplicaţia nu s-a putut actualiza.",
"Wrong password" : "Parolă greșită",
"Saved" : "Salvat",
"No user supplied" : "Nu a fost furnizat niciun utilizator",
"Unable to change password" : "Imposibil de schimbat parola",
"Authentication error" : "Eroare la autentificare",
"Wrong admin recovery password. Please check the password and try again." : "Parolă administrativă de recuperare greșită. Verifică parola și încearcă din nou.",
"Federated Cloud Sharing" : "Partajare federalizata cloud",
"Invalid SMTP password." : "Parolă SMTP invalidă.",
"Email setting test" : "Test setări email",
"A problem occurred while sending the email. Please revise your settings. (Error: %s)" : " A apărut o problemă la trimiterea emailului. Verifică-ți setărie. (Eroare: %s)",
"You need to set your user email before being able to send test emails." : "Trebuie să îți setezi emailul de utilizator înainte de a putea să trimiți emailuri.",
"Invalid mail address" : "Adresa mail invalidă",
"Unable to change full name" : "Nu s-a putut schimba numele complet",
"Email address changed for %s" : "Adresa de email schimbată în %s",
"The new email address is %s" : "Adresa de email nouă este%s",
"Your %s account was created" : "Contul tău %s a fost creat",
"Your username is: %s" : "Utilizatorul tău este: %s",
"Set your password" : "Setează parola",
"Install Client" : "Instalează client",
"Migration in progress. Please wait until the migration is finished" : "Migrare în progres. Așteaptă până când migrarea este finalizată",
"Migration started …" : "Migrarea a început...",
"Not saved" : "Nu a fost salvat",
"Sending…" : "Se trimite...",
"Email sent" : "Mesajul a fost expediat",
"Valid until {date}" : "Valabil până la {date}",
"Delete" : "Șterge",
"Contacts" : "Contacte",
"Verify" : "Verifică",
"Verifying …" : "Se verifică ...",
"Very weak password" : "Parolă foarte slabă",
"Weak password" : "Parolă slabă",
"So-so password" : "Parolă medie",
"Good password" : "Parolă bună",
"Strong password" : "Parolă puternică",
"Select a profile picture" : "Selectează o imagine de profil",
"Week starts on {fdow}" : "Săptămâna începe {fdow}",
"Groups" : "Grupuri",
"Edge" : "Edge",
"Firefox" : "Firefox",
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Google Chrome for Android",
"Device" : "Dispozitiv",
"Error while deleting the token" : "Eroare de ștergere token",
"App name" : "Numele aplicației",
"Create new app password" : "Crează o nouă parolă pentru aplicație",
"Username" : "Nume utilizator",
"Password" : "Parolă",
"Done" : "Realizat",
"Copied!" : "S-a copiat!",
"Copy" : "Copiază",
"Official" : "Oficial",
"Disable" : "Dezactivați",
"All" : "Toate ",
"Visit website" : "Viziteaza pagina web",
"Report a bug" : "Raportează un defect",
"User documentation" : "Documentație utilizator",
"Admin documentation" : "Documentație pentru administrare",
"Developer documentation" : "Documentație pentru dezvoltatori",
"No apps found for your version" : "Nu au fost găsite aplicații pentru versiunea ta",
"Enable" : "Activare",
"The app will be downloaded from the app store" : "Aplicația va fi descărcată din magazin",
"You do not have permissions to see the details of this user" : "Nu aveți permisiuni pentru a vedea detaliile acestui utilizator",
"New password" : "Noua parolă",
"{size} used" : "{size} folosită",
"Email" : "Email",
"Quota" : "Cotă",
"Language" : "Limba",
"Default language" : "Limba implicită",
"Unlimited" : "Nelimitată",
"Your apps" : "Aplicațiile tale",
"Disabled apps" : "Aplicații inactive",
"Updates" : "Actualizări",
"Show user backend" : "Arată administrare utilizator",
"Admins" : "Administratori",
"Everyone" : "Toți",
"Add group" : "Adaugă grup",
"SSL Root Certificates" : "Certificate SSL rădăcină",
"Common Name" : "Nume comun",
"Valid until" : "Valabil până la",
"Issued By" : "Emis de",
"Valid until %s" : "Valabil până la %s",
"Import root certificate" : "Importă certificat rădăcină",
"Administrator documentation" : "Documentație pentru administrare",
"Forum" : "Forum",
"None" : "Niciuna",
"Login" : "Autentificare",
"Plain" : "Plain",
"NT LAN Manager" : "NT LAN Manager",
"SSL/TLS" : "SSL/TLS",
"STARTTLS" : "STARTTLS",
"Email server" : "Server de email",
"Open documentation" : "Deschide documentația",
"Send mode" : "Modul de expediere",
"Encryption" : "Încriptare",
"From address" : "De la adresa",
"mail" : "poștă",
"Authentication method" : "Modul de autentificare",
"Authentication required" : "Autentificare necesară",
"Server address" : "Adresa server-ului",
"Port" : "Portul",
"Credentials" : "Detalii de autentificare",
"SMTP Username" : "Nume utilizator SMTP",
"SMTP Password" : "Parolă SMTP",
"Store credentials" : "Stochează datele de autentificare",
"Test email settings" : "Verifică setările de e-mail",
"Send email" : "Expediază mesajul",
"Security & setup warnings" : "Alerte de securitate & configurare",
"All checks passed." : "Toate verificările s-au terminat fără erori.",
"Version" : "Versiunea",
"Server-side encryption" : "Criptare la nivel de server",
"Enable server-side encryption" : "Activează criptarea pe server",
"Please read carefully before activating server-side encryption: " : "Citește cu atenție înainte să activezi criptarea pe server:",
"This is the final warning: Do you really want to enable encryption?" : "Aceasta este avertizarea finală: Chiar vrei să activezi criptarea?",
"Enable encryption" : "Activează criptarea",
"Select default encryption module:" : "Selectează modulul implicit de criptare:",
"Start migration" : "Pornește migrarea",
"Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată",
"Sharing" : "Partajare",
"Allow apps to use the Share API" : "Permite aplicațiilor să folosească API-ul de partajare",
"Allow users to share via link" : "Permite utilizatorilor să partajeze via link",
"Allow public uploads" : "Permite încărcări publice",
"Enforce password protection" : "Impune protecția prin parolă",
"Set default expiration date" : "Setează data implicită de expirare",
"Expire after " : "Expiră după",
"days" : "zile",
"Enforce expiration date" : "Impune data de expirare",
"Allow resharing" : "Permite repartajarea",
"Allow sharing with groups" : "Permite partajarea cu grupuri",
"Exclude groups from sharing" : "Exclude grupuri de la partajare",
"Administration" : "Administrare",
"Profile picture" : "Imagine de profil",
"Upload new" : "Încarcă una nouă",
"Select from Files" : "Selectează din fișiere",
"Remove image" : "Înlătură imagine",
"png or jpg, max. 20 MB" : "png sau jpg, max. 20 MB",
"Cancel" : "Anulare",
"Choose as profile picture" : "Alege ca imagine de profil",
"Details" : "Detalii",
"You are using <strong>%1$s</strong> of <strong>%2$s</strong> (<strong>%3$s %%</strong>)" : "Utilizezi <strong>%1$s</strong> din <strong>%2$s</strong> (<strong>%3$s %%</strong>)",
"Full name" : "Nume complet",
"Your email address" : "Adresa ta de email",
"No email address set" : "Fără adresă de email setată",
"Phone number" : "Număr telefon",
"Your phone number" : "Numărul tău de telefon",
"Address" : "Adresă",
"Your postal address" : "Adresă poștală",
"Website" : "Site web",
"Link https://…" : "Link https://…",
"Twitter" : "Twitter",
"Help translate" : "Ajută la traducere",
"Current password" : "Parola curentă",
"Change password" : "Schimbă parola",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Utilizezi <strong>%s</strong> din <strong>%s</strong> (<strong>%s %%</strong>)"
},"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"
}

View File

@ -10,6 +10,8 @@ OC.L10N.register(
"You removed {user} from group {group}" : "Вы удалили {user} из группы {group}",
"{actor} removed {user} from group {group}" : "{actor} удалил(а) {user} из группы {group}",
"An administrator removed you from group {group}" : "Администратор удалил вас из группы {group}",
"An administrator removed {user} from group {group}" : "Администратор исключил пользователя {user} из группы {group}",
"Your <strong>group memberships</strong> were modified" : "Ваше <strong>членство в группе</strong> было изменено",
"{actor} changed your password" : "{actor} сменил(а) ваш пароль",
"You changed your password" : "Вы изменили свой пароль",
"Your password was reset by an administrator" : "Ваш пароль был сброшен администратором",
@ -134,6 +136,8 @@ OC.L10N.register(
"Devices & sessions" : "Активные устройства и сеансы",
"Web, desktop and mobile clients currently logged in to your account." : "Веб, настольные и мобильные клиенты, которые в настоящий момент авторизованы вашей учётной записью.",
"Error while creating device token" : "Ошибка при создании токена для устройства",
"Error while updating device token scope" : "Ошибка при обновлении разрешений токена устройства",
"Error while updating device token name" : "Ошибка при обновлении имени токена устройства",
"Error while deleting the token" : "Ошибка при удалении токена устройства",
"App name" : "Название приложения",
"Create new app password" : "Создать пароль приложения",
@ -142,6 +146,7 @@ OC.L10N.register(
"Username" : "Имя пользователя",
"Password" : "Пароль",
"Done" : "Выполнено",
"Show QR code for mobile apps" : "Показать QR-код для мобильных приложений",
"Copied!" : "Скопировано!",
"Copy" : "Копировать",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Официальные приложения разработаны вместе с сообществом. Они предлагают базовую функциональность и готовы для использования.",
@ -169,7 +174,9 @@ OC.L10N.register(
"Enable all" : "Включить все",
"Download and enable" : "Скачать и включить",
"Enable" : "Включить",
"Enable untested app" : "Включить непроверенное приложение",
"The app will be downloaded from the app store" : "Приложение будет скачано из магазина приложений",
"This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Это приложение не отмечено как совместимое с вашей версией Nextcloud. Если вы продолжите, вы сможете установить это приложение, однако оно может работать не так, как ожидается.",
"You do not have permissions to see the details of this user" : "У вас нет прав на просмотр данных об этом пользователе",
"The backend does not support changing the display name" : "Используемый механизм не поддерживает смену отображаемого имени",
"New password" : "Новый пароль",
@ -359,6 +366,8 @@ OC.L10N.register(
"Not supported!" : "Не поддерживается!",
"Press ⌘-C to copy." : "Нажмите ⌘-C для копирования. ",
"Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.",
"Error while loading browser sessions and device tokens" : "Ошибка при загрузке сеансов работы браузера и токенов устройств"
"Error while loading browser sessions and device tokens" : "Ошибка при загрузке сеансов работы браузера и токенов устройств",
"Default quota :" : "Квота по умолчанию :",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Вы используете <strong>%s</strong> из <strong>%s</strong> (<strong>%s%%</strong>)"
},
"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

@ -8,6 +8,8 @@
"You removed {user} from group {group}" : "Вы удалили {user} из группы {group}",
"{actor} removed {user} from group {group}" : "{actor} удалил(а) {user} из группы {group}",
"An administrator removed you from group {group}" : "Администратор удалил вас из группы {group}",
"An administrator removed {user} from group {group}" : "Администратор исключил пользователя {user} из группы {group}",
"Your <strong>group memberships</strong> were modified" : "Ваше <strong>членство в группе</strong> было изменено",
"{actor} changed your password" : "{actor} сменил(а) ваш пароль",
"You changed your password" : "Вы изменили свой пароль",
"Your password was reset by an administrator" : "Ваш пароль был сброшен администратором",
@ -132,6 +134,8 @@
"Devices & sessions" : "Активные устройства и сеансы",
"Web, desktop and mobile clients currently logged in to your account." : "Веб, настольные и мобильные клиенты, которые в настоящий момент авторизованы вашей учётной записью.",
"Error while creating device token" : "Ошибка при создании токена для устройства",
"Error while updating device token scope" : "Ошибка при обновлении разрешений токена устройства",
"Error while updating device token name" : "Ошибка при обновлении имени токена устройства",
"Error while deleting the token" : "Ошибка при удалении токена устройства",
"App name" : "Название приложения",
"Create new app password" : "Создать пароль приложения",
@ -140,6 +144,7 @@
"Username" : "Имя пользователя",
"Password" : "Пароль",
"Done" : "Выполнено",
"Show QR code for mobile apps" : "Показать QR-код для мобильных приложений",
"Copied!" : "Скопировано!",
"Copy" : "Копировать",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Официальные приложения разработаны вместе с сообществом. Они предлагают базовую функциональность и готовы для использования.",
@ -167,7 +172,9 @@
"Enable all" : "Включить все",
"Download and enable" : "Скачать и включить",
"Enable" : "Включить",
"Enable untested app" : "Включить непроверенное приложение",
"The app will be downloaded from the app store" : "Приложение будет скачано из магазина приложений",
"This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Это приложение не отмечено как совместимое с вашей версией Nextcloud. Если вы продолжите, вы сможете установить это приложение, однако оно может работать не так, как ожидается.",
"You do not have permissions to see the details of this user" : "У вас нет прав на просмотр данных об этом пользователе",
"The backend does not support changing the display name" : "Используемый механизм не поддерживает смену отображаемого имени",
"New password" : "Новый пароль",
@ -357,6 +364,8 @@
"Not supported!" : "Не поддерживается!",
"Press ⌘-C to copy." : "Нажмите ⌘-C для копирования. ",
"Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.",
"Error while loading browser sessions and device tokens" : "Ошибка при загрузке сеансов работы браузера и токенов устройств"
"Error while loading browser sessions and device tokens" : "Ошибка при загрузке сеансов работы браузера и токенов устройств",
"Default quota :" : "Квота по умолчанию :",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Вы используете <strong>%s</strong> из <strong>%s</strong> (<strong>%s%%</strong>)"
},"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

@ -4,7 +4,8 @@ OC.L10N.register(
"{actor} changed your password" : "{actor} vaše geslo je spremenjeno",
"You changed your password" : "Spremenili ste vaše geslo",
"Security" : "Varnost",
"Couldn't remove app." : "Ni mogoče odstraniti programa.",
"Your <strong>password</strong> or <strong>email</strong> was modified" : "Spremenjeno je bilo <strong>geslo</strong> oziroma <strong>elektronski naslov</strong>",
"Couldn't remove app." : "Programa ni mogoče odstraniti.",
"Couldn't update app." : "Programa ni mogoče posodobiti.",
"Wrong password" : "Napačno geslo",
"Saved" : "Shranjeno",
@ -48,14 +49,60 @@ OC.L10N.register(
"Select a profile picture" : "Izbor slike profila",
"Week starts on {fdow}" : "Začetek tedna je {fdow}",
"Groups" : "Skupine",
"Group list is empty" : "Seznam skupin je prazen",
"Unable to retrieve the group list" : "Ni mogoče pridobiti seznama skupin",
"Afrikaans (Namibia)" : "Afrikanščina (Namibia)",
"Afrikaans (South Africa)" : "Afrikanščina (Južna Afrika)",
"Afrikaans" : "Afrikanščina",
"Akan (Ghana)" : "Akanščina (Gana)",
"Akan" : "Akanščina",
"Albanian (Albania)" : "Albanščina (Albanija)",
"Albanian" : "Albanščina",
"Amharic (Ethiopia)" : "Amharščina (Etiopija)",
"Amharic" : "Amharščina",
"Arabic (Algeria)" : "Arabščina (Alžirija)",
"Arabic (Bahrain)" : "Arabščina (Bahrain)",
"Arabic (Egypt)" : "Arabščina (Egipt)",
"Arabic (Iraq)" : "Arabščina (Irak)",
"Arabic (Jordan)" : "Arabščina (Jordanija)",
"Arabic (Kuwait)" : "Arabščina (Kuvajt)",
"Arabic (Lebanon)" : "Arabščina (Libanon)",
"Arabic (Libya)" : "Arabščina (Libija)",
"Arabic (Morocco)" : "Arabščina (Maroko)",
"Arabic (Oman)" : "Arabščina (Oman)",
"Arabic (Qatar)" : "Arabščina (Katar)",
"Arabic (Saudi Arabia)" : "Arabščina (Savdova arabija)",
"Arabic (Sudan)" : "Arabščina (Sudan)",
"Arabic (Syria)" : "Arabščina (Sirija)",
"Arabic (Tunisia)" : "Arabščina (Tunizija)",
"Arabic (United Arab Emirates)" : "Arabščina (Združeni Emirati)",
"Arabic (Yemen)" : "Arabščina (Jemen)",
"Arabic" : "Arabščina",
"Armenian (Armenia)" : "Armenščina (Armenija)",
"Armenian" : "Armenščina",
"Assamese (India)" : "Asamščina (Indija)",
"Assamese" : "Asamščina",
"Asu (Tanzania)" : "Asujščina (Tanzanija)",
"Asu" : "Asujščina",
"English" : "Angleščina",
"Esperanto" : "Esperanto",
"Estonian" : "Estonščina",
"Faroese" : "Farščina",
"Finnish" : "Finščina",
"French" : "Francoščina",
"Limit to groups" : "Omeji na skupine",
"Save changes" : "Shrani spremembe",
"Device settings" : "Nastavitve naprave",
"Internet Explorer" : "Internet Explorer",
"Edge" : "Microsoft Edge",
"Firefox" : "Mozilla Firefox",
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Google Chrome za Android",
"Allow filesystem access" : "Dovoli sistemski datotečni dostop",
"iPhone" : "iPhone",
"iPad" : "iPad",
"Allow filesystem access" : "Dovoli dostop do datotečnega sistema",
"Rename" : "Preimenuj",
"Revoke" : "Prekliči",
"This session" : "Ta seja",
"Device" : "Naprava",
@ -71,8 +118,10 @@ OC.L10N.register(
"Done" : "Končano",
"Copied!" : "Kopirano!",
"Copy" : "Kopiraj",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki na odprt način sodelujejo s skupnostjo. V kodo so vključene bistvene zmožnosti programa, uporaba je namenjena široki skupini uporabnikov.",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki sodelujejo s skupnostjo. Paketi vključujejo osrednje zmožnosti programa, uporaba pa je namenjena tudi končnim uporabnikom.",
"Official" : "Uradno",
"Update to {version}" : "Posodobi na različico {version}",
"Remove" : "Odstrani",
"Disable" : "Onemogoči",
"All" : "Vsi",
"No results" : "Ni zadetkov",
@ -85,13 +134,18 @@ OC.L10N.register(
"User documentation" : "Uporabniška dokumentacija",
"Admin documentation" : "Skrbniška dokumentacija",
"Developer documentation" : "Dokumentacija za razvijalce",
"No apps found for your version" : "Za to različico ni na voljo noben vstavek",
"Update to {update}" : "Posodobi na {update}",
"Results from other categories" : "Rezultati iskanja med drugimi kategorijami",
"No apps found for your version" : "Za to različico ni na voljo noben program",
"Disable all" : "Onemogoči vse",
"Enable all" : "Omogoči vse",
"Download and enable" : "Prejmi in omogoči",
"Enable" : "Omogoči",
"The app will be downloaded from the app store" : "Program bo prejet iz zbirke programov",
"New password" : "Novo geslo",
"Add user in group" : "Dodaj uporabnika v skupino",
"No language set" : "Jezik ni nastavljen",
"Never" : "Nikoli",
"Delete user" : "Izbriši uporabnika",
"Disable user" : "Onemogoči uporabnika",
"Enable user" : "Omogoči uporabnika",
@ -99,11 +153,25 @@ OC.L10N.register(
"Quota" : "Količinska omejitev",
"Language" : "Jezik",
"Last login" : "Zadnja prijava",
"Add a new user" : "Dodaj uporabnika",
"No users in here" : "Ni še vključenih uporabnikov",
"Unlimited" : "Neomejeno",
"Default quota" : "Privzeta količinska omejitev",
"All languages" : "Vsi jeziki",
"Your apps" : "Vsi programi",
"Active apps" : "Zagnani programi",
"Disabled apps" : "Onemogočeni programi",
"Updates" : "Posodobitve",
"App bundles" : "Paketi programov",
"New user" : "Nov uporabnik",
"Default quota:" : "Privzeta količinska omejitev :",
"Select default quota" : "Izbor količinske omejitve",
"Show Languages" : "Pokaži jezike",
"Show last login" : "Pokaži zadnjo prijavo",
"Show user backend" : "Pokaži ozadnji program",
"Remove group" : "Odstrani skupino",
"Admins" : "Skrbniki",
"Disabled users" : "Onemogočeni uporabniki",
"Everyone" : "Vsi",
"Add group" : "Dodaj skupino",
"SSL Root Certificates" : "Korenska potrdila SSL",
@ -135,34 +203,47 @@ OC.L10N.register(
"Test email settings" : "Preizkus nastavitev elektronske pošte",
"Send email" : "Pošlji elektronsko sporočilo",
"Security & setup warnings" : "Varnost in namestitvena opozorila",
"It's important for the security and performance of your instance that everything is configured correctly. To help you with that we are doing some automatic checks. Please see the linked documentation for more information." : "Zaradi varnosti in optimizacije delovanja je pomembno, da je sistem pravilno nastavljen. Za pomoč pri preverjanju se samodejno izvajajo nekateri preizkusi. Več podrobnosti o tem je zabeleženih v dokumentaciji. ",
"All checks passed." : "Vsa preverjanja so uspešno zaključena.",
"There are some errors regarding your setup." : "Med preverjanjem je bilo zaznanih je nekaj napak namestitve.",
"There are some warnings regarding your setup." : "Med preverjanjem je bilo javljenih nekaj opozoril.",
"Checking for system and security issues." : "Preverjanje sistemskih in varnostnih nastavitev.",
"Version" : "Različica",
"Two-Factor Authentication" : "Dvo-stopenjska overitev",
"Server-side encryption" : "Šifriranje na strežniku",
"Enable server-side encryption" : "Omogoči šifriranje na strežniku",
"Please read carefully before activating server-side encryption: " : "Pozorno preberite opombe, preden omogočite strežniško šifriranje:",
"Please read carefully before activating server-side encryption: " : "Pred omogočanjem strežniškega šifriranja pozorno preberite opombe:",
"Be aware that encryption always increases the file size." : " Upoštevajte, da šifriranje poveča velikost datoteke.",
"This is the final warning: Do you really want to enable encryption?" : "To je zadnje opozorilo. Ali res želite omogočiti šifriranje?",
"Enable encryption" : "Omogoči šifriranje",
"No encryption module loaded, please enable an encryption module in the app menu." : "Modul za šifriranje ni naložen. Pred nadaljevanjem je treba modul določiti v seznamu programov.",
"Select default encryption module:" : "Izbor privzetega modula za šifriranje:",
"Start migration" : "Začni selitev",
"Background jobs" : "Opravila v ozadju",
"Execute one task with each page loaded" : "Izvedi eno nalogo z vsako naloženo stranjo.",
"Sharing" : "Souporaba",
"As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "Skrbnik lahko prilagodi možnosti souporabe. Več podrobnosti je zapisanih v dokumentaciji.",
"Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe",
"Allow users to share via link" : "Uporabnikom dovoli omogočanje souporabe s povezavami",
"Allow public uploads" : "Dovoli javno pošiljanje datotek v oblak",
"Always ask for a password" : "Vedno zahtevaj za geslo",
"Enforce password protection" : "Vsili zaščito z geslom",
"Set default expiration date" : "Nastavitev privzetega datuma poteka",
"Expire after " : "Preteče po",
"days" : "dneh",
"Set default expiration date" : "Samodejno nastavi datuma poteka",
"Expire after " : "Povezava naj poteče po",
"days" : "dneh.",
"Enforce expiration date" : "Vsili datum preteka",
"Allow resharing" : "Dovoli nadaljnjo souporabo",
"Allow sharing with groups" : "Dovoli souporabo s skupinami",
"Restrict users to only share with users in their groups" : "Uporabnikom dovoli omogočanje souporabe le znotraj njihove skupine",
"Exclude groups from sharing" : "Izloči skupine iz souporabe",
"These groups will still be able to receive shares, but not to initiate them." : "Te skupine lahko sprejemajo mape v souporabo, ne morejo pa souporabe dovoliti",
"Exclude groups from sharing" : "Izloči izbrane skupine iz souporabe",
"These groups will still be able to receive shares, but not to initiate them." : "Te skupine lahko sprejemajo mape v souporabo, nimajo pa dovoljenja za omogočanje souporabe.",
"Allow username autocompletion in share dialog. If this is disabled the full username or email address needs to be entered." : "Dovoli samodejno dokončanje uporabniškega imena v pogovornem oknu souporabe. Z onemogočeno možnostjo je treba v celoti vpisati uporabniško ime oziroma geslo.",
"Show disclaimer text on the public link upload page. (Only shown when the file list is hidden.)" : "Pokaži besedilo izjave o omejitvi odgovornosti na javnih povezavah za pošiljanje (če je onemogočen prikaz seznama datotek).",
"This text will be shown on the public link upload page when the file list is hidden." : "Besedilo izjave o omejitvi odgovornosti, ki bo izpisano v oknu za pošiljanje, ko je možnost prikaza seznama datotek onemogočena.",
"Default share permissions" : "Privzeta dovoljenja souporabe",
"Personal" : "Osebno",
"Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Okolje razvija {communityopen}skupnost Nextcloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena pod pogijo dovoljenja {licenseopen}AGPL{linkclose}.",
"Administration" : "Skrbništvo",
"Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Okolje razvija {communityopen}skupnost Nextcloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena pod pogoji dovoljenja {licenseopen}AGPL{linkclose}.",
"Follow us on Twitter" : "Sledite nam na Twitter!",
"Follow us on Mastodon" : "Sledite nam na Mastodon",
"Profile picture" : "Slika profila",
@ -192,6 +273,18 @@ OC.L10N.register(
"Help translate" : "Sodelujte pri prevajanju",
"Locale" : "Jezikovne nastavitve",
"Current password" : "Trenutno geslo",
"Change password" : "Spremeni geslo"
"Change password" : "Spremeni geslo",
"Disconnect" : "Prekinjeni povezavo",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "Odjemalec iOS",
"Android Client" : "Odjemalec Android",
"Not supported!" : "Ni podprto!",
"Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.",
"Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.",
"Error while loading browser sessions and device tokens" : " Napaka med nalaganjem sej brskalnika in žetonov naprave",
"Default quota :" : "Privzeta količinska omejitev :",
"Follow us on Google+" : "Sledite nam na Google+",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Uporabljate <strong>%s</strong> od <strong>%s</strong> (<strong>%s %%</strong>)"
},
"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");

View File

@ -2,7 +2,8 @@
"{actor} changed your password" : "{actor} vaše geslo je spremenjeno",
"You changed your password" : "Spremenili ste vaše geslo",
"Security" : "Varnost",
"Couldn't remove app." : "Ni mogoče odstraniti programa.",
"Your <strong>password</strong> or <strong>email</strong> was modified" : "Spremenjeno je bilo <strong>geslo</strong> oziroma <strong>elektronski naslov</strong>",
"Couldn't remove app." : "Programa ni mogoče odstraniti.",
"Couldn't update app." : "Programa ni mogoče posodobiti.",
"Wrong password" : "Napačno geslo",
"Saved" : "Shranjeno",
@ -46,14 +47,60 @@
"Select a profile picture" : "Izbor slike profila",
"Week starts on {fdow}" : "Začetek tedna je {fdow}",
"Groups" : "Skupine",
"Group list is empty" : "Seznam skupin je prazen",
"Unable to retrieve the group list" : "Ni mogoče pridobiti seznama skupin",
"Afrikaans (Namibia)" : "Afrikanščina (Namibia)",
"Afrikaans (South Africa)" : "Afrikanščina (Južna Afrika)",
"Afrikaans" : "Afrikanščina",
"Akan (Ghana)" : "Akanščina (Gana)",
"Akan" : "Akanščina",
"Albanian (Albania)" : "Albanščina (Albanija)",
"Albanian" : "Albanščina",
"Amharic (Ethiopia)" : "Amharščina (Etiopija)",
"Amharic" : "Amharščina",
"Arabic (Algeria)" : "Arabščina (Alžirija)",
"Arabic (Bahrain)" : "Arabščina (Bahrain)",
"Arabic (Egypt)" : "Arabščina (Egipt)",
"Arabic (Iraq)" : "Arabščina (Irak)",
"Arabic (Jordan)" : "Arabščina (Jordanija)",
"Arabic (Kuwait)" : "Arabščina (Kuvajt)",
"Arabic (Lebanon)" : "Arabščina (Libanon)",
"Arabic (Libya)" : "Arabščina (Libija)",
"Arabic (Morocco)" : "Arabščina (Maroko)",
"Arabic (Oman)" : "Arabščina (Oman)",
"Arabic (Qatar)" : "Arabščina (Katar)",
"Arabic (Saudi Arabia)" : "Arabščina (Savdova arabija)",
"Arabic (Sudan)" : "Arabščina (Sudan)",
"Arabic (Syria)" : "Arabščina (Sirija)",
"Arabic (Tunisia)" : "Arabščina (Tunizija)",
"Arabic (United Arab Emirates)" : "Arabščina (Združeni Emirati)",
"Arabic (Yemen)" : "Arabščina (Jemen)",
"Arabic" : "Arabščina",
"Armenian (Armenia)" : "Armenščina (Armenija)",
"Armenian" : "Armenščina",
"Assamese (India)" : "Asamščina (Indija)",
"Assamese" : "Asamščina",
"Asu (Tanzania)" : "Asujščina (Tanzanija)",
"Asu" : "Asujščina",
"English" : "Angleščina",
"Esperanto" : "Esperanto",
"Estonian" : "Estonščina",
"Faroese" : "Farščina",
"Finnish" : "Finščina",
"French" : "Francoščina",
"Limit to groups" : "Omeji na skupine",
"Save changes" : "Shrani spremembe",
"Device settings" : "Nastavitve naprave",
"Internet Explorer" : "Internet Explorer",
"Edge" : "Microsoft Edge",
"Firefox" : "Mozilla Firefox",
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Google Chrome za Android",
"Allow filesystem access" : "Dovoli sistemski datotečni dostop",
"iPhone" : "iPhone",
"iPad" : "iPad",
"Allow filesystem access" : "Dovoli dostop do datotečnega sistema",
"Rename" : "Preimenuj",
"Revoke" : "Prekliči",
"This session" : "Ta seja",
"Device" : "Naprava",
@ -69,8 +116,10 @@
"Done" : "Končano",
"Copied!" : "Kopirano!",
"Copy" : "Kopiraj",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki na odprt način sodelujejo s skupnostjo. V kodo so vključene bistvene zmožnosti programa, uporaba je namenjena široki skupini uporabnikov.",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki sodelujejo s skupnostjo. Paketi vključujejo osrednje zmožnosti programa, uporaba pa je namenjena tudi končnim uporabnikom.",
"Official" : "Uradno",
"Update to {version}" : "Posodobi na različico {version}",
"Remove" : "Odstrani",
"Disable" : "Onemogoči",
"All" : "Vsi",
"No results" : "Ni zadetkov",
@ -83,13 +132,18 @@
"User documentation" : "Uporabniška dokumentacija",
"Admin documentation" : "Skrbniška dokumentacija",
"Developer documentation" : "Dokumentacija za razvijalce",
"No apps found for your version" : "Za to različico ni na voljo noben vstavek",
"Update to {update}" : "Posodobi na {update}",
"Results from other categories" : "Rezultati iskanja med drugimi kategorijami",
"No apps found for your version" : "Za to različico ni na voljo noben program",
"Disable all" : "Onemogoči vse",
"Enable all" : "Omogoči vse",
"Download and enable" : "Prejmi in omogoči",
"Enable" : "Omogoči",
"The app will be downloaded from the app store" : "Program bo prejet iz zbirke programov",
"New password" : "Novo geslo",
"Add user in group" : "Dodaj uporabnika v skupino",
"No language set" : "Jezik ni nastavljen",
"Never" : "Nikoli",
"Delete user" : "Izbriši uporabnika",
"Disable user" : "Onemogoči uporabnika",
"Enable user" : "Omogoči uporabnika",
@ -97,11 +151,25 @@
"Quota" : "Količinska omejitev",
"Language" : "Jezik",
"Last login" : "Zadnja prijava",
"Add a new user" : "Dodaj uporabnika",
"No users in here" : "Ni še vključenih uporabnikov",
"Unlimited" : "Neomejeno",
"Default quota" : "Privzeta količinska omejitev",
"All languages" : "Vsi jeziki",
"Your apps" : "Vsi programi",
"Active apps" : "Zagnani programi",
"Disabled apps" : "Onemogočeni programi",
"Updates" : "Posodobitve",
"App bundles" : "Paketi programov",
"New user" : "Nov uporabnik",
"Default quota:" : "Privzeta količinska omejitev :",
"Select default quota" : "Izbor količinske omejitve",
"Show Languages" : "Pokaži jezike",
"Show last login" : "Pokaži zadnjo prijavo",
"Show user backend" : "Pokaži ozadnji program",
"Remove group" : "Odstrani skupino",
"Admins" : "Skrbniki",
"Disabled users" : "Onemogočeni uporabniki",
"Everyone" : "Vsi",
"Add group" : "Dodaj skupino",
"SSL Root Certificates" : "Korenska potrdila SSL",
@ -133,34 +201,47 @@
"Test email settings" : "Preizkus nastavitev elektronske pošte",
"Send email" : "Pošlji elektronsko sporočilo",
"Security & setup warnings" : "Varnost in namestitvena opozorila",
"It's important for the security and performance of your instance that everything is configured correctly. To help you with that we are doing some automatic checks. Please see the linked documentation for more information." : "Zaradi varnosti in optimizacije delovanja je pomembno, da je sistem pravilno nastavljen. Za pomoč pri preverjanju se samodejno izvajajo nekateri preizkusi. Več podrobnosti o tem je zabeleženih v dokumentaciji. ",
"All checks passed." : "Vsa preverjanja so uspešno zaključena.",
"There are some errors regarding your setup." : "Med preverjanjem je bilo zaznanih je nekaj napak namestitve.",
"There are some warnings regarding your setup." : "Med preverjanjem je bilo javljenih nekaj opozoril.",
"Checking for system and security issues." : "Preverjanje sistemskih in varnostnih nastavitev.",
"Version" : "Različica",
"Two-Factor Authentication" : "Dvo-stopenjska overitev",
"Server-side encryption" : "Šifriranje na strežniku",
"Enable server-side encryption" : "Omogoči šifriranje na strežniku",
"Please read carefully before activating server-side encryption: " : "Pozorno preberite opombe, preden omogočite strežniško šifriranje:",
"Please read carefully before activating server-side encryption: " : "Pred omogočanjem strežniškega šifriranja pozorno preberite opombe:",
"Be aware that encryption always increases the file size." : " Upoštevajte, da šifriranje poveča velikost datoteke.",
"This is the final warning: Do you really want to enable encryption?" : "To je zadnje opozorilo. Ali res želite omogočiti šifriranje?",
"Enable encryption" : "Omogoči šifriranje",
"No encryption module loaded, please enable an encryption module in the app menu." : "Modul za šifriranje ni naložen. Pred nadaljevanjem je treba modul določiti v seznamu programov.",
"Select default encryption module:" : "Izbor privzetega modula za šifriranje:",
"Start migration" : "Začni selitev",
"Background jobs" : "Opravila v ozadju",
"Execute one task with each page loaded" : "Izvedi eno nalogo z vsako naloženo stranjo.",
"Sharing" : "Souporaba",
"As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "Skrbnik lahko prilagodi možnosti souporabe. Več podrobnosti je zapisanih v dokumentaciji.",
"Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe",
"Allow users to share via link" : "Uporabnikom dovoli omogočanje souporabe s povezavami",
"Allow public uploads" : "Dovoli javno pošiljanje datotek v oblak",
"Always ask for a password" : "Vedno zahtevaj za geslo",
"Enforce password protection" : "Vsili zaščito z geslom",
"Set default expiration date" : "Nastavitev privzetega datuma poteka",
"Expire after " : "Preteče po",
"days" : "dneh",
"Set default expiration date" : "Samodejno nastavi datuma poteka",
"Expire after " : "Povezava naj poteče po",
"days" : "dneh.",
"Enforce expiration date" : "Vsili datum preteka",
"Allow resharing" : "Dovoli nadaljnjo souporabo",
"Allow sharing with groups" : "Dovoli souporabo s skupinami",
"Restrict users to only share with users in their groups" : "Uporabnikom dovoli omogočanje souporabe le znotraj njihove skupine",
"Exclude groups from sharing" : "Izloči skupine iz souporabe",
"These groups will still be able to receive shares, but not to initiate them." : "Te skupine lahko sprejemajo mape v souporabo, ne morejo pa souporabe dovoliti",
"Exclude groups from sharing" : "Izloči izbrane skupine iz souporabe",
"These groups will still be able to receive shares, but not to initiate them." : "Te skupine lahko sprejemajo mape v souporabo, nimajo pa dovoljenja za omogočanje souporabe.",
"Allow username autocompletion in share dialog. If this is disabled the full username or email address needs to be entered." : "Dovoli samodejno dokončanje uporabniškega imena v pogovornem oknu souporabe. Z onemogočeno možnostjo je treba v celoti vpisati uporabniško ime oziroma geslo.",
"Show disclaimer text on the public link upload page. (Only shown when the file list is hidden.)" : "Pokaži besedilo izjave o omejitvi odgovornosti na javnih povezavah za pošiljanje (če je onemogočen prikaz seznama datotek).",
"This text will be shown on the public link upload page when the file list is hidden." : "Besedilo izjave o omejitvi odgovornosti, ki bo izpisano v oknu za pošiljanje, ko je možnost prikaza seznama datotek onemogočena.",
"Default share permissions" : "Privzeta dovoljenja souporabe",
"Personal" : "Osebno",
"Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Okolje razvija {communityopen}skupnost Nextcloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena pod pogijo dovoljenja {licenseopen}AGPL{linkclose}.",
"Administration" : "Skrbništvo",
"Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Okolje razvija {communityopen}skupnost Nextcloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena pod pogoji dovoljenja {licenseopen}AGPL{linkclose}.",
"Follow us on Twitter" : "Sledite nam na Twitter!",
"Follow us on Mastodon" : "Sledite nam na Mastodon",
"Profile picture" : "Slika profila",
@ -190,6 +271,18 @@
"Help translate" : "Sodelujte pri prevajanju",
"Locale" : "Jezikovne nastavitve",
"Current password" : "Trenutno geslo",
"Change password" : "Spremeni geslo"
"Change password" : "Spremeni geslo",
"Disconnect" : "Prekinjeni povezavo",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "Odjemalec iOS",
"Android Client" : "Odjemalec Android",
"Not supported!" : "Ni podprto!",
"Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.",
"Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.",
"Error while loading browser sessions and device tokens" : " Napaka med nalaganjem sej brskalnika in žetonov naprave",
"Default quota :" : "Privzeta količinska omejitev :",
"Follow us on Google+" : "Sledite nam na Google+",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Uporabljate <strong>%s</strong> od <strong>%s</strong> (<strong>%s %%</strong>)"
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
}