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

This commit is contained in:
Vitor Mattos 2019-04-26 10:36:37 -03:00
commit 09f7de0a39
80 changed files with 2273 additions and 512 deletions

View file

@ -0,0 +1,18 @@
OC.L10N.register(
"accessibility",
{
"High contrast theme" : "Kontraste altua gaia",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Kontraste altuko gaia nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.",
"Dark theme (beta)" : "Gai beltza (beta)",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Gai iluna begiak leuntzeko argitasun orokorra eta distira murriztuz. Garapenean dagoen aukera da, beraz jakinarazi aurkitzen dituzun arazoak.",
"Dyslexia font" : "Dislexia letra-tipoa",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic letra-tipo librea da dislexiak eragindako ohiko irakurketa akats batzuk leuntzeko diseinatua.",
"Accessibility" : "Erabilerraztasuna",
"Accessibility options for nextcloud" : "Erabilerraztasun aukerak nextcloudentzat",
"Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud-en erabilera errazteko hainbat aukera eskaintzen ditu.",
"Web Content Accessibility Guidelines" : "Web Edukiaren Erabilerraztasun Jarraibideak",
"our issue tracker" : "gure akats egunkaria",
"our design team" : "gure diseinatzaile taldea",
"Enable" : "Gaitu"
},
"nplurals=2; plural=(n != 1);");

View file

@ -0,0 +1,16 @@
{ "translations": {
"High contrast theme" : "Kontraste altua gaia",
"A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Kontraste altuko gaia nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.",
"Dark theme (beta)" : "Gai beltza (beta)",
"A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Gai iluna begiak leuntzeko argitasun orokorra eta distira murriztuz. Garapenean dagoen aukera da, beraz jakinarazi aurkitzen dituzun arazoak.",
"Dyslexia font" : "Dislexia letra-tipoa",
"OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic letra-tipo librea da dislexiak eragindako ohiko irakurketa akats batzuk leuntzeko diseinatua.",
"Accessibility" : "Erabilerraztasuna",
"Accessibility options for nextcloud" : "Erabilerraztasun aukerak nextcloudentzat",
"Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud-en erabilera errazteko hainbat aukera eskaintzen ditu.",
"Web Content Accessibility Guidelines" : "Web Edukiaren Erabilerraztasun Jarraibideak",
"our issue tracker" : "gure akats egunkaria",
"our design team" : "gure diseinatzaile taldea",
"Enable" : "Gaitu"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

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 の未読のコメント"],
"_1 new comment_::_{unread} new comments_" : ["の未読のコメント {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 の未読のコメント"],
"_1 new comment_::_{unread} new comments_" : ["の未読のコメント {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

@ -319,7 +319,7 @@ class SyncService {
public function syncInstance(\Closure $progressCallback = null) {
$systemAddressBook = $this->getLocalSystemAddressBook();
$this->userManager->callForAllUsers(function($user) use ($systemAddressBook, $progressCallback) {
$this->userManager->callForSeenUsers(function($user) use ($systemAddressBook, $progressCallback) {
$this->updateUser($user);
if (!is_null($progressCallback)) {
$progressCallback();

View file

@ -92,7 +92,7 @@ class SyncBirthdayCalendar extends Command {
$output->writeln("Start birthday calendar sync for all users ...");
$p = new ProgressBar($output);
$p->start();
$this->userManager->callForAllUsers(function($user) use ($p) {
$this->userManager->callForSeenUsers(function($user) use ($p) {
$p->advance();
$userId = $user->getUID();

View file

@ -129,13 +129,6 @@ class CustomPropertiesBackend implements BackendInterface {
return;
}
if ($node instanceof Directory
&& $propFind->getDepth() !== 0
) {
// note: pre-fetching only supported for depth <= 1
$this->loadChildrenProperties($node, $requestedProps);
}
$props = $this->getProperties($node, $requestedProps);
foreach ($props as $propName => $propValue) {
$propFind->set($propName, $propValue);

View file

@ -93,7 +93,7 @@ class BirthdayCalendarController extends Controller {
$this->config->setAppValue($this->appName, 'generateBirthdayCalendar', 'yes');
// add background job for each user
$this->userManager->callForAllUsers(function(IUser $user) {
$this->userManager->callForSeenUsers(function(IUser $user) {
$this->jobList->add(GenerateBirthdayCalendarBackgroundJob::class, [
'userId' => $user->getUID(),
]);

View file

@ -72,7 +72,7 @@ class RegenerateBirthdayCalendars implements IRepairStep {
}
$output->info('Adding background jobs to regenerate birthday calendar');
$this->userManager->callForAllUsers(function(IUser $user) {
$this->userManager->callForSeenUsers(function(IUser $user) {
$this->jobList->add(GenerateBirthdayCalendarBackgroundJob::class, [
'userId' => $user->getUID(),
'purgeBeforeGenerating' => true
@ -82,4 +82,4 @@ class RegenerateBirthdayCalendars implements IRepairStep {
// if all were done, no need to redo the repair during next upgrade
$this->config->setAppValue('dav', 'regeneratedBirthdayCalendarsForYearFix', 'yes');
}
}
}

View file

@ -226,10 +226,6 @@ class CustomPropertiesBackendTest extends \Test\TestCase {
->method('getPath')
->will($this->returnValue('/dummypath/test.txt'));
$rootNode->expects($this->once())
->method('getChildren')
->will($this->returnValue(array($nodeSub)));
$this->tree->expects($this->at(0))
->method('getNodeForPath')
->with('/dummypath')

View file

@ -78,7 +78,7 @@ class BirthdayCalendarControllerTest extends TestCase {
->with('dav', 'generateBirthdayCalendar', 'yes');
$this->userManager->expects($this->once())
->method('callForAllUsers')
->method('callForSeenUsers')
->will($this->returnCallback(function($closure) {
$user1 = $this->createMock(IUser::class);
$user1->method('getUID')->will($this->returnValue('uid1'));

View file

@ -76,7 +76,7 @@ class RegenerateBirthdayCalendarsTest extends TestCase {
->with('Adding background jobs to regenerate birthday calendar');
$this->userManager->expects($this->once())
->method('callForAllUsers')
->method('callForSeenUsers')
->will($this->returnCallback(function($closure) {
$user1 = $this->createMock(IUser::class);
$user1->method('getUID')->will($this->returnValue('uid1'));
@ -128,10 +128,10 @@ class RegenerateBirthdayCalendarsTest extends TestCase {
->with('Repair step already executed');
$this->userManager->expects($this->never())
->method('callForAllUsers');
->method('callForSeenUsers');
$this->migration->run($output);
}
}
}

View file

@ -31,7 +31,8 @@ OC.L10N.register(
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Default encryption module" : "デフォルトの暗号化モジュール",
"Default encryption module for server-side encryption" : "サーバー再度暗号化のデフォルト暗号化モジュール",
"Default encryption module for server-side encryption" : "サーバーサイド暗号化のデフォルト暗号化モジュール",
"In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "この暗号化モジュールを使うには管理者画面でサーバーサイド暗号化を有効にする\n\t\t必要があります。このモジュールを一旦有効にすると全てのファイルが\n\t\t意識することなく暗号化されます。AES 256bit の鍵で暗号化されます。\n\t\tこのモジュールは既存ファイルはそのままで、サーバーサイド暗号化を\n\t\t有効にした後の新しいファイルのみ暗号化します。 一旦暗号化したシステムを\n\t\t無効化して元の暗号化されていない状態に戻すことはできません。\n\t\tサーバーサイド暗号化するかどうか決める前にドキュメントをよく読んで\n\t\t全ての要件を確認してください。",
"Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "こんにちは\n\n管理者がサーバーサイド暗号化を有効にしました。'%s'というパスワードであなたのファイルが暗号化されました。\n\nWeb画面からログインして、個人設定画面の'基本暗号化モジュール' セクションにいき、暗号化パスワードの更新をお願いします。 '旧ログインパスワード'部分に上記パスワードを入力し、現在のログインパスワードで更新します。\n",
"The share will expire on %s." : "共有は %s で有効期限が切れます。",
"Cheers!" : "それでは!",

View file

@ -29,7 +29,8 @@
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Default encryption module" : "デフォルトの暗号化モジュール",
"Default encryption module for server-side encryption" : "サーバー再度暗号化のデフォルト暗号化モジュール",
"Default encryption module for server-side encryption" : "サーバーサイド暗号化のデフォルト暗号化モジュール",
"In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "この暗号化モジュールを使うには管理者画面でサーバーサイド暗号化を有効にする\n\t\t必要があります。このモジュールを一旦有効にすると全てのファイルが\n\t\t意識することなく暗号化されます。AES 256bit の鍵で暗号化されます。\n\t\tこのモジュールは既存ファイルはそのままで、サーバーサイド暗号化を\n\t\t有効にした後の新しいファイルのみ暗号化します。 一旦暗号化したシステムを\n\t\t無効化して元の暗号化されていない状態に戻すことはできません。\n\t\tサーバーサイド暗号化するかどうか決める前にドキュメントをよく読んで\n\t\t全ての要件を確認してください。",
"Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "こんにちは\n\n管理者がサーバーサイド暗号化を有効にしました。'%s'というパスワードであなたのファイルが暗号化されました。\n\nWeb画面からログインして、個人設定画面の'基本暗号化モジュール' セクションにいき、暗号化パスワードの更新をお願いします。 '旧ログインパスワード'部分に上記パスワードを入力し、現在のログインパスワードで更新します。\n",
"The share will expire on %s." : "共有は %s で有効期限が切れます。",
"Cheers!" : "それでは!",

View file

@ -19,10 +19,10 @@ OC.L10N.register(
"Federated Share request sent, you will receive an invitation. Check your notifications." : "S'ha enviat la sol·licitud de participació federada, rebreu una invitació. Comproveu les vostres notificacions.",
"Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "No sha pogut establir una acció compartida federada, sembla que el servidor amb el qual sha federat és massa antic (Nextcloud <= 9).",
"It is not allowed to send federated group shares from this server." : "No es permet enviar de grups de compartits federats des d'aquest servidor.",
"Sharing %1$s failed, because this item is already shared with %2$s" : "Ha fallat la compartició %1$s, perquè aquest element ja està compartit amb %2$s",
"Sharing %1$s failed, because this item is already shared with %2$s" : "No s'ha pogut compartir %1$s, perquè aquest element ja està compartit amb %2$s",
"Not allowed to create a federated share with the same user" : "No està permés crear una compartició federada amb el mateix usuari",
"File is already shared with %s" : "El fitxer ja està compartit amb %s",
"Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %1$s, no s'ha pogut trobar %2$s, el servidor no es pot accedir actualment o fa servir un certificat auto-signat.",
"Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %1$s, no s'ha pogut trobar %2$s, potser el servidor és inaccessible actualment o fa servir un certificat auto-signat.",
"Could not find share" : "No s'ha pogut trobar la compartició",
"You received \"%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Heu rebut \"/%3$s\" com una compartició remota des de %1$s (de part de %2$s)",
"You received {share} as a remote share from {user} (on behalf of {behalf})" : "Heu rebut {share} com un recompte remot de {user} (en nom de {nom})",
@ -51,7 +51,7 @@ OC.L10N.register(
"Add to your website" : "Afegiu a la vostra pàgina web",
"Share with me via Nextcloud" : "Comparteix amb mi mitjançant Nextcloud",
"HTML Code:" : "Codi HTML:",
"Sharing %s failed, because this item is already shared with %s" : "Ha fallat en compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %s, no s'ha pogut trobar%s, el servidor no es pot accedir actualment o fa servir un certificat auto-signat."
"Sharing %s failed, because this item is already shared with %s" : "No s'ha pogut compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %s, no s'ha pogut trobar%s, potser el servidor és inaccessible actualment o fa servir un certificat auto-signat."
},
"nplurals=2; plural=(n != 1);");

View file

@ -17,10 +17,10 @@
"Federated Share request sent, you will receive an invitation. Check your notifications." : "S'ha enviat la sol·licitud de participació federada, rebreu una invitació. Comproveu les vostres notificacions.",
"Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "No sha pogut establir una acció compartida federada, sembla que el servidor amb el qual sha federat és massa antic (Nextcloud <= 9).",
"It is not allowed to send federated group shares from this server." : "No es permet enviar de grups de compartits federats des d'aquest servidor.",
"Sharing %1$s failed, because this item is already shared with %2$s" : "Ha fallat la compartició %1$s, perquè aquest element ja està compartit amb %2$s",
"Sharing %1$s failed, because this item is already shared with %2$s" : "No s'ha pogut compartir %1$s, perquè aquest element ja està compartit amb %2$s",
"Not allowed to create a federated share with the same user" : "No està permés crear una compartició federada amb el mateix usuari",
"File is already shared with %s" : "El fitxer ja està compartit amb %s",
"Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %1$s, no s'ha pogut trobar %2$s, el servidor no es pot accedir actualment o fa servir un certificat auto-signat.",
"Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %1$s, no s'ha pogut trobar %2$s, potser el servidor és inaccessible actualment o fa servir un certificat auto-signat.",
"Could not find share" : "No s'ha pogut trobar la compartició",
"You received \"%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Heu rebut \"/%3$s\" com una compartició remota des de %1$s (de part de %2$s)",
"You received {share} as a remote share from {user} (on behalf of {behalf})" : "Heu rebut {share} com un recompte remot de {user} (en nom de {nom})",
@ -49,7 +49,7 @@
"Add to your website" : "Afegiu a la vostra pàgina web",
"Share with me via Nextcloud" : "Comparteix amb mi mitjançant Nextcloud",
"HTML Code:" : "Codi HTML:",
"Sharing %s failed, because this item is already shared with %s" : "Ha fallat en compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %s, no s'ha pogut trobar%s, el servidor no es pot accedir actualment o fa servir un certificat auto-signat."
"Sharing %s failed, because this item is already shared with %s" : "No s'ha pogut compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Ha fallat la compartició %s, no s'ha pogut trobar%s, potser el servidor és inaccessible actualment o fa servir un certificat auto-signat."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -262,11 +262,8 @@ table th.column-last, table td.column-last {
}
/* Multiselect bar */
#filestable.multiselect {
top: 51px;
}
table.multiselect thead {
position: fixed;
@include position('sticky');
top: 94px;
z-index: 55;
-moz-box-sizing: border-box;
@ -275,7 +272,7 @@ table.multiselect thead {
}
table.multiselect thead th {
background-color: var(--color-main-background);
background-color: var(--color-main-background-translucent);
font-weight: bold;
border-bottom: 0;
}
@ -783,7 +780,7 @@ table.dragshadow td.size {
tr {
display: block;
border-bottom: 1px solid var(--color-border);
background-color: var(--color-main-background);
background-color: var(--color-main-background-translucent);
th {
width: auto;
border: none;

View file

@ -14,12 +14,15 @@ OC.L10N.register(
"Home" : "Hjem",
"Close" : "Luk",
"Could not create folder \"{dir}\"" : "Kunne ikke oprette mappen \"{dir}\"",
"This will stop your current uploads." : "Dette vil stoppe din nuværende uploads.",
"Upload cancelled." : "Upload afbrudt.",
"Processing files …" : "Behandler filer...",
"…" : "...",
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes.",
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage",
"Target folder \"{dir}\" does not exist any more" : "Destinations mappen \"{dir}\" eksistere ikke længere",
"Not enough free space" : "Ikke nok fri plads",
"An unknown error has occurred" : "En ukendt fejl er opstået",
"Uploading …" : "Uploader ...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} af {totalSize} ({bitrate})",
"Target folder does not exist any more" : "Destinations mappen findes ikke længere",

View file

@ -12,12 +12,15 @@
"Home" : "Hjem",
"Close" : "Luk",
"Could not create folder \"{dir}\"" : "Kunne ikke oprette mappen \"{dir}\"",
"This will stop your current uploads." : "Dette vil stoppe din nuværende uploads.",
"Upload cancelled." : "Upload afbrudt.",
"Processing files …" : "Behandler filer...",
"…" : "...",
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes.",
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage",
"Target folder \"{dir}\" does not exist any more" : "Destinations mappen \"{dir}\" eksistere ikke længere",
"Not enough free space" : "Ikke nok fri plads",
"An unknown error has occurred" : "En ukendt fejl er opstået",
"Uploading …" : "Uploader ...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} af {totalSize} ({bitrate})",
"Target folder does not exist any more" : "Destinations mappen findes ikke længere",

View file

@ -8,19 +8,28 @@ OC.L10N.register(
"Recent" : "Reciente",
"Favorites" : "Favoritos",
"File could not be found" : "No fue posible encontrar el archivo",
"Move or copy" : "Mover o Copiar",
"Download" : "Descargar",
"Delete" : "Borrar",
"Home" : "Inicio",
"Close" : "Cerrar",
"Could not create folder \"{dir}\"" : "No fue posible crear la carpeta \"{dir}\"",
"Upload cancelled." : "Carga cancelada.",
"Processing files …" : "Procesando archivos...",
"…" : "...",
"Unable to upload {filename} as it is a directory or has 0 bytes" : "No fue posible cargar {filename} ya que es una carpeta o tiene un tamaño de 0 bytes",
"Not enough free space, you are uploading {size1} but only {size2} is left" : "No cuenta con suficiente espacio disponible, usted se encuentra cargando {size1} pero sólo cuenta con {size2} disponible",
"Target folder \"{dir}\" does not exist any more" : "La carpeta destino \"{dir}\" ya no existe",
"Not enough free space" : "No cuenta con suficiente espacio disponible",
"An unknown error has occurred" : "Se presentó un error desconocido",
"Uploading …" : "Actualizando...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})",
"Target folder does not exist any more" : "La carpeta destino ya no existe",
"Actions" : "Acciones",
"Rename" : "Renombrar",
"Copy" : "Copiar",
"Choose target folder" : "Elegir carpeta destino",
"Open" : "Abrir",
"Disconnect storage" : "Desconectar almacenamiento",
"Unshare" : "Dejar de compartir",
"Could not load info for file \"{file}\"" : "No fue posible cargar información para el archivo \"{file}\"",
@ -33,6 +42,8 @@ OC.L10N.register(
"This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, favor de verficiar las bitácoras o contacte al administrador",
"Could not move \"{file}\", target exists" : "No fue posible mover \"{file}\", el destino ya existe",
"Could not move \"{file}\"" : "No fue posible mover \"{file}\"",
"copy" : "copiar",
"Could not copy \"{file}\"" : "No es posible copiar \"{file}\"",
"{newName} already exists" : "{newName} ya existe",
"Could not rename \"{fileName}\", it does not exist any more" : "No fue posible renombrar \"{fileName}\", ya no existe",
"The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "El nombre \"{targetName}\" ya está en uso en la carpeta \"{dir}\". Favor de elegir un nombre diferete. ",
@ -69,6 +80,9 @@ OC.L10N.register(
"Favorite" : "Favorito",
"New folder" : "Carpeta nueva",
"Upload file" : "Cargar archivo",
"Not favorited" : "No es favorito",
"Remove from favorites" : "Eliminado de favoritos",
"Add to favorites" : "Agregar a favoritos",
"An error occurred while trying to update the tags" : "Se presentó un error al intentar actualizar la etiqueta",
"Added to favorites" : "Agregado a los favoritos",
"Removed from favorites" : "Eliminado de los favoritos",
@ -83,7 +97,9 @@ OC.L10N.register(
"Moved by {user}" : "Movido por {user}",
"\"remote user\"" : "\"usuario remoto\"",
"You created {file}" : "Usted creó {file}",
"You created an encrypted file in {file}" : "Se creó el archivo encriptado {file}",
"{user} created {file}" : "{user} creó {file}",
"{user} created an encrypted file in {file}" : "{user} creó el archivo encriptado {file}",
"{file} was created in a public folder" : "{file} fue creado en una carpeta pública",
"You changed {file}" : "Usted cambió {file}",
"{user} changed {file}" : "{user} cambió {file}",
@ -101,11 +117,13 @@ OC.L10N.register(
"Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Limite las notificación de la creación y cambios a sus <strong>archivos favoritos</strong> <em>(sólo flujo)</em>",
"Unlimited" : "Ilimitado",
"Upload (max. %s)" : "Cargar (max. %s)",
"File Management" : "Administración de Archivos",
"%s of %s used" : "%s de %s usado",
"%s used" : "%s usado",
"Settings" : "Configuraciones ",
"Show hidden files" : "Mostrar archivos ocultos",
"WebDAV" : "WebDAV",
"Toggle grid view" : "Vista de cuadrícula",
"No files in here" : "No hay archivos aquí",
"Upload some content or sync with your devices!" : "¡Cargue algún contenido o sincronice con sus dispositivos!",
"No entries found in this folder" : "No se encontraron elementos en esta carpeta",
@ -127,6 +145,7 @@ OC.L10N.register(
"max. possible: " : "max. posible:",
"Save" : "Guardar",
"With PHP-FPM it might take 5 minutes for changes to be applied." : "Con PHP-FPM podría tomar 5 minutos para que los cambios apliquen. ",
"Missing permissions to edit from here." : "Faltan privilegios para editar desde aquí. "
"Missing permissions to edit from here." : "Faltan privilegios para editar desde aquí. ",
"Cancel upload" : "Cancelar subida"
},
"nplurals=2; plural=(n != 1);");

View file

@ -6,19 +6,28 @@
"Recent" : "Reciente",
"Favorites" : "Favoritos",
"File could not be found" : "No fue posible encontrar el archivo",
"Move or copy" : "Mover o Copiar",
"Download" : "Descargar",
"Delete" : "Borrar",
"Home" : "Inicio",
"Close" : "Cerrar",
"Could not create folder \"{dir}\"" : "No fue posible crear la carpeta \"{dir}\"",
"Upload cancelled." : "Carga cancelada.",
"Processing files …" : "Procesando archivos...",
"…" : "...",
"Unable to upload {filename} as it is a directory or has 0 bytes" : "No fue posible cargar {filename} ya que es una carpeta o tiene un tamaño de 0 bytes",
"Not enough free space, you are uploading {size1} but only {size2} is left" : "No cuenta con suficiente espacio disponible, usted se encuentra cargando {size1} pero sólo cuenta con {size2} disponible",
"Target folder \"{dir}\" does not exist any more" : "La carpeta destino \"{dir}\" ya no existe",
"Not enough free space" : "No cuenta con suficiente espacio disponible",
"An unknown error has occurred" : "Se presentó un error desconocido",
"Uploading …" : "Actualizando...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})",
"Target folder does not exist any more" : "La carpeta destino ya no existe",
"Actions" : "Acciones",
"Rename" : "Renombrar",
"Copy" : "Copiar",
"Choose target folder" : "Elegir carpeta destino",
"Open" : "Abrir",
"Disconnect storage" : "Desconectar almacenamiento",
"Unshare" : "Dejar de compartir",
"Could not load info for file \"{file}\"" : "No fue posible cargar información para el archivo \"{file}\"",
@ -31,6 +40,8 @@
"This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, favor de verficiar las bitácoras o contacte al administrador",
"Could not move \"{file}\", target exists" : "No fue posible mover \"{file}\", el destino ya existe",
"Could not move \"{file}\"" : "No fue posible mover \"{file}\"",
"copy" : "copiar",
"Could not copy \"{file}\"" : "No es posible copiar \"{file}\"",
"{newName} already exists" : "{newName} ya existe",
"Could not rename \"{fileName}\", it does not exist any more" : "No fue posible renombrar \"{fileName}\", ya no existe",
"The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "El nombre \"{targetName}\" ya está en uso en la carpeta \"{dir}\". Favor de elegir un nombre diferete. ",
@ -67,6 +78,9 @@
"Favorite" : "Favorito",
"New folder" : "Carpeta nueva",
"Upload file" : "Cargar archivo",
"Not favorited" : "No es favorito",
"Remove from favorites" : "Eliminado de favoritos",
"Add to favorites" : "Agregar a favoritos",
"An error occurred while trying to update the tags" : "Se presentó un error al intentar actualizar la etiqueta",
"Added to favorites" : "Agregado a los favoritos",
"Removed from favorites" : "Eliminado de los favoritos",
@ -81,7 +95,9 @@
"Moved by {user}" : "Movido por {user}",
"\"remote user\"" : "\"usuario remoto\"",
"You created {file}" : "Usted creó {file}",
"You created an encrypted file in {file}" : "Se creó el archivo encriptado {file}",
"{user} created {file}" : "{user} creó {file}",
"{user} created an encrypted file in {file}" : "{user} creó el archivo encriptado {file}",
"{file} was created in a public folder" : "{file} fue creado en una carpeta pública",
"You changed {file}" : "Usted cambió {file}",
"{user} changed {file}" : "{user} cambió {file}",
@ -99,11 +115,13 @@
"Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Limite las notificación de la creación y cambios a sus <strong>archivos favoritos</strong> <em>(sólo flujo)</em>",
"Unlimited" : "Ilimitado",
"Upload (max. %s)" : "Cargar (max. %s)",
"File Management" : "Administración de Archivos",
"%s of %s used" : "%s de %s usado",
"%s used" : "%s usado",
"Settings" : "Configuraciones ",
"Show hidden files" : "Mostrar archivos ocultos",
"WebDAV" : "WebDAV",
"Toggle grid view" : "Vista de cuadrícula",
"No files in here" : "No hay archivos aquí",
"Upload some content or sync with your devices!" : "¡Cargue algún contenido o sincronice con sus dispositivos!",
"No entries found in this folder" : "No se encontraron elementos en esta carpeta",
@ -125,6 +143,7 @@
"max. possible: " : "max. posible:",
"Save" : "Guardar",
"With PHP-FPM it might take 5 minutes for changes to be applied." : "Con PHP-FPM podría tomar 5 minutos para que los cambios apliquen. ",
"Missing permissions to edit from here." : "Faltan privilegios para editar desde aquí. "
"Missing permissions to edit from here." : "Faltan privilegios para editar desde aquí. ",
"Cancel upload" : "Cancelar subida"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -62,7 +62,7 @@ OC.L10N.register(
"App secret" : "アプリシークレット",
"OAuth2" : "OAuth2",
"Client ID" : "クライアントID",
"Client secret" : "クライアント秘密キー",
"Client secret" : "クライアント秘密",
"OpenStack v2" : "OpenStack v2",
"Tenant name" : "テナント名",
"Identity endpoint URL" : "認証エンドポイントURL",

View file

@ -60,7 +60,7 @@
"App secret" : "アプリシークレット",
"OAuth2" : "OAuth2",
"Client ID" : "クライアントID",
"Client secret" : "クライアント秘密キー",
"Client secret" : "クライアント秘密",
"OpenStack v2" : "OpenStack v2",
"Tenant name" : "テナント名",
"Identity endpoint URL" : "認証エンドポイントURL",

View file

@ -134,6 +134,6 @@ OC.L10N.register(
"Uploading files…" : "S'estan carregant fitxers...",
"Uploaded files:" : "Fitxers carregats:",
"By uploading files, you agree to the %1$sterms of service%2$s." : "Si carregueu els fitxers accepteu les %1$scondicions del servei%2$s.",
"Sharing %s failed because the back end does not allow shares from type %s" : "S'ha produït un error en compartir %s perquè la part posterior no permet que les accions del tipus%s"
"Sharing %s failed because the back end does not allow shares from type %s" : "No s'ha pogut compartir %s perquè l'aplicació de fons no permet comparticions del tipus%s"
},
"nplurals=2; plural=(n != 1);");

View file

@ -132,6 +132,6 @@
"Uploading files…" : "S'estan carregant fitxers...",
"Uploaded files:" : "Fitxers carregats:",
"By uploading files, you agree to the %1$sterms of service%2$s." : "Si carregueu els fitxers accepteu les %1$scondicions del servei%2$s.",
"Sharing %s failed because the back end does not allow shares from type %s" : "S'ha produït un error en compartir %s perquè la part posterior no permet que les accions del tipus%s"
"Sharing %s failed because the back end does not allow shares from type %s" : "No s'ha pogut compartir %s perquè l'aplicació de fons no permet comparticions del tipus%s"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -98,7 +98,7 @@ OC.L10N.register(
"Please specify a valid circle" : "Veuillez entrer un cercle valide",
"Sharing %s failed because the back end does not support room shares" : "Le partage %s a échoué parce que l'arrière-plan ne prend pas en charge les partages.",
"Unknown share type" : "Type de partage inconnu",
"Not a directory" : "N'est pas un répertoire",
"Not a directory" : "N'est pas un dossier",
"Could not lock path" : "Impossible de verrouiller le chemin",
"Wrong or no update parameter given" : "Mauvais ou aucun paramètre donné ",
"Can't change permissions for public share links" : "Impossible de changer les permissions pour les liens de partage public",

View file

@ -96,7 +96,7 @@
"Please specify a valid circle" : "Veuillez entrer un cercle valide",
"Sharing %s failed because the back end does not support room shares" : "Le partage %s a échoué parce que l'arrière-plan ne prend pas en charge les partages.",
"Unknown share type" : "Type de partage inconnu",
"Not a directory" : "N'est pas un répertoire",
"Not a directory" : "N'est pas un dossier",
"Could not lock path" : "Impossible de verrouiller le chemin",
"Wrong or no update parameter given" : "Mauvais ou aucun paramètre donné ",
"Can't change permissions for public share links" : "Impossible de changer les permissions pour les liens de partage public",

View file

@ -8,7 +8,7 @@ OC.L10N.register(
"Shares" : "Recursos compartidos",
"Nothing shared with you yet" : "Aínda non hai nada compartido con vostede.",
"Files and folders others share with you will show up here" : "Os ficheiros e cartafoles que outros compartan con vostede amosaranse aquí",
"Nothing shared yet" : "Aínda non hay nada compartido",
"Nothing shared yet" : "Aínda non hai nada compartido",
"Files and folders you share will show up here" : "Os ficheiros e cartafoles que comparta amosaranse aquí",
"No shared links" : "Non hai ligazóns compartidas",
"Files and folders you share by link will show up here" : "Os ficheiros e cartafoles que comparta por ligazón amosaranse aquí",

View file

@ -6,7 +6,7 @@
"Shares" : "Recursos compartidos",
"Nothing shared with you yet" : "Aínda non hai nada compartido con vostede.",
"Files and folders others share with you will show up here" : "Os ficheiros e cartafoles que outros compartan con vostede amosaranse aquí",
"Nothing shared yet" : "Aínda non hay nada compartido",
"Nothing shared yet" : "Aínda non hai nada compartido",
"Files and folders you share will show up here" : "Os ficheiros e cartafoles que comparta amosaranse aquí",
"No shared links" : "Non hai ligazóns compartidas",
"Files and folders you share by link will show up here" : "Os ficheiros e cartafoles que comparta por ligazón amosaranse aquí",

View file

@ -1,16 +1,20 @@
OC.L10N.register(
"oauth2",
{
"Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "El teu URL de redirecció ha de ser una adreça URL completa per exemple: https://elteudomini.com/cami",
"Your client is not authorized to connect. Please inform the administrator of your client." : "El vostre client no està autoritzat a connectar-se. Informeu a ladministrador del vostre client.",
"Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "El vostre URL redirigit ha de ser un URL complet, per exemple: https://elvostredomini.com/path",
"OAuth 2.0" : "OAuth 2.0",
"Allows OAuth2 compatible authentication from other web applications." : "Permet autenticació compatible amb OAuth2 des d'altres aplicacions web.",
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Lapp OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.",
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Laplicació OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.",
"OAuth 2.0 clients" : "Clients OAuth 2.0",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet als serveis externs sol·licitar accés a {instanceName}.",
"Name" : "Nom",
"Redirection URI" : "URl redirecció",
"Redirection URI" : "Redirigeix a l'URI",
"Client Identifier" : "Identificador de client",
"Secret" : "Secret",
"Add client" : "Afegeix un client",
"Add" : "Afegeix"
"Add" : "Afegeix",
"Show client secret" : "Mostra el secret del client",
"Delete" : "Suprimeix"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,14 +1,18 @@
{ "translations": {
"Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "El teu URL de redirecció ha de ser una adreça URL completa per exemple: https://elteudomini.com/cami",
"Your client is not authorized to connect. Please inform the administrator of your client." : "El vostre client no està autoritzat a connectar-se. Informeu a ladministrador del vostre client.",
"Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "El vostre URL redirigit ha de ser un URL complet, per exemple: https://elvostredomini.com/path",
"OAuth 2.0" : "OAuth 2.0",
"Allows OAuth2 compatible authentication from other web applications." : "Permet autenticació compatible amb OAuth2 des d'altres aplicacions web.",
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Lapp OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.",
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Laplicació OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.",
"OAuth 2.0 clients" : "Clients OAuth 2.0",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet als serveis externs sol·licitar accés a {instanceName}.",
"Name" : "Nom",
"Redirection URI" : "URl redirecció",
"Redirection URI" : "Redirigeix a l'URI",
"Client Identifier" : "Identificador de client",
"Secret" : "Secret",
"Add client" : "Afegeix un client",
"Add" : "Afegeix"
"Add" : "Afegeix",
"Show client secret" : "Mostra el secret del client",
"Delete" : "Suprimeix"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,9 +1,11 @@
OC.L10N.register(
"oauth2",
{
"Your client is not authorized to connect. Please inform the administrator of your client." : "このクライアント(認証依頼元)は認証されていないので接続できません。クライアント側の管理者に問い合わせてください。",
"Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "リダイレクトURLは、完全なURL例えばhttps://yourdomain.com/pathである必要があります。",
"OAuth 2.0" : "OAuth 2.0",
"Allows OAuth2 compatible authentication from other web applications." : "他のWebアプリケーションからのOAuth2互換認証を許可します。",
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2アプリは、他のWebサービスからOAuth2互換の認証に接続し、管理者が認証の流れを設定できるようにするものです。",
"OAuth 2.0 clients" : "OAuth 2.0クライアント",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0により {instanceName} へのアクセス要求を外部サービスに許可します。",
"Name" : "名前",
@ -11,6 +13,8 @@ OC.L10N.register(
"Client Identifier" : "クライアントID",
"Secret" : "シークレットキー",
"Add client" : "クライアントの追加",
"Add" : "追加"
"Add" : "追加",
"Show client secret" : "クライアントシークレットキーを表示",
"Delete" : "削除"
},
"nplurals=1; plural=0;");

View file

@ -1,7 +1,9 @@
{ "translations": {
"Your client is not authorized to connect. Please inform the administrator of your client." : "このクライアント(認証依頼元)は認証されていないので接続できません。クライアント側の管理者に問い合わせてください。",
"Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "リダイレクトURLは、完全なURL例えばhttps://yourdomain.com/pathである必要があります。",
"OAuth 2.0" : "OAuth 2.0",
"Allows OAuth2 compatible authentication from other web applications." : "他のWebアプリケーションからのOAuth2互換認証を許可します。",
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2アプリは、他のWebサービスからOAuth2互換の認証に接続し、管理者が認証の流れを設定できるようにするものです。",
"OAuth 2.0 clients" : "OAuth 2.0クライアント",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0により {instanceName} へのアクセス要求を外部サービスに許可します。",
"Name" : "名前",
@ -9,6 +11,8 @@
"Client Identifier" : "クライアントID",
"Secret" : "シークレットキー",
"Add client" : "クライアントの追加",
"Add" : "追加"
"Add" : "追加",
"Show client secret" : "クライアントシークレットキーを表示",
"Delete" : "削除"
},"pluralForm" :"nplurals=1; plural=0;"
}

View file

@ -45,9 +45,9 @@ class AccessToken extends Entity {
public function __construct() {
$this->addType('id', 'int');
$this->addType('token_id', 'int');
$this->addType('client_id', 'int');
$this->addType('hashed_code', 'string');
$this->addType('encrypted_token', 'string');
$this->addType('tokenId', 'int');
$this->addType('clientId', 'int');
$this->addType('hashedCode', 'string');
$this->addType('encryptedToken', 'string');
}
}

View file

@ -26,7 +26,7 @@ OC.L10N.register(
"Password to access {file} was sent to you" : "Envióuselle a vostede un correo para acceder a {file}",
"Sharing %1$s failed, this item is already shared with %2$s" : "Produciuse un fallo na compartición de %1$s, este elemento xa está compartido con %2$s",
"We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Non é posíbel enviarlle o contrasinal xerado automaticamente. Estabeleza un enderezo de correo correcto nos seus axustes persoais e ténteo de novo.",
"Failed to send share by email" : "Fallou o envío do recurso compartido por correo",
"Failed to send share by email" : "Produciuse un fallo ao enviar o recurso compartido por correo",
"%1$s shared »%2$s« with you" : "%1$s compartiu «%2$s» con vostede",
"%1$s shared »%2$s« with you." : "%1$s compartiu «%2$s» con vostede.",
"Click the button below to open it." : "Prema no botón de embaixo para abrilo.",

View file

@ -24,7 +24,7 @@
"Password to access {file} was sent to you" : "Envióuselle a vostede un correo para acceder a {file}",
"Sharing %1$s failed, this item is already shared with %2$s" : "Produciuse un fallo na compartición de %1$s, este elemento xa está compartido con %2$s",
"We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Non é posíbel enviarlle o contrasinal xerado automaticamente. Estabeleza un enderezo de correo correcto nos seus axustes persoais e ténteo de novo.",
"Failed to send share by email" : "Fallou o envío do recurso compartido por correo",
"Failed to send share by email" : "Produciuse un fallo ao enviar o recurso compartido por correo",
"%1$s shared »%2$s« with you" : "%1$s compartiu «%2$s» con vostede",
"%1$s shared »%2$s« with you." : "%1$s compartiu «%2$s» con vostede.",
"Click the button below to open it." : "Prema no botón de embaixo para abrilo.",

View file

@ -5,6 +5,10 @@ OC.L10N.register(
"Shared with {email}" : "{email} と共有",
"Shared with %1$s by %2$s" : "%2$s で %1$s と共有",
"Shared with {email} by {actor}" : "{actor} で {email} と共有 ",
"Unshared from %1$s" : "%1$s から共有解除しました",
"Unshared from {email}" : "{email}から共有解除しました",
"Unshared from %1$s by %2$s" : "%2$sで%1$s から共有解除しました",
"Unshared from {email} by {actor}" : "{actor} で {email} と共有解除しました",
"Password for mail share sent to %1$s" : "%1$sにメール共有するパスワード",
"Password for mail share sent to {email}" : "{email} にメール共有するパスワード",
"Password for mail share sent to you" : "あなたにメール共有するパスワード",
@ -19,11 +23,15 @@ OC.L10N.register(
"Sharing %1$s failed, this item is already shared with %2$s" : "%1$s の共有に失敗しました。 このアイテムはすでに %2$s と共有しています",
"We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "自動生成パスワードを送信できませんでした。個人設定画面から正しいメールアドレスを設定して再度実施してください。",
"Failed to send share by email" : "メールで共有の送信に失敗しました",
"Click the button below to open it." : "クリックすると下が開きます",
"%1$s shared »%2$s« with you" : "%1$sが あなたと >> %2$s <<を共有しました",
"%1$s shared »%2$s« with you." : "%1$sが あなたと >> %2$s <<を共有しました。",
"Click the button below to open it." : "以下のリンクをクリックすると開きます。",
"Open »%s«" : "»%s«を開く",
"%1$s via %2$s" : "%1$s に %2$s から",
"Password to access »%s«" : "»%s« にアクセスするパスワード",
"It is protected with the following password:" : "次のパスワードで保護されています。",
"%1$s shared »%2$s« with you and wants to add" : "%1$s さんが »%2$s« にノートを追加しました。",
"»%s« added a note to a file shared with you" : "»%s« あなたと共有しているファイルにノートを追加しました。 ",
"This is the password:" : "パスワード: ",
"You can choose a different password at any time in the share dialog." : "共有ダイアログからいつでも違うパスワードに変更できます。",
"Could not find share" : "共有が見つかりませんでした",

View file

@ -3,6 +3,10 @@
"Shared with {email}" : "{email} と共有",
"Shared with %1$s by %2$s" : "%2$s で %1$s と共有",
"Shared with {email} by {actor}" : "{actor} で {email} と共有 ",
"Unshared from %1$s" : "%1$s から共有解除しました",
"Unshared from {email}" : "{email}から共有解除しました",
"Unshared from %1$s by %2$s" : "%2$sで%1$s から共有解除しました",
"Unshared from {email} by {actor}" : "{actor} で {email} と共有解除しました",
"Password for mail share sent to %1$s" : "%1$sにメール共有するパスワード",
"Password for mail share sent to {email}" : "{email} にメール共有するパスワード",
"Password for mail share sent to you" : "あなたにメール共有するパスワード",
@ -17,11 +21,15 @@
"Sharing %1$s failed, this item is already shared with %2$s" : "%1$s の共有に失敗しました。 このアイテムはすでに %2$s と共有しています",
"We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "自動生成パスワードを送信できませんでした。個人設定画面から正しいメールアドレスを設定して再度実施してください。",
"Failed to send share by email" : "メールで共有の送信に失敗しました",
"Click the button below to open it." : "クリックすると下が開きます",
"%1$s shared »%2$s« with you" : "%1$sが あなたと >> %2$s <<を共有しました",
"%1$s shared »%2$s« with you." : "%1$sが あなたと >> %2$s <<を共有しました。",
"Click the button below to open it." : "以下のリンクをクリックすると開きます。",
"Open »%s«" : "»%s«を開く",
"%1$s via %2$s" : "%1$s に %2$s から",
"Password to access »%s«" : "»%s« にアクセスするパスワード",
"It is protected with the following password:" : "次のパスワードで保護されています。",
"%1$s shared »%2$s« with you and wants to add" : "%1$s さんが »%2$s« にノートを追加しました。",
"»%s« added a note to a file shared with you" : "»%s« あなたと共有しているファイルにノートを追加しました。 ",
"This is the password:" : "パスワード: ",
"You can choose a different password at any time in the share dialog." : "共有ダイアログからいつでも違うパスワードに変更できます。",
"Could not find share" : "共有が見つかりませんでした",

View file

@ -22,6 +22,16 @@ OC.L10N.register(
"Use one of the backup codes you saved when setting up two-factor authentication." : "Uzu unu el viaj rezervkodoj, kiujn vi konservis dum agordo de dufaza aŭtentigo.",
"Submit" : "Sendi",
"Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Rezervkodoj generiĝis. {{used}} kodoj el {{total}} uziĝis.",
"Nextcloud backup codes" : "Rezervkodoj por Nextcloud"
"Nextcloud backup codes" : "Rezervkodoj por Nextcloud",
"activated" : "ŝaltita",
"updated" : "ĝisdatigita",
"mounted" : "muntita",
"deactivated" : "malŝaltita",
"beforeCreate" : "beforeCreate",
"created" : "kreita",
"beforeUpdate" : "beforeUpdate",
"beforeDestroy" : "beforeDestroy",
"destroyed" : "detruita",
"beforeMount" : "beforeMount"
},
"nplurals=2; plural=(n != 1);");

View file

@ -20,6 +20,16 @@
"Use one of the backup codes you saved when setting up two-factor authentication." : "Uzu unu el viaj rezervkodoj, kiujn vi konservis dum agordo de dufaza aŭtentigo.",
"Submit" : "Sendi",
"Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Rezervkodoj generiĝis. {{used}} kodoj el {{total}} uziĝis.",
"Nextcloud backup codes" : "Rezervkodoj por Nextcloud"
"Nextcloud backup codes" : "Rezervkodoj por Nextcloud",
"activated" : "ŝaltita",
"updated" : "ĝisdatigita",
"mounted" : "muntita",
"deactivated" : "malŝaltita",
"beforeCreate" : "beforeCreate",
"created" : "kreita",
"beforeUpdate" : "beforeUpdate",
"beforeDestroy" : "beforeDestroy",
"destroyed" : "detruita",
"beforeMount" : "beforeMount"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

BIN
core/js/dist/main.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -72,7 +72,7 @@ OC.L10N.register(
"Could not load your contacts" : "Non foi posíbel cargar os seus contactos",
"Search contacts …" : "Buscar contactos …",
"No contacts found" : "Non se atoparon contactos",
"Show all contacts …" : "Amosar todos os contactos …",
"Show all contacts …" : "Amosar todos os contactos…",
"Loading your contacts …" : "Cargando os seus contactos …",
"Looking for {term} …" : "Buscando {term} …",
"No action available" : "Non hai accións dispoñíbeis",

View file

@ -70,7 +70,7 @@
"Could not load your contacts" : "Non foi posíbel cargar os seus contactos",
"Search contacts …" : "Buscar contactos …",
"No contacts found" : "Non se atoparon contactos",
"Show all contacts …" : "Amosar todos os contactos …",
"Show all contacts …" : "Amosar todos os contactos…",
"Loading your contacts …" : "Cargando os seus contactos …",
"Looking for {term} …" : "Buscando {term} …",
"No action available" : "Non hai accións dispoñíbeis",

View file

@ -15,6 +15,7 @@ OC.L10N.register(
"No valid crop data provided" : "有効なクロップデータは提供されません",
"Crop is not square" : "クロップが正方形ではありません",
"State token does not match" : "状態トークンが一致しません",
"Could not complete login" : "ログインが完了できませんでした",
"Your login token is invalid or has expired" : "あなたのログイントークンは無効か期限が切れています。",
"Password reset is disabled" : "パスワードリセットは無効化されています",
"Couldn't reset password because the token is invalid" : "トークンが無効なため、パスワードをリセットできませんでした",
@ -27,8 +28,14 @@ OC.L10N.register(
"Reset your password" : "パスワードをリセット",
"Couldn't send reset email. Please contact your administrator." : "リセットメールを送信できませんでした。管理者に問い合わせてください。",
"Couldn't send reset email. Please make sure your username is correct." : "リセットメールを送信できませんでした。ユーザー名が正しいことを確認してください。",
"Some of your link shares have been removed" : "リンク共有の一部が削除されました",
"Due to a security bug we had to remove some of your link shares. Please see the link for more information." : "セキュリティ上のバグにより、リンク共有をいくつか削除する必要がありました。 詳しくはリンクをご覧ください。",
"Preparing update" : "アップデートの準備中",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair step:" : "修復ステップ:",
"Repair info:" : "修復情報:",
"Repair warning:" : "修復警告:",
"Repair error:" : "修復エラー:",
"Please use the command line updater because automatic updating is disabled in the config.php." : "config.php で自動更新が無効になっているので、コマンドラインでの更新を利用してください。",
"[%d / %d]: Checking table %s" : "[%d / %d]: テーブル %s をチェック中",
"Turned on maintenance mode" : "メンテナンスモードがオンになりました",
@ -75,6 +82,7 @@ OC.L10N.register(
"Error removing share" : "共有の削除エラー",
"Shared with you and the group {group} by {owner}" : "あなたと {owner} のグループ {group} で共有中",
"Shared with you and {circle} by {owner}" : "{owner} が{circle}で共有中",
"Shared with you and the conversation {conversation} by {owner}" : "{owner}のスレッド{conversation}であなたと共有しました",
"Shared with you in a conversation by {owner}" : "{owner}のスレッドであなたと共有しました",
"Shared with you by {owner}" : "{owner} より共有中",
"Choose a password for the public link" : "URLによる共有のパスワードを入力",
@ -128,6 +136,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}文字以上必要です"],
"This list is maybe truncated - please refine your search term to see more results." : "このリストは切り捨てられている可能性があります - 検索語句を絞り込んで検索結果を表示してください。",
"No users or groups found for {search}" : "{search} の検索でユーザー、グループが見つかりません",
@ -159,6 +168,7 @@ OC.L10N.register(
"Connection to server lost" : "サーバーとの接続が切断されました",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["ページの読み込み中に問題が発生しました。%n秒後に再読み込みします"],
"Logging in …" : "ログイン中...",
"We have send a password reset e-mail to the e-mail address known to us for this account. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "このアカウントのパスワードをリセットするEメールを、私たちが知っているEメールアドレスに送信しました。 あなたが妥当な時間内にそれを受け取らないならば、あなたのスパム/ジャンクフォルダーをチェックしてください。<br>それがそこにない場合はあなたの地元の管理者に尋ねてください。",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "ファイルが暗号化されています。パスワードをリセットした場合、データを元に戻す方法はありません。<br />どういうことか分からない場合は、操作を継続する前に管理者に問い合わせてください。<br />続けてよろしいでしょうか?",
"I know what I'm doing" : "どういう操作をしているか理解しています",
"Password can not be changed. Please contact your administrator." : "パスワードは変更できません。管理者に問い合わせてください。",
@ -198,20 +208,50 @@ OC.L10N.register(
"So-so password" : "まずまずのパスワード",
"Good password" : "良好なパスワード",
"Strong password" : "強いパスワード",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken." : "WebDAVインターフェースが動作していないようです。Webサーバーは、ファイルの同期を許可するよう適切に設定されていません。",
"Your web server is not properly set up to resolve \"{url}\". Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Webサーバーは適切にホスト名 \"{url}\" が引けるように設定されていません。より詳しい情報については、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>を参照ください。",
"Your web server is not properly set up to resolve \"{url}\". This is most likely related to a web server configuration that was not updated to deliver this folder directly. Please compare your configuration against the shipped rewrite rules in \".htaccess\" for Apache or the provided one in the documentation for Nginx at it's <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation page</a>. On Nginx those are typically the lines starting with \"location ~\" that need an update." : "Webサーバーは \"{url}\"を解決するための正しい設定がなされていません。 これは、このフォルダを直接配信するように更新されていないWebサーバー構成に関連している可能性があります。 あなたの設定と、Apache用の \".htaccess\"、あるいはNginxのドキュメントの <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメントページ</a> に記載されているものとを比較してください。Nginxでは、これらは通常 \"location〜\"で始まる行で更新が必要です。",
"Your web server is not properly set up to deliver .woff2 files. This is typically an issue with the Nginx configuration. For Nextcloud 15 it needs an adjustement to also deliver .woff2 files. Compare your Nginx configuration to the recommended configuration in our <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Webサーバーが.woff2ファイルを配信するように正しく設定されていません。 これは通常Nginx設定の問題です。 Nextcloud 15では、.woff2ファイルも配信するための調整が必要です。 あなたのNginxの設定を<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>の推奨される設定と比較してください。",
"PHP does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHPのシステム環境変数が正しく設定されていないようです。getenv(\"PATH\") コマンドでテストして何も値を返さないことを確認してください。",
"Please check the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">installation documentation ↗</a> for PHP configuration notes and the PHP configuration of your server, especially when using php-fpm." : "PHP設定の注意事項と php-fpmを利用する場合のサーバー向け設定を<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">インストールドキュメント↗</a>で確認してください。",
"The read-only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "\"config\"は読み取り専用になってます。そのためにWEBインターフェースで設定できません可能性があります。さらに、更新時に\"config\"ファイルを書き込み権限を与えることが必要",
"Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "あなたのデータベースは \"READ COMMITED\" トランザクション分離レベルで動作していません。このことにより複数のアクションが平行して実行される場合に問題が起こる可能性があります。",
"The PHP module \"fileinfo\" is missing. It is strongly recommended to enable this module to get the best results with MIME type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。",
"Transactional file locking is disabled, this might lead to issues with race conditions. Enable \"filelocking.enabled\" in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a> for more information." : "ファイルの書き込み時のロックが無効になっており、競合時に問題となる可能性があります。この問題を避ける為に config.php 中の 'filelocking.enabled' を有効にしてください。詳細については、 <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント ↗</a> を参照してください。",
"If your installation is not installed at the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (suggestion: \"{suggestedOverwriteCliURL}\")" : "インストールがドメインのルートにインストールされておらず、システムクーロンを使用している場合は、URLの生成に問題がある可能性があります。 これらの問題を回避するには、config.phpファイルの \"overwrite.cli.url\"オプションをインストールのWebルートパスに設定してください提案 \"{suggestedOverwriteCliURL}\")。",
"It was not possible to execute the cron job via CLI. The following technical errors have appeared:" : "CLI から cronジョブを実行することができませんでした。次の技術的なエラーが発生しています",
"Last background job execution ran {relativeTime}. Something seems wrong." : "最後のバックグラウンドジョブの実行は{relativeTime}でした。 何かが間違っているようです。",
"Check the background job settings" : "バックグラウンドジョブの設定を確認する",
"This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the Internet to enjoy all features." : "このサーバーにはインターネット接続がありません。複数のエンドポイントに到達できませんでした。 つまり、外部ストレージのマウント、アップデートに関する通知、サードパーティ製アプリのインストールなどの機能の一部は機能しません。 リモートからファイルにアクセスしたり、通知メールを送信したりすることもできません。 このサーバーからインターネットへの接続を確立して、すべての機能を利用してください。",
"No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "メモリキャッシュが設定されていません。可能であれば、パフォーマンスを向上するため、memcacheを設定してください。より詳しい情報は<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>で参照できます。",
"No suitable source for randomness found by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "セキュリティ上の理由から推奨されていない、PHPによって発見されたランダムに適したソースはありません。 より詳しい情報については、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>を参照ください。",
"You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "このサーバーでは、{version} のPHPを利用しています。パフォーマンスとセキュリティ上のメリットがあるため利用中のディストリビューションで<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">PHP グループの提供する最新のPHPのバージョン</a>になるべく早くアップグレードすることを強くお勧めします。",
"You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14." : "あなたは現在PHP 5.6を実行しています。 Nextcloudの現在のメジャーバージョンは、PHP 5.6でサポートされている最新バージョンです。 Nextcloud 14にアップグレードできるようにするには、PHPバージョンを7.0以降にアップグレードすることをお勧めします。",
"The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "リバースプロキシヘッダーの設定が正しくないか、信頼できるプロキシからNextcloudにアクセスしています。 そうでない場合、これはセキュリティの問題であり、攻撃者はNextcloudに見えるように自分のIPアドレスを偽装することができます。より詳しい情報は<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>で参照できます。",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached は分散キャッシュとして設定されています。しかし、PHPモジュール \"memcache\"が間違ってインストールされています。 \\OC\\Memcache\\Memcached は、\"memcache\" ではなく、\"memcached\" のみをサポートしています。<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\">memcached wiki で両方のモジュールの情報</a>について確認してください。",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "いくつかのファイルでチェックサムが適合しませんでした。この問題を解決するためは、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>の詳細を見てください。(<a href=\"{codeIntegrityDownloadEndpoint}\">不適合ファイルのリスト… </a>/ <a href=\"{rescanEndpoint}\">再チェック…</a>)",
"The PHP OPcache module is not loaded. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to load it into your PHP installation." : "PHP OPcacheモジュールがロードされていません。<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">よりパフォーマンスを向上させる</a>には、PHPインストールにロードすることをお勧めします。",
"The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to use the following settings in the <code>php.ini</code>:" : "PHP OPcacheが適切に設定されていません。<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">よりパフォーマンスを向上させる</a>には、<code>php.ini</code>で次の設定を推奨します:",
"The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. Enabling this function is strongly recommended." : "PHP 関数 \"set_time_limit\" は使用できません。これにより実行スクリプトが途中で停止されて、インストールを破壊する可能性があります。この機能を有効にすることを強くお勧めします。",
"Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface." : "プロフィール写真と設定インターフェースが壊れているため、PHPはFreeTypeをサポートしていません。",
"Missing index \"{indexName}\" in table \"{tableName}\"." : "テーブル \"{tableName}\"のインデックス \"{indexName}\"が見つかりません。",
"The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running \"occ db:add-missing-indices\" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster." : "データベースにいくつかのインデックスがありません。 大きなテーブルにインデックスを追加すると、自動的に追加されないまでに時間がかかる可能性があるためです。 \"occ dbadd-missing-indices\"を実行することによって、インスタンスが実行し続けている間にそれらの欠けているインデックスを手動で追加することができます。 インデックスが追加されると、それらのテーブルへのクエリは通常はるかに速くなります。",
"This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them." : "このインスタンスには推奨されるPHPモジュールがいくつかありません。 パフォーマンスの向上と互換性の向上のために、それらをインストールすることを強くお勧めします。",
"Some columns in the database are missing a conversion to big int. Due to the fact that changing column types on big tables could take some time they were not changed automatically. By running 'occ db:convert-filecache-bigint' those pending changes could be applied manually. This operation needs to be made while the instance is offline. For further details read <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">the documentation page about this</a>." : "データベース内のいくつかの列で、big intへの変換が行われていません。 大きなテーブルでカラムタイプを変更すると時間がかかることがあるため、自動的には変更されませんでした。 'occ dbconvert-filecache-bigint'を実行することによって、それらの保留中の変更は手動で適用できます。 この操作は、インスタンスがオフラインの間に行う必要があります。 詳細については<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">これに関するドキュメントページを読んでください。</a>",
"SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend." : "SQLiteがデータベースとして使用されています。大規模な運用では別のデータベースに切り替えることをお勧めします。",
"This is particularly recommended when using the desktop client for file synchronisation." : "これは、ファイル同期にデスクトップクライアントを使用する場合に特に推奨されます。",
"To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "他のデータベースに移行する場合はコマンドラインツール: 'occ db:convert-type' を使うか、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント ↗</a>を参照してください。",
"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の一時ディレクトリを変更するか、またはそのパスでより多くのスペースを利用できるようにしてください。",
"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 \"{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を必要とするようサーバーを設定することを強くおすすめします。",
"unknown text" : "不明なテキスト",
@ -257,6 +297,7 @@ OC.L10N.register(
"Trace" : "トレース",
"Security warning" : "セキュリティ警告",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : ".htaccessファイルが動作していないため、おそらくあなたのデータディレクトリまたはファイルはインターネットからアクセス可能になっています。",
"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentation</a>." : "サーバーを適正に設定する情報は、こちらの<a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">ドキュメント</a>を参照してください。",
"Create an <strong>admin account</strong>" : "<strong>管理者アカウント</strong>を作成してください",
"Username" : "ユーザー名",
"Storage & database" : "ストレージとデータベース",
@ -274,11 +315,15 @@ OC.L10N.register(
"Performance warning" : "パフォーマンス警告",
"You chose SQLite as database." : "あなたはSQLiteをデータベースとして選択しました。",
"SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLiteは小規模もしくは開発用のインスタンスでのみ利用できます。プロダクション環境では他のデータベースをお勧めします。",
"If you use clients for file syncing, the use of SQLite is highly discouraged." : "ファイルの同期にクライアントを使用している場合、SQLiteの使用はお勧めできません。",
"Finish setup" : "セットアップを完了します",
"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ファイルを作成してください。",
"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" : "あなた自身の無料アカウントを入手",
"Skip to main content" : "メインコンテンツへスキップ",
"Skip to navigation of app" : "アプリのナビゲーションにスキップする",
"More apps" : "さらにアプリ",
@ -308,6 +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." : "あなたのクライアントは接続されているはずです。 このウィンドウを閉じることができます。",
"New password" : "新しいパスワードを入力",
"New Password" : "新しいパスワード",
"This share is password-protected" : "この共有はパスワードで保護されています",
@ -315,10 +362,14 @@ 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." : "二要素認証が実施されていますが、アカウントに設定されていません。 バックアップコードを使用してログインするか、管理者に連絡してください。",
"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\"設定を編集してください。",
"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 にアップデートされます",
"These apps will be updated:" : "次のアプリはアップデートされます:",
@ -341,6 +392,7 @@ OC.L10N.register(
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">コード整合性の確認で問題が発生しました。詳しくはこちら…</a>",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "パスワードをリセットするリンクをクリックしたので、メールを送信しました。しばらくたってもメールが届かなかった場合は、スパム/ジャンクフォルダーを確認してください。<br>それでも見つからなかった場合は、管理者に問合わせてください。",
"{name} below version {version} is installed, for stability and performance reasons it is recommended to update to a newer {name} version." : "{version} よりも古いバージョンの {name} がインストールされています。安定した稼働とパフォーマンスの観点から、新しいバージョンの {name} にアップデートすることをお勧めします。",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "/dev/urandom を PHP から読み取ることができません。この状態はセキュリティの観点からおすすめできません。より詳しい情報については、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>を参照ください。",
"Copy URL" : "URL をコピー",
"Enable" : "有効にする",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} がリンク経由で共有",

View file

@ -13,6 +13,7 @@
"No valid crop data provided" : "有効なクロップデータは提供されません",
"Crop is not square" : "クロップが正方形ではありません",
"State token does not match" : "状態トークンが一致しません",
"Could not complete login" : "ログインが完了できませんでした",
"Your login token is invalid or has expired" : "あなたのログイントークンは無効か期限が切れています。",
"Password reset is disabled" : "パスワードリセットは無効化されています",
"Couldn't reset password because the token is invalid" : "トークンが無効なため、パスワードをリセットできませんでした",
@ -25,8 +26,14 @@
"Reset your password" : "パスワードをリセット",
"Couldn't send reset email. Please contact your administrator." : "リセットメールを送信できませんでした。管理者に問い合わせてください。",
"Couldn't send reset email. Please make sure your username is correct." : "リセットメールを送信できませんでした。ユーザー名が正しいことを確認してください。",
"Some of your link shares have been removed" : "リンク共有の一部が削除されました",
"Due to a security bug we had to remove some of your link shares. Please see the link for more information." : "セキュリティ上のバグにより、リンク共有をいくつか削除する必要がありました。 詳しくはリンクをご覧ください。",
"Preparing update" : "アップデートの準備中",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair step:" : "修復ステップ:",
"Repair info:" : "修復情報:",
"Repair warning:" : "修復警告:",
"Repair error:" : "修復エラー:",
"Please use the command line updater because automatic updating is disabled in the config.php." : "config.php で自動更新が無効になっているので、コマンドラインでの更新を利用してください。",
"[%d / %d]: Checking table %s" : "[%d / %d]: テーブル %s をチェック中",
"Turned on maintenance mode" : "メンテナンスモードがオンになりました",
@ -73,6 +80,7 @@
"Error removing share" : "共有の削除エラー",
"Shared with you and the group {group} by {owner}" : "あなたと {owner} のグループ {group} で共有中",
"Shared with you and {circle} by {owner}" : "{owner} が{circle}で共有中",
"Shared with you and the conversation {conversation} by {owner}" : "{owner}のスレッド{conversation}であなたと共有しました",
"Shared with you in a conversation by {owner}" : "{owner}のスレッドであなたと共有しました",
"Shared with you by {owner}" : "{owner} より共有中",
"Choose a password for the public link" : "URLによる共有のパスワードを入力",
@ -126,6 +134,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}文字以上必要です"],
"This list is maybe truncated - please refine your search term to see more results." : "このリストは切り捨てられている可能性があります - 検索語句を絞り込んで検索結果を表示してください。",
"No users or groups found for {search}" : "{search} の検索でユーザー、グループが見つかりません",
@ -157,6 +166,7 @@
"Connection to server lost" : "サーバーとの接続が切断されました",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["ページの読み込み中に問題が発生しました。%n秒後に再読み込みします"],
"Logging in …" : "ログイン中...",
"We have send a password reset e-mail to the e-mail address known to us for this account. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "このアカウントのパスワードをリセットするEメールを、私たちが知っているEメールアドレスに送信しました。 あなたが妥当な時間内にそれを受け取らないならば、あなたのスパム/ジャンクフォルダーをチェックしてください。<br>それがそこにない場合はあなたの地元の管理者に尋ねてください。",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "ファイルが暗号化されています。パスワードをリセットした場合、データを元に戻す方法はありません。<br />どういうことか分からない場合は、操作を継続する前に管理者に問い合わせてください。<br />続けてよろしいでしょうか?",
"I know what I'm doing" : "どういう操作をしているか理解しています",
"Password can not be changed. Please contact your administrator." : "パスワードは変更できません。管理者に問い合わせてください。",
@ -196,20 +206,50 @@
"So-so password" : "まずまずのパスワード",
"Good password" : "良好なパスワード",
"Strong password" : "強いパスワード",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken." : "WebDAVインターフェースが動作していないようです。Webサーバーは、ファイルの同期を許可するよう適切に設定されていません。",
"Your web server is not properly set up to resolve \"{url}\". Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Webサーバーは適切にホスト名 \"{url}\" が引けるように設定されていません。より詳しい情報については、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>を参照ください。",
"Your web server is not properly set up to resolve \"{url}\". This is most likely related to a web server configuration that was not updated to deliver this folder directly. Please compare your configuration against the shipped rewrite rules in \".htaccess\" for Apache or the provided one in the documentation for Nginx at it's <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation page</a>. On Nginx those are typically the lines starting with \"location ~\" that need an update." : "Webサーバーは \"{url}\"を解決するための正しい設定がなされていません。 これは、このフォルダを直接配信するように更新されていないWebサーバー構成に関連している可能性があります。 あなたの設定と、Apache用の \".htaccess\"、あるいはNginxのドキュメントの <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメントページ</a> に記載されているものとを比較してください。Nginxでは、これらは通常 \"location〜\"で始まる行で更新が必要です。",
"Your web server is not properly set up to deliver .woff2 files. This is typically an issue with the Nginx configuration. For Nextcloud 15 it needs an adjustement to also deliver .woff2 files. Compare your Nginx configuration to the recommended configuration in our <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Webサーバーが.woff2ファイルを配信するように正しく設定されていません。 これは通常Nginx設定の問題です。 Nextcloud 15では、.woff2ファイルも配信するための調整が必要です。 あなたのNginxの設定を<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>の推奨される設定と比較してください。",
"PHP does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHPのシステム環境変数が正しく設定されていないようです。getenv(\"PATH\") コマンドでテストして何も値を返さないことを確認してください。",
"Please check the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">installation documentation ↗</a> for PHP configuration notes and the PHP configuration of your server, especially when using php-fpm." : "PHP設定の注意事項と php-fpmを利用する場合のサーバー向け設定を<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">インストールドキュメント↗</a>で確認してください。",
"The read-only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "\"config\"は読み取り専用になってます。そのためにWEBインターフェースで設定できません可能性があります。さらに、更新時に\"config\"ファイルを書き込み権限を与えることが必要",
"Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "あなたのデータベースは \"READ COMMITED\" トランザクション分離レベルで動作していません。このことにより複数のアクションが平行して実行される場合に問題が起こる可能性があります。",
"The PHP module \"fileinfo\" is missing. It is strongly recommended to enable this module to get the best results with MIME type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。",
"Transactional file locking is disabled, this might lead to issues with race conditions. Enable \"filelocking.enabled\" in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a> for more information." : "ファイルの書き込み時のロックが無効になっており、競合時に問題となる可能性があります。この問題を避ける為に config.php 中の 'filelocking.enabled' を有効にしてください。詳細については、 <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント ↗</a> を参照してください。",
"If your installation is not installed at the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (suggestion: \"{suggestedOverwriteCliURL}\")" : "インストールがドメインのルートにインストールされておらず、システムクーロンを使用している場合は、URLの生成に問題がある可能性があります。 これらの問題を回避するには、config.phpファイルの \"overwrite.cli.url\"オプションをインストールのWebルートパスに設定してください提案 \"{suggestedOverwriteCliURL}\")。",
"It was not possible to execute the cron job via CLI. The following technical errors have appeared:" : "CLI から cronジョブを実行することができませんでした。次の技術的なエラーが発生しています",
"Last background job execution ran {relativeTime}. Something seems wrong." : "最後のバックグラウンドジョブの実行は{relativeTime}でした。 何かが間違っているようです。",
"Check the background job settings" : "バックグラウンドジョブの設定を確認する",
"This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the Internet to enjoy all features." : "このサーバーにはインターネット接続がありません。複数のエンドポイントに到達できませんでした。 つまり、外部ストレージのマウント、アップデートに関する通知、サードパーティ製アプリのインストールなどの機能の一部は機能しません。 リモートからファイルにアクセスしたり、通知メールを送信したりすることもできません。 このサーバーからインターネットへの接続を確立して、すべての機能を利用してください。",
"No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "メモリキャッシュが設定されていません。可能であれば、パフォーマンスを向上するため、memcacheを設定してください。より詳しい情報は<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>で参照できます。",
"No suitable source for randomness found by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "セキュリティ上の理由から推奨されていない、PHPによって発見されたランダムに適したソースはありません。 より詳しい情報については、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>を参照ください。",
"You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "このサーバーでは、{version} のPHPを利用しています。パフォーマンスとセキュリティ上のメリットがあるため利用中のディストリビューションで<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">PHP グループの提供する最新のPHPのバージョン</a>になるべく早くアップグレードすることを強くお勧めします。",
"You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14." : "あなたは現在PHP 5.6を実行しています。 Nextcloudの現在のメジャーバージョンは、PHP 5.6でサポートされている最新バージョンです。 Nextcloud 14にアップグレードできるようにするには、PHPバージョンを7.0以降にアップグレードすることをお勧めします。",
"The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "リバースプロキシヘッダーの設定が正しくないか、信頼できるプロキシからNextcloudにアクセスしています。 そうでない場合、これはセキュリティの問題であり、攻撃者はNextcloudに見えるように自分のIPアドレスを偽装することができます。より詳しい情報は<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>で参照できます。",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached は分散キャッシュとして設定されています。しかし、PHPモジュール \"memcache\"が間違ってインストールされています。 \\OC\\Memcache\\Memcached は、\"memcache\" ではなく、\"memcached\" のみをサポートしています。<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\">memcached wiki で両方のモジュールの情報</a>について確認してください。",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "いくつかのファイルでチェックサムが適合しませんでした。この問題を解決するためは、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>の詳細を見てください。(<a href=\"{codeIntegrityDownloadEndpoint}\">不適合ファイルのリスト… </a>/ <a href=\"{rescanEndpoint}\">再チェック…</a>)",
"The PHP OPcache module is not loaded. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to load it into your PHP installation." : "PHP OPcacheモジュールがロードされていません。<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">よりパフォーマンスを向上させる</a>には、PHPインストールにロードすることをお勧めします。",
"The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to use the following settings in the <code>php.ini</code>:" : "PHP OPcacheが適切に設定されていません。<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">よりパフォーマンスを向上させる</a>には、<code>php.ini</code>で次の設定を推奨します:",
"The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. Enabling this function is strongly recommended." : "PHP 関数 \"set_time_limit\" は使用できません。これにより実行スクリプトが途中で停止されて、インストールを破壊する可能性があります。この機能を有効にすることを強くお勧めします。",
"Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface." : "プロフィール写真と設定インターフェースが壊れているため、PHPはFreeTypeをサポートしていません。",
"Missing index \"{indexName}\" in table \"{tableName}\"." : "テーブル \"{tableName}\"のインデックス \"{indexName}\"が見つかりません。",
"The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running \"occ db:add-missing-indices\" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster." : "データベースにいくつかのインデックスがありません。 大きなテーブルにインデックスを追加すると、自動的に追加されないまでに時間がかかる可能性があるためです。 \"occ dbadd-missing-indices\"を実行することによって、インスタンスが実行し続けている間にそれらの欠けているインデックスを手動で追加することができます。 インデックスが追加されると、それらのテーブルへのクエリは通常はるかに速くなります。",
"This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them." : "このインスタンスには推奨されるPHPモジュールがいくつかありません。 パフォーマンスの向上と互換性の向上のために、それらをインストールすることを強くお勧めします。",
"Some columns in the database are missing a conversion to big int. Due to the fact that changing column types on big tables could take some time they were not changed automatically. By running 'occ db:convert-filecache-bigint' those pending changes could be applied manually. This operation needs to be made while the instance is offline. For further details read <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">the documentation page about this</a>." : "データベース内のいくつかの列で、big intへの変換が行われていません。 大きなテーブルでカラムタイプを変更すると時間がかかることがあるため、自動的には変更されませんでした。 'occ dbconvert-filecache-bigint'を実行することによって、それらの保留中の変更は手動で適用できます。 この操作は、インスタンスがオフラインの間に行う必要があります。 詳細については<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">これに関するドキュメントページを読んでください。</a>",
"SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend." : "SQLiteがデータベースとして使用されています。大規模な運用では別のデータベースに切り替えることをお勧めします。",
"This is particularly recommended when using the desktop client for file synchronisation." : "これは、ファイル同期にデスクトップクライアントを使用する場合に特に推奨されます。",
"To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "他のデータベースに移行する場合はコマンドラインツール: 'occ db:convert-type' を使うか、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント ↗</a>を参照してください。",
"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の一時ディレクトリを変更するか、またはそのパスでより多くのスペースを利用できるようにしてください。",
"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 \"{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を必要とするようサーバーを設定することを強くおすすめします。",
"unknown text" : "不明なテキスト",
@ -255,6 +295,7 @@
"Trace" : "トレース",
"Security warning" : "セキュリティ警告",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : ".htaccessファイルが動作していないため、おそらくあなたのデータディレクトリまたはファイルはインターネットからアクセス可能になっています。",
"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentation</a>." : "サーバーを適正に設定する情報は、こちらの<a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">ドキュメント</a>を参照してください。",
"Create an <strong>admin account</strong>" : "<strong>管理者アカウント</strong>を作成してください",
"Username" : "ユーザー名",
"Storage & database" : "ストレージとデータベース",
@ -272,11 +313,15 @@
"Performance warning" : "パフォーマンス警告",
"You chose SQLite as database." : "あなたはSQLiteをデータベースとして選択しました。",
"SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLiteは小規模もしくは開発用のインスタンスでのみ利用できます。プロダクション環境では他のデータベースをお勧めします。",
"If you use clients for file syncing, the use of SQLite is highly discouraged." : "ファイルの同期にクライアントを使用している場合、SQLiteの使用はお勧めできません。",
"Finish setup" : "セットアップを完了します",
"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ファイルを作成してください。",
"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" : "あなた自身の無料アカウントを入手",
"Skip to main content" : "メインコンテンツへスキップ",
"Skip to navigation of app" : "アプリのナビゲーションにスキップする",
"More apps" : "さらにアプリ",
@ -306,6 +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." : "あなたのクライアントは接続されているはずです。 このウィンドウを閉じることができます。",
"New password" : "新しいパスワードを入力",
"New Password" : "新しいパスワード",
"This share is password-protected" : "この共有はパスワードで保護されています",
@ -313,10 +360,14 @@
"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." : "二要素認証が実施されていますが、アカウントに設定されていません。 バックアップコードを使用してログインするか、管理者に連絡してください。",
"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\"設定を編集してください。",
"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 にアップデートされます",
"These apps will be updated:" : "次のアプリはアップデートされます:",
@ -339,6 +390,7 @@
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">コード整合性の確認で問題が発生しました。詳しくはこちら…</a>",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "パスワードをリセットするリンクをクリックしたので、メールを送信しました。しばらくたってもメールが届かなかった場合は、スパム/ジャンクフォルダーを確認してください。<br>それでも見つからなかった場合は、管理者に問合わせてください。",
"{name} below version {version} is installed, for stability and performance reasons it is recommended to update to a newer {name} version." : "{version} よりも古いバージョンの {name} がインストールされています。安定した稼働とパフォーマンスの観点から、新しいバージョンの {name} にアップデートすることをお勧めします。",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "/dev/urandom を PHP から読み取ることができません。この状態はセキュリティの観点からおすすめできません。より詳しい情報については、<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">ドキュメント</a>を参照ください。",
"Copy URL" : "URL をコピー",
"Enable" : "有効にする",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} がリンク経由で共有",

View file

@ -28,6 +28,8 @@ OC.L10N.register(
"Reset your password" : "Ресетуј лозинку",
"Couldn't send reset email. Please contact your administrator." : "Не могу да пошаљем поруку за ресетовање. Контактирајте администратора.",
"Couldn't send reset email. Please make sure your username is correct." : "Не могу да пошаљем поруку за ресетовање. Проверите да ли је корисничко име исправно.",
"Some of your link shares have been removed" : "Неке од Ваших веза дељења су уклоњене",
"Due to a security bug we had to remove some of your link shares. Please see the link for more information." : "Уклонили смо неке од Ваших веза дељења због безбедоносног пропуста. Погледајте везу да добијете више информација.",
"Preparing update" : "Припремам ажурирање",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair step:" : "Корак поправке:",

View file

@ -26,6 +26,8 @@
"Reset your password" : "Ресетуј лозинку",
"Couldn't send reset email. Please contact your administrator." : "Не могу да пошаљем поруку за ресетовање. Контактирајте администратора.",
"Couldn't send reset email. Please make sure your username is correct." : "Не могу да пошаљем поруку за ресетовање. Проверите да ли је корисничко име исправно.",
"Some of your link shares have been removed" : "Неке од Ваших веза дељења су уклоњене",
"Due to a security bug we had to remove some of your link shares. Please see the link for more information." : "Уклонили смо неке од Ваших веза дељења због безбедоносног пропуста. Погледајте везу да добијете више информација.",
"Preparing update" : "Припремам ажурирање",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair step:" : "Корак поправке:",

View file

@ -386,7 +386,7 @@ OC.L10N.register(
"Upgrade via web on my own risk" : "通过网络升级的风险",
"Maintenance mode" : "维护模式",
"This %s instance is currently in maintenance mode, which may take a while." : "该实例 %s 当前处于维护模式,这将花费一些时间。",
"This page will refresh itself when the instance is available again." : "当实再次可用时,页面会自动刷新。",
"This page will refresh itself when the instance is available again." : "当实再次可用时,页面会自动刷新。",
"Contact your system administrator if this message persists or appeared unexpectedly." : "如果这个消息一直存在或不停出现,请联系您的系统管理员。",
"Updated \"%s\" to %s" : "更新 \"%s\" 为 %s",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">代码完整性检查出现异常,点击查看详细信息...</a>",

View file

@ -384,7 +384,7 @@
"Upgrade via web on my own risk" : "通过网络升级的风险",
"Maintenance mode" : "维护模式",
"This %s instance is currently in maintenance mode, which may take a while." : "该实例 %s 当前处于维护模式,这将花费一些时间。",
"This page will refresh itself when the instance is available again." : "当实再次可用时,页面会自动刷新。",
"This page will refresh itself when the instance is available again." : "当实再次可用时,页面会自动刷新。",
"Contact your system administrator if this message persists or appeared unexpectedly." : "如果这个消息一直存在或不停出现,请联系您的系统管理员。",
"Updated \"%s\" to %s" : "更新 \"%s\" 为 %s",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">代码完整性检查出现异常,点击查看详细信息...</a>",

View file

@ -212,25 +212,51 @@ OC.L10N.register(
"Action \"%s\" not supported or implemented." : "L'acció \"%s\" no està suportada o implementada.",
"Authentication failed, wrong token or provider ID given" : "Ha fallat lautenticació, sha donat un identificador de proveïdor o un testimoni incorrecte",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Falten paràmetres per completar la sol·licitud. Els paràmetres que falten són: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "L'ID \"%1$s\" ja es fa servir pel proveïdor de la federació del núvol \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El Proveïdor de la Federació de Núvol amb ID: \"%s\" no existeix.",
"Could not obtain lock type %d on \"%s\"." : "No s'ha pogut obtenir un bloqueig tipus %d a \"%s\".",
"Sharing %s failed, because the file does not exist" : "Ha fallat en compartir %s, perquè el fitxer no existeix",
"Sharing %s failed, because the user %s does not exist" : "Ha fallat en compartir %s, perquè l'usuari %s no existeix",
"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" : "Ha fallat en compartir %s, perquè l'usuari %s no és membre de cap grup dels que %s és membre",
"Sharing %s failed, because this item is already shared with %s" : "Ha fallat en compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, because the group %s does not exist" : "Ha fallat en compartir %s, perquè el grup %s no existeix",
"Sharing %s failed, because %s is not a member of the group %s" : "Ha fallat en compartir %s, perquè %s no és membre del grup %s",
"You need to provide a password to create a public link, only protected links are allowed" : "Heu de proporcionar una contrasenya per crear un enllaç públic. Només es permeten enllaços segurs.",
"Sharing %s failed, because sharing with links is not allowed" : "Ha fallat en compartir %s, perquè no es permet compartir amb enllaços",
"Storage unauthorized. %s" : "Emmagatzematge no autoritzat. %s",
"Storage incomplete configuration. %s" : "Configuració d'emmagatzematge incompleta. %s",
"Storage connection error. %s" : "Error de connexió demmagatzematge. %s",
"Storage is temporarily not available" : "Emmagatzematge temporalment no disponible",
"Storage connection timeout. %s" : "Temps despera exhaurit en la connexió demmagatzematge. %s",
"Library %s with a version higher than %s is required - available version %s." : "Es requereix la llibreria %s amb una versió superior a %s - la versió disponible és %s.",
"Library %s with a version lower than %s is required - available version %s." : "Es requereix la llibreria %s amb una versió inferior a %s - la versió disponible és %s.",
"Sharing %s failed, because the backend does not allow shares from type %i" : "No s'ha pogut compartir %s perquè l'aplicació de fons no permet comparticions del tipus %i",
"Sharing %s failed, because the file does not exist" : "No s'ha pogut compartir %s, perquè el fitxer no existeix",
"Sharing %s failed, because you can not share with yourself" : "No s'ha pogut compartir %s, perquè no us podeu auto-compartir.",
"Sharing %s failed, because the user %s does not exist" : "No s'ha pogut compartir %s, perquè l'usuari %s no existeix",
"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" : "No s'ha pogut compartir %s, perquè l'usuari %s no és membre de cap grup dels que %s n'és membre",
"Sharing %s failed, because this item is already shared with %s" : "No s'ha pogut compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, because this item is already shared with user %s" : "No s'ha pogut compartir %s, perquè l'element ja està compartit amb l'usuari %s",
"Sharing %s failed, because the group %s does not exist" : "No s'ha pogut compartir %s, perquè el grup %s no existeix",
"Sharing %s failed, because %s is not a member of the group %s" : "No s'ha pogut compartir %s, perquè %s no és membre del grup %s",
"You need to provide a password to create a public link, only protected links are allowed" : "Heu de proporcionar una contrasenya per crear un enllaç públic. Només es permeten els enllaços protegits",
"Sharing %s failed, because sharing with links is not allowed" : "No s'ha pogut compartir %s, perquè no es permet compartir amb enllaços",
"Not allowed to create a federated share with the same user" : "No està permés crear una compartició federada amb el mateix usuari",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "La compartició de %s ha fallat, no es pot trobar %s, potser el servidor està actualment innacessible.",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "La compartició de %s ha fallat, no es pot trobar %s, potser el servidor és inaccessible actualment.",
"Share type %s is not valid for %s" : "La compartició tipus %s no és vàlida per %s",
"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "No es pot guardar la data d'expiració. Els fitxers o carpetes compartits no poden expirar més tard de %s després d'haver-se compratit.",
"Cannot set expiration date. Expiration date is in the past" : "No es pot guardar la data d'expiració. La data d'expiració ja ha passat.",
"Sharing %s failed, because the permissions exceed permissions granted to %s" : "Ha fallat en compartir %s perquè els permisos excedeixen els permesos per a %s",
"Sharing %s failed, because resharing is not allowed" : "Ha fallat en compartir %s, perquè no es permet compartir de nou",
"Sharing %s failed, because the sharing backend for %s could not find its source" : "Ha fallat en compartir %s, perquè el rerefons de compartir per %s no pot trobar la seva font",
"Sharing %s failed, because the file could not be found in the file cache" : "Ha fallat en compartir %s, perquè el fitxer no s'ha trobat en el fitxer cau",
"%s shared »%s« with you" : "%s ha compartit »%s« amb tu",
"%s via %s" : "%s via %s"
"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "No es pot establir la data de caducitat. Els fitxers o carpetes compartits no poden caducar més tard de %s després d'haver-se compartit.",
"Cannot set expiration date. Expiration date is in the past" : "No es pot establir la data de caducitat. La data de caducitat és del passat.",
"Sharing failed, because the user %s is the original sharer" : "No s'ha pogut compartir, perquè l'usuari %s el l'autor original de la compartició",
"Sharing %s failed, because the permissions exceed permissions granted to %s" : "No s'ha pogut compartir %s perquè els permisos excedeixen els permesos per a %s",
"Sharing %s failed, because resharing is not allowed" : "No s'ha pogut compartir %s, perquè no es permet compartir de nou",
"Sharing %s failed, because the sharing backend for %s could not find its source" : "No s'ha pogut compartir %s, perquè el rerefons de compartir per %s no pot trobar la seva font",
"Sharing %s failed, because the file could not be found in the file cache" : "No s'ha pogut compartir %s, perquè el fitxer no s'ha trobat en el fitxer de memòria cau",
"%s shared »%s« with you" : "%s us ha compartit »%s«",
"%s shared »%s« with you." : "%s us ha compartit »%s«.",
"%s via %s" : "%s via %s",
"App \"%s\" cannot be installed because the following dependencies are not fulfilled: %s" : "Laplicació \"%s\" no es pot instal·lar perquè no es compleixen les següents dependències: %s",
"ID \"%s\" already used by cloud federation provider \"%s\"" : "L'ID \"%s\" ja es fa servir pel proveïdor de la federació del núvol \"%s\"",
"Sharing %1$s failed, because the user %2$s does not exist" : "No s'ha pogut compartir %1$s, perquè l'usuari %2$s no existeix",
"Sharing %1$s failed, because the user %2$s is not a member of any groups that %3$s is a member of" : "No s'ha pogut compartir %1$s, perquè l'usuari %2$s no és membre de cap grup dels que %3$s n'és membre",
"Sharing %1$s failed, because this item is already shared with %2$s" : "No s'ha pogut compartir %1$s, perquè aquest element ja està compartit amb %2$s",
"Sharing %1$s failed, because this item is already shared with user %2$s" : "No s'ha pogut compartir %1$s, perquè l'element ja està compartit amb l'usuari %2$s",
"Sharing %1$s failed, because the group %2$s does not exist" : "No s'ha pogut compartir %1$s, perquè el grup %2$s no existeix",
"Sharing %1$s failed, because %2$s is not a member of the group %3$s" : "No s'ha pogut compartir %1$s, perquè %2$s no és membre del grup %3$s",
"Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable." : "La compartició de %1$s ha fallat, no es pot trobar %2$s, potser el servidor és inaccessible actualment.",
"Share type %1$s is not valid for %2$s" : "La compartició tipus %1$s no és vàlida per %2$s",
"Sharing %1$s failed, because the permissions exceed permissions granted to %2$s" : "No s'ha pogut compartir %1$s perquè els permisos excedeixen els permesos per a %2$s",
"Sharing %1$s failed, because the sharing backend for %2$s could not find its source" : "No s'ha pogut compartir %1$s, perquè el rerefons de compartir per %2$s no pot trobar la seva font"
},
"nplurals=2; plural=(n != 1);");

View file

@ -210,25 +210,51 @@
"Action \"%s\" not supported or implemented." : "L'acció \"%s\" no està suportada o implementada.",
"Authentication failed, wrong token or provider ID given" : "Ha fallat lautenticació, sha donat un identificador de proveïdor o un testimoni incorrecte",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Falten paràmetres per completar la sol·licitud. Els paràmetres que falten són: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "L'ID \"%1$s\" ja es fa servir pel proveïdor de la federació del núvol \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El Proveïdor de la Federació de Núvol amb ID: \"%s\" no existeix.",
"Could not obtain lock type %d on \"%s\"." : "No s'ha pogut obtenir un bloqueig tipus %d a \"%s\".",
"Sharing %s failed, because the file does not exist" : "Ha fallat en compartir %s, perquè el fitxer no existeix",
"Sharing %s failed, because the user %s does not exist" : "Ha fallat en compartir %s, perquè l'usuari %s no existeix",
"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" : "Ha fallat en compartir %s, perquè l'usuari %s no és membre de cap grup dels que %s és membre",
"Sharing %s failed, because this item is already shared with %s" : "Ha fallat en compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, because the group %s does not exist" : "Ha fallat en compartir %s, perquè el grup %s no existeix",
"Sharing %s failed, because %s is not a member of the group %s" : "Ha fallat en compartir %s, perquè %s no és membre del grup %s",
"You need to provide a password to create a public link, only protected links are allowed" : "Heu de proporcionar una contrasenya per crear un enllaç públic. Només es permeten enllaços segurs.",
"Sharing %s failed, because sharing with links is not allowed" : "Ha fallat en compartir %s, perquè no es permet compartir amb enllaços",
"Storage unauthorized. %s" : "Emmagatzematge no autoritzat. %s",
"Storage incomplete configuration. %s" : "Configuració d'emmagatzematge incompleta. %s",
"Storage connection error. %s" : "Error de connexió demmagatzematge. %s",
"Storage is temporarily not available" : "Emmagatzematge temporalment no disponible",
"Storage connection timeout. %s" : "Temps despera exhaurit en la connexió demmagatzematge. %s",
"Library %s with a version higher than %s is required - available version %s." : "Es requereix la llibreria %s amb una versió superior a %s - la versió disponible és %s.",
"Library %s with a version lower than %s is required - available version %s." : "Es requereix la llibreria %s amb una versió inferior a %s - la versió disponible és %s.",
"Sharing %s failed, because the backend does not allow shares from type %i" : "No s'ha pogut compartir %s perquè l'aplicació de fons no permet comparticions del tipus %i",
"Sharing %s failed, because the file does not exist" : "No s'ha pogut compartir %s, perquè el fitxer no existeix",
"Sharing %s failed, because you can not share with yourself" : "No s'ha pogut compartir %s, perquè no us podeu auto-compartir.",
"Sharing %s failed, because the user %s does not exist" : "No s'ha pogut compartir %s, perquè l'usuari %s no existeix",
"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" : "No s'ha pogut compartir %s, perquè l'usuari %s no és membre de cap grup dels que %s n'és membre",
"Sharing %s failed, because this item is already shared with %s" : "No s'ha pogut compartir %s, perquè l'element ja està compartit amb %s",
"Sharing %s failed, because this item is already shared with user %s" : "No s'ha pogut compartir %s, perquè l'element ja està compartit amb l'usuari %s",
"Sharing %s failed, because the group %s does not exist" : "No s'ha pogut compartir %s, perquè el grup %s no existeix",
"Sharing %s failed, because %s is not a member of the group %s" : "No s'ha pogut compartir %s, perquè %s no és membre del grup %s",
"You need to provide a password to create a public link, only protected links are allowed" : "Heu de proporcionar una contrasenya per crear un enllaç públic. Només es permeten els enllaços protegits",
"Sharing %s failed, because sharing with links is not allowed" : "No s'ha pogut compartir %s, perquè no es permet compartir amb enllaços",
"Not allowed to create a federated share with the same user" : "No està permés crear una compartició federada amb el mateix usuari",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "La compartició de %s ha fallat, no es pot trobar %s, potser el servidor està actualment innacessible.",
"Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "La compartició de %s ha fallat, no es pot trobar %s, potser el servidor és inaccessible actualment.",
"Share type %s is not valid for %s" : "La compartició tipus %s no és vàlida per %s",
"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "No es pot guardar la data d'expiració. Els fitxers o carpetes compartits no poden expirar més tard de %s després d'haver-se compratit.",
"Cannot set expiration date. Expiration date is in the past" : "No es pot guardar la data d'expiració. La data d'expiració ja ha passat.",
"Sharing %s failed, because the permissions exceed permissions granted to %s" : "Ha fallat en compartir %s perquè els permisos excedeixen els permesos per a %s",
"Sharing %s failed, because resharing is not allowed" : "Ha fallat en compartir %s, perquè no es permet compartir de nou",
"Sharing %s failed, because the sharing backend for %s could not find its source" : "Ha fallat en compartir %s, perquè el rerefons de compartir per %s no pot trobar la seva font",
"Sharing %s failed, because the file could not be found in the file cache" : "Ha fallat en compartir %s, perquè el fitxer no s'ha trobat en el fitxer cau",
"%s shared »%s« with you" : "%s ha compartit »%s« amb tu",
"%s via %s" : "%s via %s"
"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "No es pot establir la data de caducitat. Els fitxers o carpetes compartits no poden caducar més tard de %s després d'haver-se compartit.",
"Cannot set expiration date. Expiration date is in the past" : "No es pot establir la data de caducitat. La data de caducitat és del passat.",
"Sharing failed, because the user %s is the original sharer" : "No s'ha pogut compartir, perquè l'usuari %s el l'autor original de la compartició",
"Sharing %s failed, because the permissions exceed permissions granted to %s" : "No s'ha pogut compartir %s perquè els permisos excedeixen els permesos per a %s",
"Sharing %s failed, because resharing is not allowed" : "No s'ha pogut compartir %s, perquè no es permet compartir de nou",
"Sharing %s failed, because the sharing backend for %s could not find its source" : "No s'ha pogut compartir %s, perquè el rerefons de compartir per %s no pot trobar la seva font",
"Sharing %s failed, because the file could not be found in the file cache" : "No s'ha pogut compartir %s, perquè el fitxer no s'ha trobat en el fitxer de memòria cau",
"%s shared »%s« with you" : "%s us ha compartit »%s«",
"%s shared »%s« with you." : "%s us ha compartit »%s«.",
"%s via %s" : "%s via %s",
"App \"%s\" cannot be installed because the following dependencies are not fulfilled: %s" : "Laplicació \"%s\" no es pot instal·lar perquè no es compleixen les següents dependències: %s",
"ID \"%s\" already used by cloud federation provider \"%s\"" : "L'ID \"%s\" ja es fa servir pel proveïdor de la federació del núvol \"%s\"",
"Sharing %1$s failed, because the user %2$s does not exist" : "No s'ha pogut compartir %1$s, perquè l'usuari %2$s no existeix",
"Sharing %1$s failed, because the user %2$s is not a member of any groups that %3$s is a member of" : "No s'ha pogut compartir %1$s, perquè l'usuari %2$s no és membre de cap grup dels que %3$s n'és membre",
"Sharing %1$s failed, because this item is already shared with %2$s" : "No s'ha pogut compartir %1$s, perquè aquest element ja està compartit amb %2$s",
"Sharing %1$s failed, because this item is already shared with user %2$s" : "No s'ha pogut compartir %1$s, perquè l'element ja està compartit amb l'usuari %2$s",
"Sharing %1$s failed, because the group %2$s does not exist" : "No s'ha pogut compartir %1$s, perquè el grup %2$s no existeix",
"Sharing %1$s failed, because %2$s is not a member of the group %3$s" : "No s'ha pogut compartir %1$s, perquè %2$s no és membre del grup %3$s",
"Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable." : "La compartició de %1$s ha fallat, no es pot trobar %2$s, potser el servidor és inaccessible actualment.",
"Share type %1$s is not valid for %2$s" : "La compartició tipus %1$s no és vàlida per %2$s",
"Sharing %1$s failed, because the permissions exceed permissions granted to %2$s" : "No s'ha pogut compartir %1$s perquè els permisos excedeixen els permesos per a %2$s",
"Sharing %1$s failed, because the sharing backend for %2$s could not find its source" : "No s'ha pogut compartir %1$s, perquè el rerefons de compartir per %2$s no pot trobar la seva font"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -180,7 +180,7 @@ OC.L10N.register(
"Application is not enabled" : "O aplicativo non está activado",
"Authentication error" : "Produciuse un erro de autenticación",
"Token expired. Please reload page." : "Marca caducada. Recargue a páxina.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Non hay controladores de base de datos (sqlite, mysql, ou postgresql) instalados.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Non hai controladores de base de datos (sqlite, mysql, ou postgresql) instalados.",
"Cannot write into \"config\" directory" : "Non é posíbel escribir no directorio «config»",
"Cannot write into \"apps\" directory" : "Non é posíbel escribir no directorio «apps»",
"This can usually be fixed by giving the webserver write access to the apps directory or disabling the appstore in the config file. See %s" : "Polo xeral, isto pódese solucionar dándolle ao servidor web acceso de escritura ao directorio dos aplicativos ou desactivando a tenda de aplicativos no ficheiro de configuración. Vexa %s",

View file

@ -178,7 +178,7 @@
"Application is not enabled" : "O aplicativo non está activado",
"Authentication error" : "Produciuse un erro de autenticación",
"Token expired. Please reload page." : "Marca caducada. Recargue a páxina.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Non hay controladores de base de datos (sqlite, mysql, ou postgresql) instalados.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Non hai controladores de base de datos (sqlite, mysql, ou postgresql) instalados.",
"Cannot write into \"config\" directory" : "Non é posíbel escribir no directorio «config»",
"Cannot write into \"apps\" directory" : "Non é posíbel escribir no directorio «apps»",
"This can usually be fixed by giving the webserver write access to the apps directory or disabling the appstore in the config file. See %s" : "Polo xeral, isto pódese solucionar dándolle ao servidor web acceso de escritura ao directorio dos aplicativos ou desactivando a tenda de aplicativos no ficheiro de configuración. Vexa %s",

View file

@ -76,14 +76,9 @@ class Swift implements IObjectStore {
* @throws \Exception from openstack lib when something goes wrong
*/
public function writeObject($urn, $stream) {
$handle = $stream;
$meta = stream_get_meta_data($stream);
if (!(isset($meta['seekable']) && $meta['seekable'] === true)) {
$tmpFile = \OC::$server->getTempManager()->getTemporaryFile('swiftwrite');
file_put_contents($tmpFile, $stream);
$handle = fopen($tmpFile, 'rb');
}
$tmpFile = \OC::$server->getTempManager()->getTemporaryFile('swiftwrite');
file_put_contents($tmpFile, $stream);
$handle = fopen($tmpFile, 'rb');
$this->getContainer()->createObject([
'name' => $urn,

View file

@ -256,49 +256,6 @@ class Share extends Constants {
$parameters, 1, $includeCollections, true);
}
/**
* Based on the given token the share information will be returned - password protected shares will be verified
* @param string $token
* @param bool $checkPasswordProtection
* @return array|boolean false will be returned in case the token is unknown or unauthorized
*/
public static function getShareByToken($token, $checkPasswordProtection = true) {
$query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1);
$result = $query->execute(array($token));
if ($result === false) {
\OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage() . ', token=' . $token, ILogger::ERROR);
}
$row = $result->fetchRow();
if ($row === false) {
return false;
}
if (is_array($row) and self::expireItem($row)) {
return false;
}
// password protected shares need to be authenticated
if ($checkPasswordProtection && !\OC\Share\Share::checkPasswordProtectedShare($row)) {
return false;
}
return $row;
}
/**
* Get the shared items of item type owned by the current user
* @param string $itemType
* @param int $format (optional) Format type must be defined by the backend
* @param mixed $parameters
* @param int $limit Number of items to return (optional) Returns all by default
* @param boolean $includeCollections
* @return mixed Return depends on format
*/
public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null,
$limit = -1, $includeCollections = false) {
return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format,
$parameters, $limit, $includeCollections);
}
/**
* Get the shared item of item type owned by the current user
* @param string $itemType
@ -420,29 +377,6 @@ class Share extends Constants {
return false;
}
/**
* sent status if users got informed by mail about share
* @param string $itemType
* @param string $itemSource
* @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
* @param string $recipient with whom was the file shared
* @param boolean $status
*/
public static function setSendMailStatus($itemType, $itemSource, $shareType, $recipient, $status) {
$status = $status ? 1 : 0;
$query = \OC_DB::prepare(
'UPDATE `*PREFIX*share`
SET `mail_send` = ?
WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ? AND `share_with` = ?');
$result = $query->execute(array($status, $itemType, $itemSource, $shareType, $recipient));
if($result === false) {
\OCP\Util::writeLog('OCP\Share', 'Couldn\'t set send mail status', ILogger::ERROR);
}
}
/**
* Checks whether a share has expired, calls unshareItem() if yes.
* @param array $item Share data (usually database row)
@ -1616,14 +1550,6 @@ class Share extends Constants {
return ($result['success'] && ($status['ocs']['meta']['statuscode'] === 100 || $status['ocs']['meta']['statuscode'] === 200));
}
/**
* @return bool
*/
public static function isDefaultExpireDateEnabled() {
$defaultExpireDateEnabled = \OC::$server->getConfig()->getAppValue('core', 'shareapi_default_expire_date', 'no');
return $defaultExpireDateEnabled === 'yes';
}
/**
* @return int
*/

View file

@ -59,7 +59,6 @@ namespace OC\User;
use OC\Cache\CappedMemoryCache;
use OCP\IDBConnection;
use OCP\ILogger;
use OCP\User\Backend\ABackend;
use OCP\User\Backend\ICheckPasswordBackend;
use OCP\User\Backend\ICountUsersBackend;
@ -68,7 +67,6 @@ use OCP\User\Backend\IGetDisplayNameBackend;
use OCP\User\Backend\IGetHomeBackend;
use OCP\User\Backend\ISetDisplayNameBackend;
use OCP\User\Backend\ISetPasswordBackend;
use OCP\Util;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\GenericEvent;

View file

@ -43,6 +43,7 @@ namespace OCP;
* It provides the following hooks:
* - post_shared
* @since 5.0.0
* @deprecated 17.0.0
*/
class Share extends \OC\Share\Constants {
@ -54,6 +55,7 @@ class Share extends \OC\Share\Constants {
* @param string $owner Owner of the share
* @return array Return list of items with file_target, permissions and expiration
* @since 6.0.0 - parameter $owner was added in 8.0.0
* @deprecated 17.0.0
*/
public static function getItemSharedWithUser($itemType, $itemSource, $user, $owner = null) {
return \OC\Share\Share::getItemSharedWithUser($itemType, $itemSource, $user, $owner);
@ -68,10 +70,11 @@ class Share extends \OC\Share\Constants {
* @param bool $includeCollections
* @return array
* @since 5.0.0
* @deprecated 17.0.0
*/
public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE,
$parameters = null, $includeCollections = false) {
return \OC\Share\Share::getItemSharedWithBySource($itemType, $itemSource, $format, $parameters, $includeCollections);
// not used by any app - only here to not break apps syntax
}
/**
@ -80,9 +83,10 @@ class Share extends \OC\Share\Constants {
* @param bool $checkPasswordProtection
* @return array|bool false will be returned in case the token is unknown or unauthorized
* @since 5.0.0 - parameter $checkPasswordProtection was added in 7.0.0
* @deprecated 17.0.0
*/
public static function getShareByToken($token, $checkPasswordProtection = true) {
return \OC\Share\Share::getShareByToken($token, $checkPasswordProtection);
// not used by any app - only here to not break apps syntax
}
@ -95,11 +99,12 @@ class Share extends \OC\Share\Constants {
* @param bool $includeCollections
* @return mixed Return depends on format
* @since 5.0.0
* @deprecated 17.0.0
*/
public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null,
$limit = -1, $includeCollections = false) {
return \OC\Share\Share::getItemsShared($itemType, $format, $parameters, $limit, $includeCollections);
// only used by AppVNCSafe app (https://github.com/vnc-biz/nextcloud-appvncsafe/issues/2) - only here to not break apps syntax
}
/**
@ -111,6 +116,7 @@ class Share extends \OC\Share\Constants {
* @param bool $includeCollections
* @return mixed Return depends on format
* @since 5.0.0
* @deprecated 17.0.0
*/
public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE,
$parameters = null, $includeCollections = false) {
@ -126,8 +132,9 @@ class Share extends \OC\Share\Constants {
* @param string $recipient with whom was the item shared
* @param bool $status
* @since 6.0.0 - parameter $originIsSource was added in 8.0.0
* @deprecated 17.0.0
*/
public static function setSendMailStatus($itemType, $itemSource, $shareType, $recipient, $status) {
return \OC\Share\Share::setSendMailStatus($itemType, $itemSource, $shareType, $recipient, $status);
// not used by any app - only here to not break apps syntax
}
}

479
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -25,14 +25,14 @@
"@chenfengyuan/vue-qrcode": "^1.0.0",
"Select2": "git+https://github.com/select2/select2.git#3.4.8",
"autosize": "^4.0.2",
"backbone": "^1.3.3",
"backbone": "^1.4.0",
"blueimp-md5": "^2.10.0",
"bootstrap": "^4.3.1",
"clipboard": "^2.0.4",
"css-vars-ponyfill": "^1.17.2",
"davclient.js": "git+https://github.com/owncloud/davclient.js.git#0.1.3",
"dompurify": "^1.0.10",
"handlebars": "^4.1.0",
"handlebars": "^4.1.2",
"jcrop": "git+https://github.com/ChristophWurst/Jcrop.git#v0.9.12-npm3",
"jquery": "2.1.4",
"jquery-migrate": "^1.4.1",
@ -52,10 +52,10 @@
"vue": "^2.6.10",
"vue-click-outside": "^1.0.7",
"vue-clipboard2": "^0.3.0",
"vue-infinite-loading": "^2.4.3",
"vue-infinite-loading": "^2.4.4",
"vue-localstorage": "^0.6.2",
"vue-multiselect": "^2.1.4",
"vue-router": "^3.0.4",
"vue-router": "^3.0.6",
"vuex": "^3.1.0",
"vuex-router-sync": "^5.0.0"
},
@ -65,7 +65,7 @@
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"css-loader": "^2.1.0",
"css-loader": "^2.1.1",
"exports-loader": "^0.7.0",
"file-loader": "^3.0.1",
"handlebars-loader": "^1.7.1",
@ -75,7 +75,7 @@
"url-loader": "^1.1.2",
"vue-loader": "^15.6.4",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.29.6",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
}

View file

@ -574,7 +574,7 @@ Raw output
protected function hasRecommendedPHPModules(): array {
$recommendedPHPModules = [];
if (!function_exists('grapheme_strlen')) {
if (!extension_loaded('intl')) {
$recommendedPHPModules[] = 'intl';
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -158,52 +158,235 @@ OC.L10N.register(
"Bosnian" : "Bosna",
"Bulgarian (Bulgaria)" : "Bulgara (Bulgarujo)",
"Bulgarian" : "Bulgara",
"Burmese (Myanmar [Burma])" : "Birma (Birmo)",
"Burmese" : "Birma",
"Catalan (Spain)" : "Kataluna (Hispanujo)",
"Catalan" : "Kataluna",
"Central Morocco Tamazight (Latin)" : "Berbera de centra Maroko (latina)",
"Central Morocco Tamazight (Latin, Morocco)" : "Berbera de centra Maroko (latina, Maroko)",
"Central Morocco Tamazight" : "Berbera de centra Maroko",
"Cherokee (United States)" : "Ĉeroka (Usono)",
"Cherokee" : "Ĉeroka",
"Chiga (Uganda)" : "Kigaa (Ugando)",
"Chiga" : "Kigaa",
"Chinese (Simplified Han)" : "Ĉina (simpligita ĉina skribo)",
"Chinese (Simplified Han, China)" : "Ĉina (simpligita ĉina skribo, Ĉinujo)",
"Chinese (Simplified Han, Hong Kong SAR China)" : "Ĉina (simpligita ĉina skribo, speciala administra regiono Honkongo, Ĉinujo)",
"Chinese (Simplified Han, Macau SAR China)" : "Ĉina (simpligita ĉina skribo, speciala administra regiono Makao, Ĉinujo)",
"Chinese (Simplified Han, Singapore)" : "Ĉina (simpligita ĉina skribo, Singapuro)",
"Chinese (Traditional Han)" : "Ĉina (tradicia ĉina skribo)",
"Chinese (Traditional Han, Hong Kong SAR China)" : "Ĉina (tradicia ĉina skribo, speciala administra regiono Honkongo, Ĉinujo)",
"Chinese (Traditional Han, Macau SAR China)" : "Ĉina (tradicia ĉina skribo, speciala administra regiono Makao, Ĉinujo)",
"Chinese (Traditional Han, Taiwan)" : "Ĉina (tradicia ĉina skribo, Tajvano)",
"Chinese" : "Ĉina",
"Cornish (United Kingdom)" : "Kornvala (Unuiĝinta Reĝlando)",
"Cornish" : "Kornvala",
"Croatian (Croatia)" : "Kroata (Kroatujo)",
"Croatian" : "Kroata",
"Czech (Czech Republic)" : "Ĉeĥa (Ĉeĥujo)",
"Czech" : "Ĉeĥa",
"Danish (Denmark)" : "Dana (Danujo)",
"Danish" : "Dana",
"Dutch (Belgium)" : "Nederlanda (Belgujo)",
"Dutch (Netherlands)" : "Nederlando (Nederlando)",
"Dutch" : "Nederlanda",
"Embu (Kenya)" : "Embua (Kenjo)",
"Embu" : "Embua",
"English (American Samoa)" : "Angla (Usona Samoo)",
"English (Australia)" : "Angla (Aŭstralio)",
"English (Belgium)" : "Angla (Belgujo)",
"English (Belize)" : "Angla (Belizo)",
"English (Botswana)" : "Angla (Bocvano)",
"English (Canada)" : "Angla (Kanado)",
"English (Guam)" : "Angla (Gvamo)",
"English (Hong Kong SAR China)" : "Angla (speciala administra regiono Honkongo, Ĉinujo)",
"English (India)" : "Angla (Barato)",
"English (Ireland)" : "Angla (Irlando)",
"English (Jamaica)" : "Angla (Jamajko)",
"English (Malta)" : "Angla (Malto)",
"English (Marshall Islands)" : "Angla (Marŝala Insularo)",
"English (Mauritius)" : "Angla (Maŭricio)",
"English (Namibia)" : "Angla (Namibio)",
"English (New Zealand)" : "Angla (Novzelando)",
"English (Northern Mariana Islands)" : "Angla (Nord-Marianoj)",
"English (Pakistan)" : "Angla (Pakistano)",
"English (Philippines)" : "Angla (Filipinoj)",
"English (Singapore)" : "Angla (Singapuro)",
"English (South Africa)" : "Angla (Sudafriko)",
"English (Trinidad and Tobago)" : "Angla (Trinidado kaj Tobago)",
"English (U.S. Minor Outlying Islands)" : "Angla (Usonaj Malgrandaj Insuloj)",
"English (U.S. Virgin Islands)" : "Angla (Usonaj Virgulinsuloj)",
"English (United Kingdom)" : "Angla (Unuiĝinta Reĝlando)",
"English (United States)" : "Angla (Usono)",
"English (Zimbabwe)" : "Angla (Zimbabvo)",
"English" : "Angla",
"Esperanto" : "Esperanto",
"Estonian (Estonia)" : "Estona (Estonujo)",
"Estonian" : "Estona",
"Ewe (Ghana)" : "Evea (Ganao)",
"Ewe (Togo)" : "Evea (Togolando)",
"Ewe" : "Evea",
"Faroese (Faroe Islands)" : "Feroa (Ferooj)",
"Faroese" : "Feroa",
"Filipino (Philippines)" : "Filipina (Filipinoj)",
"Filipino" : "Filipina",
"Finnish (Finland)" : "Finna (Finnlando)",
"Finnish" : "Finna",
"French (Belgium)" : "Franca (Belgujo)",
"French (Benin)" : "Franca (Benino)",
"French (Burkina Faso)" : "Franca (Burkino)",
"French (Burundi)" : "Franca (Burundo)",
"French (Cameroon)" : "Franca (Kameruno)",
"French (Canada)" : "Franca (Kanado)",
"French (Central African Republic)" : "Franca (Centr-Afriko)",
"French (Chad)" : "Franca (Ĉado)",
"French (Comoros)" : "Franca (Komoroj)",
"French (Congo - Brazzaville)" : "Franca (Kongo Brazavila)",
"French (Congo - Kinshasa)" : "France (Kongo Kinŝasa)",
"French (Côte dIvoire)" : "Franca (Ebur-Bordo)",
"French (Djibouti)" : "Franca (Ĝibutio)",
"French (Equatorial Guinea)" : "Franca (Ekvatora Gvineo)",
"French (France)" : "Franca (Francujo)",
"French (Gabon)" : "Franca (Gabono)",
"French (Guadeloupe)" : "Franca (Gvadelupo)",
"French (Guinea)" : "Franca (Gviano)",
"French (Luxembourg)" : "Franca (Luksemburgo)",
"French (Madagascar)" : "Franca (Madagaskaro)",
"French (Mali)" : "Franca (Malio)",
"French (Martinique)" : "Franca (Martiniko)",
"French (Monaco)" : "Franca (Monako)",
"French (Niger)" : "Franca (Niĝero)",
"French (Rwanda)" : "Franca (Ruando)",
"French (Réunion)" : "Franca (Reunio)",
"French (Saint Barthélemy)" : "Franca (Sankta Bartolomeo)",
"French (Saint Martin)" : "Franca (Sankta Marteno)",
"French (Senegal)" : "Franca (Senegalo)",
"French (Switzerland)" : "Franca (Svislando)",
"French (Togo)" : "Franca (Togolando)",
"French" : "Franca",
"Fulah (Senegal)" : "Fula (Senegalo)",
"Fulah" : "Fula",
"Galician (Spain)" : "Galega (Hispanujo)",
"Galician" : "Galega",
"Ganda (Uganda)" : "Ganda (Ugando)",
"Ganda" : "Ganda",
"Georgian (Georgia)" : "Kartvela (Kvartelujo)",
"Georgian" : "Kartvela",
"German (Austria)" : "Germana (Aŭstrujo)",
"German (Belgium)" : "Germana (Belgujo)",
"German (Germany)" : "Germana (Germanujo)",
"German (Liechtenstein)" : "Germana (Liĥtenŝtejno)",
"German (Luxembourg)" : "Germana (Luksemburgo)",
"German (Switzerland)" : "Germana (Svislando)",
"German" : "Germana",
"Greek (Cyprus)" : "Greka (Kipro)",
"Greek (Greece)" : "Greka (Grekujo)",
"Greek" : "Greka",
"Gujarati (India)" : "Guĝarata (Barato)",
"Gujarati" : "Guĝarata",
"Gusii (Kenya)" : "Gusia (Kenjo)",
"Gusii" : "Gusia",
"Hausa (Latin)" : "Haŭsa (latina)",
"Hausa (Latin, Ghana)" : "Haŭsa (latina, Ganao)",
"Hausa (Latin, Niger)" : "Haŭsa (latina, Niĝero)",
"Hausa (Latin, Nigeria)" : "Haŭsa (latina, Niĝerio)",
"Hausa" : "Haŭsa",
"Hawaiian (United States)" : "Havaja (Usono)",
"Hawaiian" : "Havaja",
"Hebrew (Israel)" : "Hebrea (Israelo)",
"Hebrew" : "Hebrea",
"Hindi (India)" : "Hindia (Barato)",
"Hindi" : "Hinda",
"Hungarian (Hungary)" : "Hungara (Hungarujo)",
"Hungarian" : "Hungara",
"Icelandic (Iceland)" : "Islanda (Islando)",
"Icelandic" : "Islanda",
"Igbo (Nigeria)" : "Igba (Niĝerio)",
"Igbo" : "Igba",
"Indonesian (Indonesia)" : "Indonezia (Indonezio)",
"Indonesian" : "Indonezia",
"Irish (Ireland)" : "Irlanda (Irlando)",
"Irish" : "Irlanda",
"Italian (Italy)" : "Itala (Italujo)",
"Italian (Switzerland)" : "Itala (Svislando)",
"Italian" : "Itala",
"Japanese (Japan)" : "Japana (Japanujo)",
"Japanese" : "Japana",
"Kabuverdianu (Cape Verde)" : "Koboverda (Kaboverdo)",
"Kabuverdianu" : "Kaboverda",
"Kabyle (Algeria)" : "Kabila (Alĝerio)",
"Kabyle" : "Kabila",
"Kalaallisut (Greenland)" : "Okcidentgronlanda (Gronlando)",
"Kalaallisut" : "Okcidentgronlanda",
"Kalenjin (Kenya)" : "Kalenjin (Kenjo)",
"Kalenjin" : "Kalenjin",
"Kamba (Kenya)" : "Kambaa (Kenjo)",
"Kamba" : "Kambaa",
"Kannada (India)" : "Kanara (Barato)",
"Kannada" : "Kannada",
"Kazakh (Cyrillic)" : "Kazaĥa (cirila)",
"Kazakh (Cyrillic, Kazakhstan)" : "Kazaĥa (cirila, Kazaĥujo)",
"Kazakh" : "Kazaĥa",
"Khmer (Cambodia)" : "Kmera (Kamboĝo)",
"Khmer" : "Kmera",
"Kikuyu (Kenya)" : "Kikuja (Kenjo)",
"Kikuyu" : "Kikuja",
"Kinyarwanda (Rwanda)" : "Ruanda (Ruando)",
"Kinyarwanda" : "Ruanda",
"Konkani (India)" : "Konkana (Barato)",
"Konkani" : "Konkana",
"Korean (South Korea)" : "Korea (Sud-Koreujo)",
"Korean" : "Korea",
"Koyra Chiini (Mali)" : "Okcidenta songhaja (Malio)",
"Koyra Chiini" : "Okcidenta songhaja",
"Koyraboro Senni (Mali)" : "Orienta songhaja (Malio)",
"Koyraboro Senni" : "Orienta songhaja",
"Langi (Tanzania)" : "Rangia (Tanzanio)",
"Langi" : "Rangia",
"Latvian (Latvia)" : "Latva (Latvujo)",
"Latvian" : "Latva",
"Lithuanian (Lithuania)" : "Litova (Litovujo)",
"Lithuanian" : "Litova",
"Luo (Kenya)" : "Lua (Kenjo)",
"Luo" : "Lua",
"Luyia (Kenya)" : "Luhja (Kenjo)",
"Luyia" : "Luhja",
"Macedonian (Macedonia)" : "Makedona (Makedonujo)",
"Macedonian" : "Makedona",
"Machame (Tanzania)" : "Machame (Tanzanio)",
"Machame" : "Machame",
"Makonde (Tanzania)" : "Makonda (Tanzanio)",
"Makonde" : "Makonda",
"Malagasy (Madagascar)" : "Malagasa (Madagaskaro)",
"Malagasy" : "Malagasa",
"Malay (Brunei)" : "Malaja (Brunejo)",
"Malay (Malaysia)" : "Malaja (Malajzio)",
"Malay" : "Malaja",
"Malayalam (India)" : "Malajalama (Barato)",
"Malayalam" : "Malajalama",
"Maltese (Malta)" : "Malta (Malto)",
"Maltese" : "Malta",
"Manx (United Kingdom)" : "Manksa (Unuiĝinta Reĝlando)",
"Manx" : "Manksa",
"Marathi (India)" : "Marata (Barato)",
"Marathi" : "Marata",
"Masai (Kenya)" : "Masaja (Kenjo)",
"Masai (Tanzania)" : "Masaja (Tanzanio)",
"Masai" : "Masaja",
"Meru (Kenya)" : "Merua (Kenjo)",
"Meru" : "Merua",
"Morisyen (Mauritius)" : "Maŭrica (Maŭricio)",
"Morisyen" : "Maŭrica",
"Nama (Namibia)" : "Nama (Namibio)",
"Nama" : "Nama",
"Nepali (India)" : "Nepala (Barato)",
"Nepali (Nepal)" : "Nepala (Nepalo)",
"Nepali" : "Nepala",
"North Ndebele (Zimbabwe)" : "Norda ndebela (Zimbabvo)",
"North Ndebele" : "Ndebela norda",
"Norwegian Bokmål (Norway)" : "Norvega bukmolo (Norvegujo)",
"Norwegian Bokmål" : "Norvega bukmolo",
"Norwegian Nynorsk (Norway)" : "Norvega njunoŝko (Norvegujo)",
"Norwegian Nynorsk" : "Norvega njunoŝko",
"Oriya" : "Orijo",
"Oromo" : "Oroma",

View file

@ -156,52 +156,235 @@
"Bosnian" : "Bosna",
"Bulgarian (Bulgaria)" : "Bulgara (Bulgarujo)",
"Bulgarian" : "Bulgara",
"Burmese (Myanmar [Burma])" : "Birma (Birmo)",
"Burmese" : "Birma",
"Catalan (Spain)" : "Kataluna (Hispanujo)",
"Catalan" : "Kataluna",
"Central Morocco Tamazight (Latin)" : "Berbera de centra Maroko (latina)",
"Central Morocco Tamazight (Latin, Morocco)" : "Berbera de centra Maroko (latina, Maroko)",
"Central Morocco Tamazight" : "Berbera de centra Maroko",
"Cherokee (United States)" : "Ĉeroka (Usono)",
"Cherokee" : "Ĉeroka",
"Chiga (Uganda)" : "Kigaa (Ugando)",
"Chiga" : "Kigaa",
"Chinese (Simplified Han)" : "Ĉina (simpligita ĉina skribo)",
"Chinese (Simplified Han, China)" : "Ĉina (simpligita ĉina skribo, Ĉinujo)",
"Chinese (Simplified Han, Hong Kong SAR China)" : "Ĉina (simpligita ĉina skribo, speciala administra regiono Honkongo, Ĉinujo)",
"Chinese (Simplified Han, Macau SAR China)" : "Ĉina (simpligita ĉina skribo, speciala administra regiono Makao, Ĉinujo)",
"Chinese (Simplified Han, Singapore)" : "Ĉina (simpligita ĉina skribo, Singapuro)",
"Chinese (Traditional Han)" : "Ĉina (tradicia ĉina skribo)",
"Chinese (Traditional Han, Hong Kong SAR China)" : "Ĉina (tradicia ĉina skribo, speciala administra regiono Honkongo, Ĉinujo)",
"Chinese (Traditional Han, Macau SAR China)" : "Ĉina (tradicia ĉina skribo, speciala administra regiono Makao, Ĉinujo)",
"Chinese (Traditional Han, Taiwan)" : "Ĉina (tradicia ĉina skribo, Tajvano)",
"Chinese" : "Ĉina",
"Cornish (United Kingdom)" : "Kornvala (Unuiĝinta Reĝlando)",
"Cornish" : "Kornvala",
"Croatian (Croatia)" : "Kroata (Kroatujo)",
"Croatian" : "Kroata",
"Czech (Czech Republic)" : "Ĉeĥa (Ĉeĥujo)",
"Czech" : "Ĉeĥa",
"Danish (Denmark)" : "Dana (Danujo)",
"Danish" : "Dana",
"Dutch (Belgium)" : "Nederlanda (Belgujo)",
"Dutch (Netherlands)" : "Nederlando (Nederlando)",
"Dutch" : "Nederlanda",
"Embu (Kenya)" : "Embua (Kenjo)",
"Embu" : "Embua",
"English (American Samoa)" : "Angla (Usona Samoo)",
"English (Australia)" : "Angla (Aŭstralio)",
"English (Belgium)" : "Angla (Belgujo)",
"English (Belize)" : "Angla (Belizo)",
"English (Botswana)" : "Angla (Bocvano)",
"English (Canada)" : "Angla (Kanado)",
"English (Guam)" : "Angla (Gvamo)",
"English (Hong Kong SAR China)" : "Angla (speciala administra regiono Honkongo, Ĉinujo)",
"English (India)" : "Angla (Barato)",
"English (Ireland)" : "Angla (Irlando)",
"English (Jamaica)" : "Angla (Jamajko)",
"English (Malta)" : "Angla (Malto)",
"English (Marshall Islands)" : "Angla (Marŝala Insularo)",
"English (Mauritius)" : "Angla (Maŭricio)",
"English (Namibia)" : "Angla (Namibio)",
"English (New Zealand)" : "Angla (Novzelando)",
"English (Northern Mariana Islands)" : "Angla (Nord-Marianoj)",
"English (Pakistan)" : "Angla (Pakistano)",
"English (Philippines)" : "Angla (Filipinoj)",
"English (Singapore)" : "Angla (Singapuro)",
"English (South Africa)" : "Angla (Sudafriko)",
"English (Trinidad and Tobago)" : "Angla (Trinidado kaj Tobago)",
"English (U.S. Minor Outlying Islands)" : "Angla (Usonaj Malgrandaj Insuloj)",
"English (U.S. Virgin Islands)" : "Angla (Usonaj Virgulinsuloj)",
"English (United Kingdom)" : "Angla (Unuiĝinta Reĝlando)",
"English (United States)" : "Angla (Usono)",
"English (Zimbabwe)" : "Angla (Zimbabvo)",
"English" : "Angla",
"Esperanto" : "Esperanto",
"Estonian (Estonia)" : "Estona (Estonujo)",
"Estonian" : "Estona",
"Ewe (Ghana)" : "Evea (Ganao)",
"Ewe (Togo)" : "Evea (Togolando)",
"Ewe" : "Evea",
"Faroese (Faroe Islands)" : "Feroa (Ferooj)",
"Faroese" : "Feroa",
"Filipino (Philippines)" : "Filipina (Filipinoj)",
"Filipino" : "Filipina",
"Finnish (Finland)" : "Finna (Finnlando)",
"Finnish" : "Finna",
"French (Belgium)" : "Franca (Belgujo)",
"French (Benin)" : "Franca (Benino)",
"French (Burkina Faso)" : "Franca (Burkino)",
"French (Burundi)" : "Franca (Burundo)",
"French (Cameroon)" : "Franca (Kameruno)",
"French (Canada)" : "Franca (Kanado)",
"French (Central African Republic)" : "Franca (Centr-Afriko)",
"French (Chad)" : "Franca (Ĉado)",
"French (Comoros)" : "Franca (Komoroj)",
"French (Congo - Brazzaville)" : "Franca (Kongo Brazavila)",
"French (Congo - Kinshasa)" : "France (Kongo Kinŝasa)",
"French (Côte dIvoire)" : "Franca (Ebur-Bordo)",
"French (Djibouti)" : "Franca (Ĝibutio)",
"French (Equatorial Guinea)" : "Franca (Ekvatora Gvineo)",
"French (France)" : "Franca (Francujo)",
"French (Gabon)" : "Franca (Gabono)",
"French (Guadeloupe)" : "Franca (Gvadelupo)",
"French (Guinea)" : "Franca (Gviano)",
"French (Luxembourg)" : "Franca (Luksemburgo)",
"French (Madagascar)" : "Franca (Madagaskaro)",
"French (Mali)" : "Franca (Malio)",
"French (Martinique)" : "Franca (Martiniko)",
"French (Monaco)" : "Franca (Monako)",
"French (Niger)" : "Franca (Niĝero)",
"French (Rwanda)" : "Franca (Ruando)",
"French (Réunion)" : "Franca (Reunio)",
"French (Saint Barthélemy)" : "Franca (Sankta Bartolomeo)",
"French (Saint Martin)" : "Franca (Sankta Marteno)",
"French (Senegal)" : "Franca (Senegalo)",
"French (Switzerland)" : "Franca (Svislando)",
"French (Togo)" : "Franca (Togolando)",
"French" : "Franca",
"Fulah (Senegal)" : "Fula (Senegalo)",
"Fulah" : "Fula",
"Galician (Spain)" : "Galega (Hispanujo)",
"Galician" : "Galega",
"Ganda (Uganda)" : "Ganda (Ugando)",
"Ganda" : "Ganda",
"Georgian (Georgia)" : "Kartvela (Kvartelujo)",
"Georgian" : "Kartvela",
"German (Austria)" : "Germana (Aŭstrujo)",
"German (Belgium)" : "Germana (Belgujo)",
"German (Germany)" : "Germana (Germanujo)",
"German (Liechtenstein)" : "Germana (Liĥtenŝtejno)",
"German (Luxembourg)" : "Germana (Luksemburgo)",
"German (Switzerland)" : "Germana (Svislando)",
"German" : "Germana",
"Greek (Cyprus)" : "Greka (Kipro)",
"Greek (Greece)" : "Greka (Grekujo)",
"Greek" : "Greka",
"Gujarati (India)" : "Guĝarata (Barato)",
"Gujarati" : "Guĝarata",
"Gusii (Kenya)" : "Gusia (Kenjo)",
"Gusii" : "Gusia",
"Hausa (Latin)" : "Haŭsa (latina)",
"Hausa (Latin, Ghana)" : "Haŭsa (latina, Ganao)",
"Hausa (Latin, Niger)" : "Haŭsa (latina, Niĝero)",
"Hausa (Latin, Nigeria)" : "Haŭsa (latina, Niĝerio)",
"Hausa" : "Haŭsa",
"Hawaiian (United States)" : "Havaja (Usono)",
"Hawaiian" : "Havaja",
"Hebrew (Israel)" : "Hebrea (Israelo)",
"Hebrew" : "Hebrea",
"Hindi (India)" : "Hindia (Barato)",
"Hindi" : "Hinda",
"Hungarian (Hungary)" : "Hungara (Hungarujo)",
"Hungarian" : "Hungara",
"Icelandic (Iceland)" : "Islanda (Islando)",
"Icelandic" : "Islanda",
"Igbo (Nigeria)" : "Igba (Niĝerio)",
"Igbo" : "Igba",
"Indonesian (Indonesia)" : "Indonezia (Indonezio)",
"Indonesian" : "Indonezia",
"Irish (Ireland)" : "Irlanda (Irlando)",
"Irish" : "Irlanda",
"Italian (Italy)" : "Itala (Italujo)",
"Italian (Switzerland)" : "Itala (Svislando)",
"Italian" : "Itala",
"Japanese (Japan)" : "Japana (Japanujo)",
"Japanese" : "Japana",
"Kabuverdianu (Cape Verde)" : "Koboverda (Kaboverdo)",
"Kabuverdianu" : "Kaboverda",
"Kabyle (Algeria)" : "Kabila (Alĝerio)",
"Kabyle" : "Kabila",
"Kalaallisut (Greenland)" : "Okcidentgronlanda (Gronlando)",
"Kalaallisut" : "Okcidentgronlanda",
"Kalenjin (Kenya)" : "Kalenjin (Kenjo)",
"Kalenjin" : "Kalenjin",
"Kamba (Kenya)" : "Kambaa (Kenjo)",
"Kamba" : "Kambaa",
"Kannada (India)" : "Kanara (Barato)",
"Kannada" : "Kannada",
"Kazakh (Cyrillic)" : "Kazaĥa (cirila)",
"Kazakh (Cyrillic, Kazakhstan)" : "Kazaĥa (cirila, Kazaĥujo)",
"Kazakh" : "Kazaĥa",
"Khmer (Cambodia)" : "Kmera (Kamboĝo)",
"Khmer" : "Kmera",
"Kikuyu (Kenya)" : "Kikuja (Kenjo)",
"Kikuyu" : "Kikuja",
"Kinyarwanda (Rwanda)" : "Ruanda (Ruando)",
"Kinyarwanda" : "Ruanda",
"Konkani (India)" : "Konkana (Barato)",
"Konkani" : "Konkana",
"Korean (South Korea)" : "Korea (Sud-Koreujo)",
"Korean" : "Korea",
"Koyra Chiini (Mali)" : "Okcidenta songhaja (Malio)",
"Koyra Chiini" : "Okcidenta songhaja",
"Koyraboro Senni (Mali)" : "Orienta songhaja (Malio)",
"Koyraboro Senni" : "Orienta songhaja",
"Langi (Tanzania)" : "Rangia (Tanzanio)",
"Langi" : "Rangia",
"Latvian (Latvia)" : "Latva (Latvujo)",
"Latvian" : "Latva",
"Lithuanian (Lithuania)" : "Litova (Litovujo)",
"Lithuanian" : "Litova",
"Luo (Kenya)" : "Lua (Kenjo)",
"Luo" : "Lua",
"Luyia (Kenya)" : "Luhja (Kenjo)",
"Luyia" : "Luhja",
"Macedonian (Macedonia)" : "Makedona (Makedonujo)",
"Macedonian" : "Makedona",
"Machame (Tanzania)" : "Machame (Tanzanio)",
"Machame" : "Machame",
"Makonde (Tanzania)" : "Makonda (Tanzanio)",
"Makonde" : "Makonda",
"Malagasy (Madagascar)" : "Malagasa (Madagaskaro)",
"Malagasy" : "Malagasa",
"Malay (Brunei)" : "Malaja (Brunejo)",
"Malay (Malaysia)" : "Malaja (Malajzio)",
"Malay" : "Malaja",
"Malayalam (India)" : "Malajalama (Barato)",
"Malayalam" : "Malajalama",
"Maltese (Malta)" : "Malta (Malto)",
"Maltese" : "Malta",
"Manx (United Kingdom)" : "Manksa (Unuiĝinta Reĝlando)",
"Manx" : "Manksa",
"Marathi (India)" : "Marata (Barato)",
"Marathi" : "Marata",
"Masai (Kenya)" : "Masaja (Kenjo)",
"Masai (Tanzania)" : "Masaja (Tanzanio)",
"Masai" : "Masaja",
"Meru (Kenya)" : "Merua (Kenjo)",
"Meru" : "Merua",
"Morisyen (Mauritius)" : "Maŭrica (Maŭricio)",
"Morisyen" : "Maŭrica",
"Nama (Namibia)" : "Nama (Namibio)",
"Nama" : "Nama",
"Nepali (India)" : "Nepala (Barato)",
"Nepali (Nepal)" : "Nepala (Nepalo)",
"Nepali" : "Nepala",
"North Ndebele (Zimbabwe)" : "Norda ndebela (Zimbabvo)",
"North Ndebele" : "Ndebela norda",
"Norwegian Bokmål (Norway)" : "Norvega bukmolo (Norvegujo)",
"Norwegian Bokmål" : "Norvega bukmolo",
"Norwegian Nynorsk (Norway)" : "Norvega njunoŝko (Norvegujo)",
"Norwegian Nynorsk" : "Norvega njunoŝko",
"Oriya" : "Orijo",
"Oromo" : "Oroma",

View file

@ -79,7 +79,80 @@ OC.L10N.register(
"Strong password" : "Pasahitz sendoa",
"Select a profile picture" : "Profilaren irudia aukeratu",
"Groups" : "Taldeak",
"Serbian" : "Serbiera",
"Sinhala (Sri Lanka)" : "Sinhala (Sri Lanka)",
"Sinhala" : "Sinhala",
"Slovak (Slovakia)" : "Eslovakiera (Eslovakia)",
"Slovak" : "Eslovakiera",
"Slovenian (Slovenia)" : "Esloveniera (Eslovenia)",
"Slovenian" : "Esloveniera",
"Somali (Ethiopia)" : "Somaliera (Etiopia)",
"Somali (Kenya)" : "Somaliera (Kenya)",
"Somali (Somalia)" : "Somaliera (Somalia)",
"Somali" : "Somaliera",
"Spanish (Argentina)" : "Gaztelania (Argentina)",
"Spanish (Bolivia)" : "Gaztelania (Bolivia)",
"Spanish (Chile)" : "Gaztelania (Txile)",
"Spanish (Colombia)" : "Gaztelania (Kolombia)",
"Spanish (Costa Rica)" : "Gaztelania (Costa Rica)",
"Spanish (Dominican Republic)" : "Gaztelania (Dominikar Errepublika)",
"Spanish (Ecuador)" : "Gaztelania (Ecuador)",
"Spanish (El Salvador)" : "Gaztelania (El Salvador)",
"Spanish (Equatorial Guinea)" : "Gaztelania (Ekuatore Ginea)",
"Spanish (Guatemala)" : "Gaztelania (Guatemala)",
"Spanish (Honduras)" : "Gaztelania (Honduras)",
"Spanish (Latin America)" : "Gaztelania (Latinoamerika)",
"Spanish (Mexico)" : "Gaztelania (Mexico)",
"Spanish (Nicaragua)" : "Gaztelania (Nicaragua)",
"Spanish (Panama)" : "Gaztelania (Panama)",
"Spanish (Paraguay)" : "Gaztelania (Paraguay)",
"Spanish (Peru)" : "Gaztelania (Peru)",
"Spanish (Puerto Rico)" : "Gaztelania (Puerto Rico)",
"Spanish (Spain)" : "Gaztelania (Espainia)",
"Spanish (United States)" : "Gaztelania (Estatu Batuak)",
"Spanish (Uruguay)" : "Gaztelania (Uruguay)",
"Spanish (Venezuela)" : "Gaztelania (Venezuela)",
"Spanish" : "Gaztelania",
"Swahili (Kenya)" : "Swahili (Kenya)",
"Swahili (Tanzania)" : "Swahili (Tanzania)",
"Swahili" : "Swahili",
"Swedish (Finland)" : "Suediera (Finlandia)",
"Swedish (Sweden)" : "Suediera (Suedia)",
"Swedish" : "Suediera",
"Tamil (India)" : "Tamilera (India)",
"Tamil (Sri Lanka)" : "Tamilera (Sri Lanka)",
"Tamil" : "Tamilera",
"Telugu (India)" : "Telugu (India)",
"Telugu" : "Telugu",
"Teso (Kenya)" : "Teso (Kenya)",
"Teso (Uganda)" : "Teso (Uganda)",
"Thai (Thailand)" : "Thaiera (Thailandia)",
"Thai" : "Thaiera",
"Tibetan (China)" : "Tibetera (Txina)",
"Tibetan (India)" : "Tibetera (India)",
"Tibetan" : "Tibetera",
"Tonga (Tonga)" : "Tongera (Tonga)",
"Tonga" : "Tongera",
"Turkish (Turkey)" : "Turkiera (Turkia)",
"Turkish" : "Turkiera",
"Ukrainian (Ukraine)" : "Ukrainera (Ukrania)",
"Ukrainian" : "Ukrainera",
"Urdu (India)" : "Urdu (India)",
"Urdu (Pakistan)" : "Urdu (Pakistan)",
"Urdu" : "Urdu",
"Uzbek (Arabic)" : "Uzbekera (Arabiarra)",
"Uzbek (Arabic, Afghanistan)" : "Uzbekera (Arabiarra, Afghanistan)",
"Uzbek" : "Uzbekera",
"Vietnamese (Vietnam)" : "Vietnamera (Vietnam)",
"Vietnamese" : "Vietnamera",
"Welsh (United Kingdom)" : "Gales (Erresuma Batua)",
"Welsh" : "Gales",
"Yoruba (Nigeria)" : "Jorubera (Nigeria)",
"Yoruba" : "Jorubera",
"Zulu (South Africa)" : "Zuluera (Hego Afrika)",
"Zulu" : "Zuluera",
"Limit to groups" : "Taldeetara mugatu",
"Excluded groups" : "Baztertu taldeak",
"Save changes" : "Gorde aldaketak",
"Device settings" : "Gailuaren ezarpenak",
"Internet Explorer" : "Internet Explorer",
@ -88,12 +161,20 @@ OC.L10N.register(
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Google Chrome Android-erako",
"iPhone" : "iPhone",
"iPad" : "iPad",
"Nextcloud iOS app" : "Nextcloud iOS aplikazioa",
"Nextcloud Android app" : "Nextcloud Android aplikazioa",
"Nextcloud Talk for iOS" : "Nextcloud Talk iOSentzat",
"Nextcloud Talk for Android" : "Nextcloud Talk Androidentzat",
"Allow filesystem access" : "Onartu fitxategi sisteman sarbidea",
"Rename" : "Berrizendatu",
"Revoke" : "Ezeztatu",
"Sync client - {os}" : "Sinkronizatu bezeroaren - {os}",
"This session" : "Saio hau",
"Device" : "Gailu",
"Last activity" : "Azken jarduera",
"Devices & sessions" : "Gailuak eta saioak",
"Web, desktop and mobile clients currently logged in to your account." : "Web-gune, mahaigain eta mugikorrean zure kontuan saioa hasita dago.",
"Error while creating device token" : "Errorea gailuaren tokena sortzean",
"Error while deleting the token" : "Errorea tokena ezabatzean",
@ -104,6 +185,7 @@ OC.L10N.register(
"Username" : "Erabiltzaile izena",
"Password" : "Pasahitza",
"Done" : "Egina",
"Show QR code for mobile apps" : "Erakutsi QR kodea mugikorrentzako aplikazioetan",
"Copied!" : "Kopiatua!",
"Copy" : "Kopiatu",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikazio ofizialak komunitateak eta komunitatean garatzen dira. Funtzionalak dira eta produkziorako gertu daude.",
@ -122,12 +204,22 @@ OC.L10N.register(
"Admin documentation" : "Administratzailearen dokumentazioa",
"Developer documentation" : "Garatzailearen dokumentazioa",
"No apps found for your version" : "Ez dira aplikaziorik aurkitu zure bertsiorako",
"Disable all" : "Desgaitu guztia",
"Enable all" : "Gaitu denak",
"Download and enable" : "Deskargatu eta gaitu",
"Enable" : "Gaitu",
"The app will be downloaded from the app store" : "Aplikazioa aplikazio dendatik deskargatuko da",
"New password" : "Pasahitz berria",
"Add user in group" : "Gehitu erabiltzailea talde batean",
"No language set" : "Ez da hizkuntzarik ezarri",
"Never" : "Inoiz ez",
"Delete user" : "Ezabatu erabiltzailea",
"Disable user" : "Desgaitu erabiltzailea",
"Enable user" : "Gaitu erabiltzailea",
"Resend welcome email" : "Birbidali ongi etorri mezua",
"{size} used" : "{size} erabilita",
"Welcome mail sent!" : "Ongi etorri mezua bidalita!",
"Display name" : "Erakutsi izena",
"Email" : "E-posta",
"Group admin for" : "Talde honen administratzailea",
"Quota" : "Kuota",
@ -135,14 +227,20 @@ OC.L10N.register(
"Storage location" : "Biltegiratze kokapena",
"User backend" : "Erabiltzaile jatorria",
"Last login" : "Azken saioa",
"Default language" : "Hizkuntza lehenetsia",
"Add a new user" : "Gehitu erabiltze berria",
"Unlimited" : "Mugarik gabe",
"Default quota" : "Kuota lehenetsia",
"All languages" : "Hizkuntza guztiak",
"Your apps" : "Zure aplikazioak",
"Disabled apps" : "Gaitu gabeko aplikazioak",
"Updates" : "Eguneraketak",
"App bundles" : "Aplikazio sortak",
"New user" : "Erabiltzaile berria",
"Show Languages" : "Erakutsi Hizkuntzak",
"Show last login" : "Azken izen ematea erakutsi",
"Show user backend" : "Bistaratu erabiltzaile motorra",
"Remove group" : "Ezabatu taldea",
"Admins" : "Administratzaileak",
"Everyone" : "Edonor",
"Add group" : "Taldea gehitu",
@ -155,6 +253,7 @@ OC.L10N.register(
"Valid until %s" : "%s arte baliogarria",
"Import root certificate" : "Inportatu root ziurtagiria",
"Administrator documentation" : "Administratzaile dokumentazioa",
"Documentation" : "Dokumentazioa",
"Forum" : "Foroa",
"None" : "Ezer",
"Login" : "Saio hasiera",
@ -226,6 +325,7 @@ OC.L10N.register(
"Administration" : "Administrazioa",
"Like our Facebook page" : "Gure Facebook orrian Like egin",
"Follow us on Twitter" : "Jarrai gaitzazu Twitterren",
"Follow us on Mastodon" : "Jarraitu gaitzazu Mastodon-en",
"Check out our blog" : "Gure bloga kontsultatu",
"Subscribe to our newsletter" : "Izena eman gure buletinean",
"Profile picture" : "Zure irudia",
@ -253,6 +353,12 @@ OC.L10N.register(
"Twitter handle @…" : "Twitter heldulekua @...",
"Help translate" : "Lagundu itzultzen",
"Current password" : "Uneko pasahitza",
"Change password" : "Aldatu pasahitza"
"Change password" : "Aldatu pasahitza",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS Bezeroa",
"Android Client" : "Android Bezeroa",
"Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.",
"Press Ctrl-C to copy." : "Sakatu Ctrl-C kopiatzeko."
},
"nplurals=2; plural=(n != 1);");

View file

@ -77,7 +77,80 @@
"Strong password" : "Pasahitz sendoa",
"Select a profile picture" : "Profilaren irudia aukeratu",
"Groups" : "Taldeak",
"Serbian" : "Serbiera",
"Sinhala (Sri Lanka)" : "Sinhala (Sri Lanka)",
"Sinhala" : "Sinhala",
"Slovak (Slovakia)" : "Eslovakiera (Eslovakia)",
"Slovak" : "Eslovakiera",
"Slovenian (Slovenia)" : "Esloveniera (Eslovenia)",
"Slovenian" : "Esloveniera",
"Somali (Ethiopia)" : "Somaliera (Etiopia)",
"Somali (Kenya)" : "Somaliera (Kenya)",
"Somali (Somalia)" : "Somaliera (Somalia)",
"Somali" : "Somaliera",
"Spanish (Argentina)" : "Gaztelania (Argentina)",
"Spanish (Bolivia)" : "Gaztelania (Bolivia)",
"Spanish (Chile)" : "Gaztelania (Txile)",
"Spanish (Colombia)" : "Gaztelania (Kolombia)",
"Spanish (Costa Rica)" : "Gaztelania (Costa Rica)",
"Spanish (Dominican Republic)" : "Gaztelania (Dominikar Errepublika)",
"Spanish (Ecuador)" : "Gaztelania (Ecuador)",
"Spanish (El Salvador)" : "Gaztelania (El Salvador)",
"Spanish (Equatorial Guinea)" : "Gaztelania (Ekuatore Ginea)",
"Spanish (Guatemala)" : "Gaztelania (Guatemala)",
"Spanish (Honduras)" : "Gaztelania (Honduras)",
"Spanish (Latin America)" : "Gaztelania (Latinoamerika)",
"Spanish (Mexico)" : "Gaztelania (Mexico)",
"Spanish (Nicaragua)" : "Gaztelania (Nicaragua)",
"Spanish (Panama)" : "Gaztelania (Panama)",
"Spanish (Paraguay)" : "Gaztelania (Paraguay)",
"Spanish (Peru)" : "Gaztelania (Peru)",
"Spanish (Puerto Rico)" : "Gaztelania (Puerto Rico)",
"Spanish (Spain)" : "Gaztelania (Espainia)",
"Spanish (United States)" : "Gaztelania (Estatu Batuak)",
"Spanish (Uruguay)" : "Gaztelania (Uruguay)",
"Spanish (Venezuela)" : "Gaztelania (Venezuela)",
"Spanish" : "Gaztelania",
"Swahili (Kenya)" : "Swahili (Kenya)",
"Swahili (Tanzania)" : "Swahili (Tanzania)",
"Swahili" : "Swahili",
"Swedish (Finland)" : "Suediera (Finlandia)",
"Swedish (Sweden)" : "Suediera (Suedia)",
"Swedish" : "Suediera",
"Tamil (India)" : "Tamilera (India)",
"Tamil (Sri Lanka)" : "Tamilera (Sri Lanka)",
"Tamil" : "Tamilera",
"Telugu (India)" : "Telugu (India)",
"Telugu" : "Telugu",
"Teso (Kenya)" : "Teso (Kenya)",
"Teso (Uganda)" : "Teso (Uganda)",
"Thai (Thailand)" : "Thaiera (Thailandia)",
"Thai" : "Thaiera",
"Tibetan (China)" : "Tibetera (Txina)",
"Tibetan (India)" : "Tibetera (India)",
"Tibetan" : "Tibetera",
"Tonga (Tonga)" : "Tongera (Tonga)",
"Tonga" : "Tongera",
"Turkish (Turkey)" : "Turkiera (Turkia)",
"Turkish" : "Turkiera",
"Ukrainian (Ukraine)" : "Ukrainera (Ukrania)",
"Ukrainian" : "Ukrainera",
"Urdu (India)" : "Urdu (India)",
"Urdu (Pakistan)" : "Urdu (Pakistan)",
"Urdu" : "Urdu",
"Uzbek (Arabic)" : "Uzbekera (Arabiarra)",
"Uzbek (Arabic, Afghanistan)" : "Uzbekera (Arabiarra, Afghanistan)",
"Uzbek" : "Uzbekera",
"Vietnamese (Vietnam)" : "Vietnamera (Vietnam)",
"Vietnamese" : "Vietnamera",
"Welsh (United Kingdom)" : "Gales (Erresuma Batua)",
"Welsh" : "Gales",
"Yoruba (Nigeria)" : "Jorubera (Nigeria)",
"Yoruba" : "Jorubera",
"Zulu (South Africa)" : "Zuluera (Hego Afrika)",
"Zulu" : "Zuluera",
"Limit to groups" : "Taldeetara mugatu",
"Excluded groups" : "Baztertu taldeak",
"Save changes" : "Gorde aldaketak",
"Device settings" : "Gailuaren ezarpenak",
"Internet Explorer" : "Internet Explorer",
@ -86,12 +159,20 @@
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Google Chrome Android-erako",
"iPhone" : "iPhone",
"iPad" : "iPad",
"Nextcloud iOS app" : "Nextcloud iOS aplikazioa",
"Nextcloud Android app" : "Nextcloud Android aplikazioa",
"Nextcloud Talk for iOS" : "Nextcloud Talk iOSentzat",
"Nextcloud Talk for Android" : "Nextcloud Talk Androidentzat",
"Allow filesystem access" : "Onartu fitxategi sisteman sarbidea",
"Rename" : "Berrizendatu",
"Revoke" : "Ezeztatu",
"Sync client - {os}" : "Sinkronizatu bezeroaren - {os}",
"This session" : "Saio hau",
"Device" : "Gailu",
"Last activity" : "Azken jarduera",
"Devices & sessions" : "Gailuak eta saioak",
"Web, desktop and mobile clients currently logged in to your account." : "Web-gune, mahaigain eta mugikorrean zure kontuan saioa hasita dago.",
"Error while creating device token" : "Errorea gailuaren tokena sortzean",
"Error while deleting the token" : "Errorea tokena ezabatzean",
@ -102,6 +183,7 @@
"Username" : "Erabiltzaile izena",
"Password" : "Pasahitza",
"Done" : "Egina",
"Show QR code for mobile apps" : "Erakutsi QR kodea mugikorrentzako aplikazioetan",
"Copied!" : "Kopiatua!",
"Copy" : "Kopiatu",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikazio ofizialak komunitateak eta komunitatean garatzen dira. Funtzionalak dira eta produkziorako gertu daude.",
@ -120,12 +202,22 @@
"Admin documentation" : "Administratzailearen dokumentazioa",
"Developer documentation" : "Garatzailearen dokumentazioa",
"No apps found for your version" : "Ez dira aplikaziorik aurkitu zure bertsiorako",
"Disable all" : "Desgaitu guztia",
"Enable all" : "Gaitu denak",
"Download and enable" : "Deskargatu eta gaitu",
"Enable" : "Gaitu",
"The app will be downloaded from the app store" : "Aplikazioa aplikazio dendatik deskargatuko da",
"New password" : "Pasahitz berria",
"Add user in group" : "Gehitu erabiltzailea talde batean",
"No language set" : "Ez da hizkuntzarik ezarri",
"Never" : "Inoiz ez",
"Delete user" : "Ezabatu erabiltzailea",
"Disable user" : "Desgaitu erabiltzailea",
"Enable user" : "Gaitu erabiltzailea",
"Resend welcome email" : "Birbidali ongi etorri mezua",
"{size} used" : "{size} erabilita",
"Welcome mail sent!" : "Ongi etorri mezua bidalita!",
"Display name" : "Erakutsi izena",
"Email" : "E-posta",
"Group admin for" : "Talde honen administratzailea",
"Quota" : "Kuota",
@ -133,14 +225,20 @@
"Storage location" : "Biltegiratze kokapena",
"User backend" : "Erabiltzaile jatorria",
"Last login" : "Azken saioa",
"Default language" : "Hizkuntza lehenetsia",
"Add a new user" : "Gehitu erabiltze berria",
"Unlimited" : "Mugarik gabe",
"Default quota" : "Kuota lehenetsia",
"All languages" : "Hizkuntza guztiak",
"Your apps" : "Zure aplikazioak",
"Disabled apps" : "Gaitu gabeko aplikazioak",
"Updates" : "Eguneraketak",
"App bundles" : "Aplikazio sortak",
"New user" : "Erabiltzaile berria",
"Show Languages" : "Erakutsi Hizkuntzak",
"Show last login" : "Azken izen ematea erakutsi",
"Show user backend" : "Bistaratu erabiltzaile motorra",
"Remove group" : "Ezabatu taldea",
"Admins" : "Administratzaileak",
"Everyone" : "Edonor",
"Add group" : "Taldea gehitu",
@ -153,6 +251,7 @@
"Valid until %s" : "%s arte baliogarria",
"Import root certificate" : "Inportatu root ziurtagiria",
"Administrator documentation" : "Administratzaile dokumentazioa",
"Documentation" : "Dokumentazioa",
"Forum" : "Foroa",
"None" : "Ezer",
"Login" : "Saio hasiera",
@ -224,6 +323,7 @@
"Administration" : "Administrazioa",
"Like our Facebook page" : "Gure Facebook orrian Like egin",
"Follow us on Twitter" : "Jarrai gaitzazu Twitterren",
"Follow us on Mastodon" : "Jarraitu gaitzazu Mastodon-en",
"Check out our blog" : "Gure bloga kontsultatu",
"Subscribe to our newsletter" : "Izena eman gure buletinean",
"Profile picture" : "Zure irudia",
@ -251,6 +351,12 @@
"Twitter handle @…" : "Twitter heldulekua @...",
"Help translate" : "Lagundu itzultzen",
"Current password" : "Uneko pasahitza",
"Change password" : "Aldatu pasahitza"
"Change password" : "Aldatu pasahitza",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS Bezeroa",
"Android Client" : "Android Bezeroa",
"Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.",
"Press Ctrl-C to copy." : "Sakatu Ctrl-C kopiatzeko."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -139,6 +139,8 @@ OC.L10N.register(
"Basque (Spain)" : "Basque (Espagne)",
"Basque" : "Basque",
"Belarusian" : "Biélorusse",
"Bosnian" : "Bosnien",
"Bulgarian" : "Bulgare",
"Catalan" : "Catalan",
"Chinese" : "Chinois",
"Croatian (Croatia)" : "Croate (Croatie)",
@ -151,10 +153,13 @@ OC.L10N.register(
"English (Belgium)" : "Anglais (Belgique)",
"English (Botswana)" : "Anglais (Botswana)",
"English (Canada)" : "Anglais (Canada)",
"English (Guam)" : "Anglais (Guam)",
"English (India)" : "Anglais (Inde)",
"English (Ireland)" : "Anglais (Irlande)",
"English (Jamaica)" : "Anglais (Jamaïque)",
"English (Malta)" : "Anglais (Malte)",
"English (Mauritius)" : "Anglais (Îles Maurice)",
"English (Namibia)" : "Anglais (Namibie)",
"English (New Zealand)" : "Anglais (Nouvelle-Zélande)",
"English (South Africa)" : "Anglais (Afrique du Sud)",
"English (United States)" : "Anglais (États-Unis)",
@ -194,34 +199,68 @@ OC.L10N.register(
"French (Switzerland)" : "Français (Suisse)",
"French (Togo)" : "Français (Togo)",
"French" : "Français",
"Galician" : "Galicien",
"Georgian (Georgia)" : "Géorgien (Géorgie)",
"Georgian" : "Géorgien",
"German (Austria)" : "Allemand (Autriche)",
"German (Belgium)" : "Allemand (Belgique)",
"German (Germany)" : "Allemand (Allemagne)",
"German (Luxembourg)" : "Allemand (Luxembourg)",
"German (Switzerland)" : "Allemand (Suisse)",
"German" : "Allemand",
"Hebrew" : "Hébreu",
"Hindi" : "Hindi",
"Hungarian" : "Hongrois",
"Icelandic" : "Islandais",
"Igbo (Nigeria)" : "Igbo (Nigeria)",
"Igbo" : "Igbo",
"Indonesian" : "Indonésien",
"Irish" : "Irlandais",
"Italian (Italy)" : "Italien (Italie)",
"Italian" : "Italien",
"Japanese (Japan)" : "Japonais (Japon)",
"Japanese" : "Japonais",
"Kabyle (Algeria)" : "Kabyle (Algérie)",
"Kabyle" : "Kabyle",
"Kazakh" : "Kazakh",
"Korean (South Korea)" : "Coréen (Corée du Sud)",
"Korean" : "Coréen",
"Latvian" : "Letton",
"Macedonian" : "Macédonien",
"Malagasy" : "Malgache",
"Malayalam" : "Malayalam",
"Persian (Afghanistan)" : "Perse (Afghanistan)",
"Persian" : "Persan",
"Polish (Poland)" : "Polonais (Pologne)",
"Polish" : "Polonais",
"Portuguese (Brazil)" : "Portugais (Brésil)",
"Portuguese (Portugal)" : "Portugais (Portugal)",
"Portuguese" : "Portuguais",
"Punjabi" : "Pendjabi",
"Russian (Ukraine)" : "Russe (Ukraine)",
"Russian" : "Russe",
"Serbian" : "Serbe",
"Slovak" : "Slovaque",
"Slovenian" : "Slovène",
"Spanish (Argentina)" : "Espagnol (Argentine)",
"Spanish (Bolivia)" : "Espagnol (Bolivie)",
"Spanish (El Salvador)" : "Espagnol (Salvador)",
"Spanish (Honduras)" : "Espagnol (Honduras)",
"Spanish (Mexico)" : "Espagnol (Mexique)",
"Spanish (Nicaragua)" : "Espagnol (Nicaragua)",
"Spanish (Spain)" : "Espagnol (Espagne)",
"Spanish (United States)" : "Espagnol (États-Unis)",
"Spanish (Uruguay)" : "Espagnol (Uruguay)",
"Spanish" : "Espagnol",
"Swahili" : "Swahili",
"Swedish (Sweden)" : "Suédois (Suède)",
"Swedish" : "Suédois",
"Tamil" : "Tamoul",
"Tibetan" : "Tibétain",
"Turkish" : "Turc",
"Ukrainian" : "Ukrainien",
"Urdu" : "Ourdou",
"Vietnamese (Vietnam)" : "Vietnamien (Vietnam)",
"Vietnamese" : "Vietnamien",
"Zulu" : "Zoulou",
"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." : "L'authentification à deux facteurs peut être spécifiée pour tous les \tutilisateurs et groupes spécifiques. S'ils n'ont pas de fournisseur à deux facteurs configuré, ils seront dans l'incapacité de se connecter au système.",

View file

@ -137,6 +137,8 @@
"Basque (Spain)" : "Basque (Espagne)",
"Basque" : "Basque",
"Belarusian" : "Biélorusse",
"Bosnian" : "Bosnien",
"Bulgarian" : "Bulgare",
"Catalan" : "Catalan",
"Chinese" : "Chinois",
"Croatian (Croatia)" : "Croate (Croatie)",
@ -149,10 +151,13 @@
"English (Belgium)" : "Anglais (Belgique)",
"English (Botswana)" : "Anglais (Botswana)",
"English (Canada)" : "Anglais (Canada)",
"English (Guam)" : "Anglais (Guam)",
"English (India)" : "Anglais (Inde)",
"English (Ireland)" : "Anglais (Irlande)",
"English (Jamaica)" : "Anglais (Jamaïque)",
"English (Malta)" : "Anglais (Malte)",
"English (Mauritius)" : "Anglais (Îles Maurice)",
"English (Namibia)" : "Anglais (Namibie)",
"English (New Zealand)" : "Anglais (Nouvelle-Zélande)",
"English (South Africa)" : "Anglais (Afrique du Sud)",
"English (United States)" : "Anglais (États-Unis)",
@ -192,34 +197,68 @@
"French (Switzerland)" : "Français (Suisse)",
"French (Togo)" : "Français (Togo)",
"French" : "Français",
"Galician" : "Galicien",
"Georgian (Georgia)" : "Géorgien (Géorgie)",
"Georgian" : "Géorgien",
"German (Austria)" : "Allemand (Autriche)",
"German (Belgium)" : "Allemand (Belgique)",
"German (Germany)" : "Allemand (Allemagne)",
"German (Luxembourg)" : "Allemand (Luxembourg)",
"German (Switzerland)" : "Allemand (Suisse)",
"German" : "Allemand",
"Hebrew" : "Hébreu",
"Hindi" : "Hindi",
"Hungarian" : "Hongrois",
"Icelandic" : "Islandais",
"Igbo (Nigeria)" : "Igbo (Nigeria)",
"Igbo" : "Igbo",
"Indonesian" : "Indonésien",
"Irish" : "Irlandais",
"Italian (Italy)" : "Italien (Italie)",
"Italian" : "Italien",
"Japanese (Japan)" : "Japonais (Japon)",
"Japanese" : "Japonais",
"Kabyle (Algeria)" : "Kabyle (Algérie)",
"Kabyle" : "Kabyle",
"Kazakh" : "Kazakh",
"Korean (South Korea)" : "Coréen (Corée du Sud)",
"Korean" : "Coréen",
"Latvian" : "Letton",
"Macedonian" : "Macédonien",
"Malagasy" : "Malgache",
"Malayalam" : "Malayalam",
"Persian (Afghanistan)" : "Perse (Afghanistan)",
"Persian" : "Persan",
"Polish (Poland)" : "Polonais (Pologne)",
"Polish" : "Polonais",
"Portuguese (Brazil)" : "Portugais (Brésil)",
"Portuguese (Portugal)" : "Portugais (Portugal)",
"Portuguese" : "Portuguais",
"Punjabi" : "Pendjabi",
"Russian (Ukraine)" : "Russe (Ukraine)",
"Russian" : "Russe",
"Serbian" : "Serbe",
"Slovak" : "Slovaque",
"Slovenian" : "Slovène",
"Spanish (Argentina)" : "Espagnol (Argentine)",
"Spanish (Bolivia)" : "Espagnol (Bolivie)",
"Spanish (El Salvador)" : "Espagnol (Salvador)",
"Spanish (Honduras)" : "Espagnol (Honduras)",
"Spanish (Mexico)" : "Espagnol (Mexique)",
"Spanish (Nicaragua)" : "Espagnol (Nicaragua)",
"Spanish (Spain)" : "Espagnol (Espagne)",
"Spanish (United States)" : "Espagnol (États-Unis)",
"Spanish (Uruguay)" : "Espagnol (Uruguay)",
"Spanish" : "Espagnol",
"Swahili" : "Swahili",
"Swedish (Sweden)" : "Suédois (Suède)",
"Swedish" : "Suédois",
"Tamil" : "Tamoul",
"Tibetan" : "Tibétain",
"Turkish" : "Turc",
"Ukrainian" : "Ukrainien",
"Urdu" : "Ourdou",
"Vietnamese (Vietnam)" : "Vietnamien (Vietnam)",
"Vietnamese" : "Vietnamien",
"Zulu" : "Zoulou",
"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." : "L'authentification à deux facteurs peut être spécifiée pour tous les \tutilisateurs et groupes spécifiques. S'ils n'ont pas de fournisseur à deux facteurs configuré, ils seront dans l'incapacité de se connecter au système.",

View file

@ -1,13 +1,28 @@
OC.L10N.register(
"settings",
{
"{actor} added you to group {group}" : "{actor} があなたを {group} グループに追加しました",
"You added {user} to group {group}" : "{user}を {group} グループに追加しました",
"{actor} added {user} to group {group}" : "{actor} が{user}を {group} グループに追加しました",
"An administrator added you to group {group}" : "管理者があなたを {group} グループに追加しました",
"An administrator added {user} to group {group}" : "管理者が{user}を {group} グループに追加しました",
"{actor} removed you from group {group}" : "{actor} があなたを {group} グループから外しました",
"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" : "管理者がパスワードをリセットしました",
"{actor} changed your email address" : "{actor} がメールアドレスを変更しました",
"You changed your email address" : "メールアドレスを変更しました",
"Your email address was changed by an administrator" : "管理者がメールアドレスを変更しました",
"You created app password \"{token}\"" : "アプリのパスワード\"{token}\"を作成しました",
"You deleted app password \"{token}\"" : "アプリのパスワード\"{token}\"を削除しました",
"You renamed app password \"{token}\" to \"{newToken}\"" : "アプリのパスワードを{token} から {newToken} に変更しました。",
"You granted filesystem access to app password \"{token}\"" : "アプリのパスワード\"{token}\"へファイルシステムアクセス件を付与しました",
"You revoked filesystem access from app password \"{token}\"" : "アプリのパスワード\"{token}\"へファイルシステムアクセス件を取り下げました",
"Security" : "セキュリティ",
"You successfully logged in using two-factor authentication (%1$s)" : "二要素認証を使用して正常にログインしました (%1$s)",
"A login attempt using two-factor authentication failed (%1$s)" : "二要素認証を使用したログイン試行に失敗しました (%1$s)",
@ -24,6 +39,7 @@ OC.L10N.register(
"Backend doesn't support password change, but the user's encryption key was updated." : "バックエンドはパスワードの変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。",
"installing and updating apps via the app store or Federated Cloud Sharing" : "アプリストアまたはクラウド連携共有から、アプリをインストールならびにアップデート",
"Federated Cloud Sharing" : "統合されたクラウド共有",
"cURL is using an outdated %1$s version (%2$s). Please update your operating system or features such as %3$s will not work reliably." : "%1$sバージョン (%2$s) の古い cURL を使っています。OSを更新するか、この機能 %3$sが正しく動くアプリに更新してください。",
"Invalid SMTP password." : "SMTPパスワードが無効",
"Email setting test" : "メール設定のテスト",
"Well done, %s!" : "%s、素晴らしい",
@ -36,6 +52,7 @@ OC.L10N.register(
"Unable to change full name" : "名前を変更できません",
"Unable to change email address" : "メールアドレスを変更できません",
"In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "あなたのTwitterアカウントを確認するには、以下のtweetをTwitterに投稿してください改行なしで投稿してください",
"In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "あなたのウェブサイトを確認するため、次の内容をウェブルートの'.well-known/CloudIdVerificationCode.txt'に保存します。(完全な文章で一文になっていることを確かめてください。)",
"%1$s changed your password on %2$s." : "%1$sにより %2$sのパスワードを変更しました。",
"Your password on %s was changed." : "%s のパスワードを変更しました。",
"Your password on %s was reset by an administrator." : "%sのパスワードは、管理者がリセットしました。",
@ -79,17 +96,456 @@ OC.L10N.register(
"So-so password" : "まずまずのパスワード",
"Good password" : "良好なパスワード",
"Strong password" : "強いパスワード",
"An error occurred while changing your language. Please reload the page and try again." : "言語を変更する際にエラーが発生しました。ページをリロードして、再度試してください。",
"An error occurred while changing your locale. Please reload the page and try again." : "ロケールの変更中にエラーが発生しました。 ページをリロードしてもう一度お試しください。",
"Select a profile picture" : "プロファイル画像を選択",
"Week starts on {fdow}" : "週は{fdow}から始まります",
"Groups" : "グループ",
"Group list is empty" : "グループリストが空です",
"Unable to retrieve the group list" : "グループリストを取得できません",
"Afrikaans (Namibia)" : "Afrikaans (Namibia)",
"Afrikaans (South Africa)" : "Afrikaans (South Africa)",
"Afrikaans" : "Afrikaans",
"Akan (Ghana)" : "Akan (Ghana)",
"Akan" : "Akan",
"Albanian (Albania)" : "Albanian (Albania)",
"Albanian" : "Albanian",
"Amharic (Ethiopia)" : "Amharic (Ethiopia)",
"Amharic" : "Amharic",
"Arabic (Algeria)" : "Arabic (Algeria)",
"Arabic (Bahrain)" : "Arabic (Bahrain)",
"Arabic (Egypt)" : "Arabic (Egypt)",
"Arabic (Iraq)" : "Arabic (Iraq)",
"Arabic (Jordan)" : "Arabic (Jordan)",
"Arabic (Kuwait)" : "Arabic (Kuwait)",
"Arabic (Lebanon)" : "Arabic (Lebanon)",
"Arabic (Libya)" : "Arabic (Libya)",
"Arabic (Morocco)" : "Arabic (Morocco)",
"Arabic (Oman)" : "Arabic (Oman)",
"Arabic (Qatar)" : "Arabic (Qatar)",
"Arabic (Saudi Arabia)" : "Arabic (Saudi Arabia)",
"Arabic (Sudan)" : "Arabic (Sudan)",
"Arabic (Syria)" : "Arabic (Syria)",
"Arabic (Tunisia)" : "Arabic (Tunisia)",
"Arabic (United Arab Emirates)" : "Arabic (United Arab Emirates)",
"Arabic (Yemen)" : "Arabic (Yemen)",
"Arabic" : "Arabic",
"Armenian (Armenia)" : "Armenian (Armenia)",
"Armenian" : "Armenian",
"Assamese (India)" : "Assamese (India)",
"Assamese" : "Assamese",
"Asu (Tanzania)" : "Asu (Tanzania)",
"Asu" : "Asu",
"Azerbaijani (Cyrillic)" : "Azerbaijani (Cyrillic)",
"Azerbaijani (Cyrillic, Azerbaijan)" : "Azerbaijani (Cyrillic, Azerbaijan)",
"Azerbaijani (Latin)" : "Azerbaijani (Latin)",
"Azerbaijani (Latin, Azerbaijan)" : "Azerbaijani (Latin, Azerbaijan)",
"Azerbaijani" : "Azerbaijani",
"Bambara (Mali)" : "Bambara (Mali)",
"Bambara" : "Bambara",
"Basque (Spain)" : "Basque (Spain)",
"Basque" : "Basque",
"Belarusian (Belarus)" : "Belarusian (Belarus)",
"Belarusian" : "Belarusian",
"Bemba (Zambia)" : "Bemba (Zambia)",
"Bemba" : "Bemba",
"Bena (Tanzania)" : "Bena (Tanzania)",
"Bena" : "Bena",
"Bengali (Bangladesh)" : "Bengali (Bangladesh)",
"Bengali (India)" : "Bengali (India)",
"Bengali" : "Bengali",
"Bosnian (Bosnia and Herzegovina)" : "Bosnian (Bosnia and Herzegovina)",
"Bosnian" : "Bosnian",
"Bulgarian (Bulgaria)" : "Bulgarian (Bulgaria)",
"Bulgarian" : "Bulgarian",
"Burmese (Myanmar [Burma])" : "Burmese (Myanmar [Burma])",
"Burmese" : "Burmese",
"Catalan (Spain)" : "Catalan (Spain)",
"Catalan" : "Catalan",
"Central Morocco Tamazight (Latin)" : "Central Morocco Tamazight (Latin)",
"Central Morocco Tamazight (Latin, Morocco)" : "Central Morocco Tamazight (Latin, Morocco)",
"Central Morocco Tamazight" : "Central Morocco Tamazight",
"Cherokee (United States)" : "Cherokee (United States)",
"Cherokee" : "Cherokee",
"Chiga (Uganda)" : "Chiga (Uganda)",
"Chiga" : "Chiga",
"Chinese (Simplified Han)" : "Chinese (Simplified Han)",
"Chinese (Simplified Han, China)" : "Chinese (Simplified Han, China)",
"Chinese (Simplified Han, Hong Kong SAR China)" : "Chinese (Simplified Han, Hong Kong SAR China)",
"Chinese (Simplified Han, Macau SAR China)" : "Chinese (Simplified Han, Macau SAR China)",
"Chinese (Simplified Han, Singapore)" : "Chinese (Simplified Han, Singapore)",
"Chinese (Traditional Han)" : "Chinese (Traditional Han)",
"Chinese (Traditional Han, Hong Kong SAR China)" : "Chinese (Traditional Han, Hong Kong SAR China)",
"Chinese (Traditional Han, Macau SAR China)" : "Chinese (Traditional Han, Macau SAR China)",
"Chinese (Traditional Han, Taiwan)" : "Chinese (Traditional Han, Taiwan)",
"Chinese" : "Chinese",
"Cornish (United Kingdom)" : "Cornish (United Kingdom)",
"Cornish" : "Cornish",
"Croatian (Croatia)" : "Croatian (Croatia)",
"Croatian" : "Croatian",
"Czech (Czech Republic)" : "Czech (Czech Republic)",
"Czech" : "Czech",
"Danish (Denmark)" : "Danish (Denmark)",
"Danish" : "Danish",
"Dutch (Belgium)" : "Dutch (Belgium)",
"Dutch (Netherlands)" : "Dutch (Netherlands)",
"Dutch" : "Dutch",
"Embu (Kenya)" : "Embu (Kenya)",
"Embu" : "Embu",
"English (American Samoa)" : "English (American Samoa)",
"English (Australia)" : "English (Australia)",
"English (Belgium)" : "English (Belgium)",
"English (Belize)" : "English (Belize)",
"English (Botswana)" : "English (Botswana)",
"English (Canada)" : "English (Canada)",
"English (Guam)" : "English (Guam)",
"English (Hong Kong SAR China)" : "English (Hong Kong SAR China)",
"English (India)" : "English (India)",
"English (Ireland)" : "English (Ireland)",
"English (Jamaica)" : "English (Jamaica)",
"English (Malta)" : "English (Malta)",
"English (Marshall Islands)" : "English (Marshall Islands)",
"English (Mauritius)" : "English (Mauritius)",
"English (Namibia)" : "English (Namibia)",
"English (New Zealand)" : "English (New Zealand)",
"English (Northern Mariana Islands)" : "English (Northern Mariana Islands)",
"English (Pakistan)" : "English (Pakistan)",
"English (Philippines)" : "English (Philippines)",
"English (Singapore)" : "English (Singapore)",
"English (South Africa)" : "English (South Africa)",
"English (Trinidad and Tobago)" : "English (Trinidad and Tobago)",
"English (U.S. Minor Outlying Islands)" : "English (U.S. Minor Outlying Islands)",
"English (U.S. Virgin Islands)" : "English (U.S. Virgin Islands)",
"English (United Kingdom)" : "English (United Kingdom)",
"English (United States)" : "English (United States)",
"English (Zimbabwe)" : "English (Zimbabwe)",
"English" : "English",
"Esperanto" : "Esperanto",
"Estonian (Estonia)" : "Estonian (Estonia)",
"Estonian" : "Estonian",
"Ewe (Ghana)" : "Ewe (Ghana)",
"Ewe (Togo)" : "Ewe (Togo)",
"Ewe" : "Ewe",
"Faroese (Faroe Islands)" : "Faroese (Faroe Islands)",
"Faroese" : "Faroese",
"Filipino (Philippines)" : "Filipino (Philippines)",
"Filipino" : "Filipino",
"Finnish (Finland)" : "Finnish (Finland)",
"Finnish" : "Finnish",
"French (Belgium)" : "French (Belgium)",
"French (Benin)" : "French (Benin)",
"French (Burkina Faso)" : "French (Burkina Faso)",
"French (Burundi)" : "French (Burundi)",
"French (Cameroon)" : "French (Cameroon)",
"French (Canada)" : "French (Canada)",
"French (Central African Republic)" : "French (Central African Republic)",
"French (Chad)" : "French (Chad)",
"French (Comoros)" : "French (Comoros)",
"French (Congo - Brazzaville)" : "French (Congo - Brazzaville)",
"French (Congo - Kinshasa)" : "French (Congo - Kinshasa)",
"French (Côte dIvoire)" : "French (Côte dIvoire)",
"French (Djibouti)" : "French (Djibouti)",
"French (Equatorial Guinea)" : "French (Equatorial Guinea)",
"French (France)" : "French (France)",
"French (Gabon)" : "French (Gabon)",
"French (Guadeloupe)" : "French (Guadeloupe)",
"French (Guinea)" : "French (Guinea)",
"French (Luxembourg)" : "French (Luxembourg)",
"French (Madagascar)" : "French (Madagascar)",
"French (Mali)" : "French (Mali)",
"French (Martinique)" : "French (Martinique)",
"French (Monaco)" : "French (Monaco)",
"French (Niger)" : "French (Niger)",
"French (Rwanda)" : "French (Rwanda)",
"French (Réunion)" : "French (Réunion)",
"French (Saint Barthélemy)" : "French (Saint Barthélemy)",
"French (Saint Martin)" : "French (Saint Martin)",
"French (Senegal)" : "French (Senegal)",
"French (Switzerland)" : "French (Switzerland)",
"French (Togo)" : "French (Togo)",
"French" : "French",
"Fulah (Senegal)" : "Fulah (Senegal)",
"Fulah" : "Fulah",
"Galician (Spain)" : "Galician (Spain)",
"Galician" : "Galician",
"Ganda (Uganda)" : "Ganda (Uganda)",
"Ganda" : "Ganda",
"Georgian (Georgia)" : "Georgian (Georgia)",
"Georgian" : "Georgian",
"German (Austria)" : "German (Austria)",
"German (Belgium)" : "German (Belgium)",
"German (Germany)" : "German (Germany)",
"German (Liechtenstein)" : "German (Liechtenstein)",
"German (Luxembourg)" : "German (Luxembourg)",
"German (Switzerland)" : "German (Switzerland)",
"German" : "German",
"Greek (Cyprus)" : "Greek (Cyprus)",
"Greek (Greece)" : "Greek (Greece)",
"Greek" : "Greek",
"Gujarati (India)" : "Gujarati (India)",
"Gujarati" : "Gujarati",
"Gusii (Kenya)" : "Gusii (Kenya)",
"Gusii" : "Gusii",
"Hausa (Latin)" : "Hausa (Latin)",
"Hausa (Latin, Ghana)" : "Hausa (Latin, Ghana)",
"Hausa (Latin, Niger)" : "Hausa (Latin, Niger)",
"Hausa (Latin, Nigeria)" : "Hausa (Latin, Nigeria)",
"Hausa" : "Hausa",
"Hawaiian (United States)" : "Hawaiian (United States)",
"Hawaiian" : "Hawaiian",
"Hebrew (Israel)" : "Hebrew (Israel)",
"Hebrew" : "Hebrew",
"Hindi (India)" : "Hindi (India)",
"Hindi" : "Hindi",
"Hungarian (Hungary)" : "Hungarian (Hungary)",
"Hungarian" : "Hungarian",
"Icelandic (Iceland)" : "Icelandic (Iceland)",
"Icelandic" : "Icelandic",
"Igbo (Nigeria)" : "Igbo (Nigeria)",
"Igbo" : "Igbo",
"Indonesian (Indonesia)" : "Indonesian (Indonesia)",
"Indonesian" : "Indonesian",
"Irish (Ireland)" : "Irish (Ireland)",
"Irish" : "Irish",
"Italian (Italy)" : "Italian (Italy)",
"Italian (Switzerland)" : "Italian (Switzerland)",
"Italian" : "Italian",
"Japanese (Japan)" : "Japanese (Japan)",
"Japanese" : "Japanese",
"Kabuverdianu (Cape Verde)" : "Kabuverdianu (Cape Verde)",
"Kabuverdianu" : "Kabuverdianu",
"Kabyle (Algeria)" : "Kabyle (Algeria)",
"Kabyle" : "Kabyle",
"Kalaallisut (Greenland)" : "Kalaallisut (Greenland)",
"Kalaallisut" : "Kalaallisut",
"Kalenjin (Kenya)" : "Kalenjin (Kenya)",
"Kalenjin" : "Kalenjin",
"Kamba (Kenya)" : "Kamba (Kenya)",
"Kamba" : "Kamba",
"Kannada (India)" : "Kannada (India)",
"Kannada" : "Kannada",
"Kazakh (Cyrillic)" : "Kazakh (Cyrillic)",
"Kazakh (Cyrillic, Kazakhstan)" : "Kazakh (Cyrillic, Kazakhstan)",
"Kazakh" : "Kazakh",
"Khmer (Cambodia)" : "Khmer (Cambodia)",
"Khmer" : "Khmer",
"Kikuyu (Kenya)" : "Kikuyu (Kenya)",
"Kikuyu" : "Kikuyu",
"Kinyarwanda (Rwanda)" : "Kinyarwanda (Rwanda)",
"Kinyarwanda" : "Kinyarwanda",
"Konkani (India)" : "Konkani (India)",
"Konkani" : "Konkani",
"Korean (South Korea)" : "Korean (South Korea)",
"Korean" : "Korean",
"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)" : "Latvian (Latvia)",
"Latvian" : "Latvian",
"Lithuanian (Lithuania)" : "Lithuanian (Lithuania)",
"Lithuanian" : "Lithuanian",
"Luo (Kenya)" : "Luo (Kenya)",
"Luo" : "Luo",
"Luyia (Kenya)" : "Luyia (Kenya)",
"Luyia" : "Luyia",
"Macedonian (Macedonia)" : "Macedonian (Macedonia)",
"Macedonian" : "Macedonian",
"Machame (Tanzania)" : "Machame (Tanzania)",
"Machame" : "Machame",
"Makonde (Tanzania)" : "Makonde (Tanzania)",
"Makonde" : "Makonde",
"Malagasy (Madagascar)" : "Malagasy (Madagascar)",
"Malagasy" : "Malagasy",
"Malay (Brunei)" : "Malay (Brunei)",
"Malay (Malaysia)" : "Malay (Malaysia)",
"Malay" : "Malay",
"Malayalam (India)" : "Malayalam (India)",
"Malayalam" : "Malayalam",
"Maltese (Malta)" : "Maltese (Malta)",
"Maltese" : "Maltese",
"Manx (United Kingdom)" : "Manx (United Kingdom)",
"Manx" : "Manx",
"Marathi (India)" : "Marathi (India)",
"Marathi" : "Marathi",
"Masai (Kenya)" : "Masai (Kenya)",
"Masai (Tanzania)" : "Masai (Tanzania)",
"Masai" : "Masai",
"Meru (Kenya)" : "Meru (Kenya)",
"Meru" : "Meru",
"Morisyen (Mauritius)" : "Morisyen (Mauritius)",
"Morisyen" : "Morisyen",
"Nama (Namibia)" : "Nama (Namibia)",
"Nama" : "Nama",
"Nepali (India)" : "Nepali (India)",
"Nepali (Nepal)" : "Nepali (Nepal)",
"Nepali" : "Nepali",
"North Ndebele (Zimbabwe)" : "North Ndebele (Zimbabwe)",
"North Ndebele" : "North Ndebele",
"Norwegian Bokmål (Norway)" : "Norwegian Bokmål (Norway)",
"Norwegian Bokmål" : "Norwegian Bokmål",
"Norwegian Nynorsk (Norway)" : "Norwegian Nynorsk (Norway)",
"Norwegian Nynorsk" : "Norwegian Nynorsk",
"Nyankole (Uganda)" : "Nyankole (Uganda)",
"Nyankole" : "Nyankole",
"Oriya (India)" : "Oriya (India)",
"Oriya" : "Oriya",
"Oromo (Ethiopia)" : "Oromo (Ethiopia)",
"Oromo (Kenya)" : "Oromo (Kenya)",
"Oromo" : "Oromo",
"Pashto (Afghanistan)" : "Pashto (Afghanistan)",
"Pashto" : "Pashto",
"Persian (Afghanistan)" : "Persian (Afghanistan)",
"Persian (Iran)" : "Persian (Iran)",
"Persian" : "Persian",
"Polish (Poland)" : "Polish (Poland)",
"Polish" : "Polish",
"Portuguese (Brazil)" : "Portuguese (Brazil)",
"Portuguese (Guinea-Bissau)" : "Portuguese (Guinea-Bissau)",
"Portuguese (Mozambique)" : "Portuguese (Mozambique)",
"Portuguese (Portugal)" : "Portuguese (Portugal)",
"Portuguese" : "Portuguese",
"Punjabi (Arabic)" : "Punjabi (Arabic)",
"Punjabi (Arabic, Pakistan)" : "Punjabi (Arabic, Pakistan)",
"Punjabi (Gurmukhi)" : "Punjabi (Gurmukhi)",
"Punjabi (Gurmukhi, India)" : "Punjabi (Gurmukhi, India)",
"Punjabi" : "Punjabi",
"Romanian (Moldova)" : "Romanian (Moldova)",
"Romanian (Romania)" : "Romanian (Romania)",
"Romanian" : "Romanian",
"Romansh (Switzerland)" : "Romansh (Switzerland)",
"Romansh" : "Romansh",
"Rombo (Tanzania)" : "Rombo (Tanzania)",
"Rombo" : "Rombo",
"Russian (Moldova)" : "Russian (Moldova)",
"Russian (Russia)" : "Russian (Russia)",
"Russian (Ukraine)" : "Russian (Ukraine)",
"Russian" : "Russian",
"Rwa (Tanzania)" : "Rwa (Tanzania)",
"Rwa" : "Rwa",
"Samburu (Kenya)" : "Samburu (Kenya)",
"Samburu" : "Samburu",
"Sango (Central African Republic)" : "Sango (Central African Republic)",
"Sango" : "Sango",
"Sena (Mozambique)" : "Sena (Mozambique)",
"Sena" : "Sena",
"Serbian (Cyrillic)" : "Serbian (Cyrillic)",
"Serbian (Cyrillic, Bosnia and Herzegovina)" : "Serbian (Cyrillic, Bosnia and Herzegovina)",
"Serbian (Cyrillic, Montenegro)" : "Serbian (Cyrillic, Montenegro)",
"Serbian (Cyrillic, Serbia)" : "Serbian (Cyrillic, Serbia)",
"Serbian (Latin)" : "Serbian (Latin)",
"Serbian (Latin, Bosnia and Herzegovina)" : "Serbian (Latin, Bosnia and Herzegovina)",
"Serbian (Latin, Montenegro)" : "Serbian (Latin, Montenegro)",
"Serbian (Latin, Serbia)" : "Serbian (Latin, Serbia)",
"Serbian" : "Serbian",
"Shona (Zimbabwe)" : "Shona (Zimbabwe)",
"Shona" : "Shona",
"Sichuan Yi (China)" : "Sichuan Yi (China)",
"Sichuan Yi" : "Sichuan Yi",
"Sinhala (Sri Lanka)" : "Sinhala (Sri Lanka)",
"Sinhala" : "Sinhala",
"Slovak (Slovakia)" : "Slovak (Slovakia)",
"Slovak" : "Slovak",
"Slovenian (Slovenia)" : "Slovenian (Slovenia)",
"Slovenian" : "Slovenian",
"Soga (Uganda)" : "Soga (Uganda)",
"Soga" : "Soga",
"Somali (Djibouti)" : "Somali (Djibouti)",
"Somali (Ethiopia)" : "Somali (Ethiopia)",
"Somali (Kenya)" : "Somali (Kenya)",
"Somali (Somalia)" : "Somali (Somalia)",
"Somali" : "Somali",
"Spanish (Argentina)" : "Spanish (Argentina)",
"Spanish (Bolivia)" : "Spanish (Bolivia)",
"Spanish (Chile)" : "Spanish (Chile)",
"Spanish (Colombia)" : "Spanish (Colombia)",
"Spanish (Costa Rica)" : "Spanish (Costa Rica)",
"Spanish (Dominican Republic)" : "Spanish (Dominican Republic)",
"Spanish (Ecuador)" : "Spanish (Ecuador)",
"Spanish (El Salvador)" : "Spanish (El Salvador)",
"Spanish (Equatorial Guinea)" : "Spanish (Equatorial Guinea)",
"Spanish (Guatemala)" : "Spanish (Guatemala)",
"Spanish (Honduras)" : "Spanish (Honduras)",
"Spanish (Latin America)" : "Spanish (Latin America)",
"Spanish (Mexico)" : "Spanish (Mexico)",
"Spanish (Nicaragua)" : "Spanish (Nicaragua)",
"Spanish (Panama)" : "Spanish (Panama)",
"Spanish (Paraguay)" : "Spanish (Paraguay)",
"Spanish (Peru)" : "Spanish (Peru)",
"Spanish (Puerto Rico)" : "Spanish (Puerto Rico)",
"Spanish (Spain)" : "Spanish (Spain)",
"Spanish (United States)" : "Spanish (United States)",
"Spanish (Uruguay)" : "Spanish (Uruguay)",
"Spanish (Venezuela)" : "Spanish (Venezuela)",
"Spanish" : "Spanish",
"Swahili (Kenya)" : "Swahili (Kenya)",
"Swahili (Tanzania)" : "Swahili (Tanzania)",
"Swahili" : "Swahili",
"Swedish (Finland)" : "Swedish (Finland)",
"Swedish (Sweden)" : "Swedish (Sweden)",
"Swedish" : "Swedish",
"Swiss German (Switzerland)" : "Swiss German (Switzerland)",
"Swiss German" : "Swiss German",
"Tachelhit (Latin)" : "Tachelhit (Latin)",
"Tachelhit (Latin, Morocco)" : "Tachelhit (Latin, Morocco)",
"Tachelhit (Tifinagh)" : "Tachelhit (Tifinagh)",
"Tachelhit (Tifinagh, Morocco)" : "Tachelhit (Tifinagh, Morocco)",
"Tachelhit" : "Tachelhit",
"Taita (Kenya)" : "Taita (Kenya)",
"Taita" : "Taita",
"Tamil (India)" : "Tamil (India)",
"Tamil (Sri Lanka)" : "Tamil (Sri Lanka)",
"Tamil" : "Tamil",
"Telugu (India)" : "Telugu (India)",
"Telugu" : "Telugu",
"Teso (Kenya)" : "Teso (Kenya)",
"Teso (Uganda)" : "Teso (Uganda)",
"Teso" : "Teso",
"Thai (Thailand)" : "Thai (Thailand)",
"Thai" : "Thai",
"Tibetan (China)" : "Tibetan (China)",
"Tibetan (India)" : "Tibetan (India)",
"Tibetan" : "Tibetan",
"Tigrinya (Eritrea)" : "Tigrinya (Eritrea)",
"Tigrinya (Ethiopia)" : "Tigrinya (Ethiopia)",
"Tigrinya" : "Tigrinya",
"Tonga (Tonga)" : "Tonga (Tonga)",
"Tonga" : "Tonga",
"Turkish (Turkey)" : "Turkish (Turkey)",
"Turkish" : "Turkish",
"Ukrainian (Ukraine)" : "Ukrainian (Ukraine)",
"Ukrainian" : "Ukrainian",
"Urdu (India)" : "Urdu (India)",
"Urdu (Pakistan)" : "Urdu (Pakistan)",
"Urdu" : "Urdu",
"Uzbek (Arabic)" : "Uzbek (Arabic)",
"Uzbek (Arabic, Afghanistan)" : "Uzbek (Arabic, Afghanistan)",
"Uzbek (Cyrillic)" : "Uzbek (Cyrillic)",
"Uzbek (Cyrillic, Uzbekistan)" : "Uzbek (Cyrillic, Uzbekistan)",
"Uzbek (Latin)" : "Uzbek (Latin)",
"Uzbek (Latin, Uzbekistan)" : "Uzbek (Latin, Uzbekistan)",
"Uzbek" : "Uzbek",
"Vietnamese (Vietnam)" : "Vietnamese (Vietnam)",
"Vietnamese" : "Vietnamese",
"Vunjo (Tanzania)" : "Vunjo (Tanzania)",
"Vunjo" : "Vunjo",
"Welsh (United Kingdom)" : "Welsh (United Kingdom)",
"Welsh" : "Welsh",
"Yoruba (Nigeria)" : "Yoruba (Nigeria)",
"Yoruba" : "Yoruba",
"Zulu (South Africa)" : "Zulu (South Africa)",
"Zulu" : "Zulu",
"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." : "二要素認証はすべての\tユーザーと特定のグループに強制することができます。設定済みの二要素プロバイダーがない場合は、システムにログインできません。",
"Enforce two-factor authentication" : "二要素認証を強制する",
"Limit to groups" : "次のグループに制限",
"Enforcement of two-factor authentication can be set for certain groups only." : "二要素認証の強制は特定のグループのみに設定できます。",
"Two-factor authentication is enforced for all\tmembers of the following groups." : "二要素認証はすべての\t次のグループのメンバーに強制されています。",
"Enforced groups" : "適用されたグループ",
"Two-factor authentication is not enforced for\tmembers of the following groups." : "次のグループのメンバーの場合、二要素認証は強制されません。",
"Excluded groups" : "除外されたグループ",
"When groups are selected/excluded, they use the following logic to determine if a user has 2FA enforced: If no groups are selected, 2FA is enabled for everyone except members of the excluded groups. If groups are selected, 2FA is enabled for all members of these. If a user is both in a selected and excluded group, the selected takes precedence and 2FA is enforced." : "グループが選択または除外されると、ユーザーが2FAを適用しているかどうかを判断するために次のロジックが使用されます。グループが選択されていない場合、除外グループのメンバーを除くすべてのユーザーに対して2FAが有効になります。グループが選択されている場合は、2FAは、これらのすべてのメンバーのために有効になっています。 ユーザーが選択されたグループと除外されたグループの両方にいる場合は、選択されたグループが優先され、2FAが適用されます。",
"Save changes" : "変更を保存",
"Device settings" : "デバイスの設定",
"Internet Explorer" : "Internet Explorer",
@ -98,7 +554,14 @@ OC.L10N.register(
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Android用Google Chrome",
"iPhone" : "iPhone",
"iPad" : "iPad",
"Nextcloud iOS app" : "Nextcloud iOSアプリ",
"Nextcloud Android app" : "Nextcloud Android アプリ",
"Nextcloud Talk for iOS" : "iOS用Nextcloud Talk",
"Nextcloud Talk for Android" : "Android用Nextcloud Talk",
"Allow filesystem access" : "ファイルシステムへのアクセスを許可",
"Rename" : "名前を変更",
"Revoke" : "取り消す",
"Sync client - {os}" : "同期用クライアント - {os}",
"This session" : "本セッション",
@ -107,6 +570,8 @@ OC.L10N.register(
"Devices & sessions" : "デバイスとセッション",
"Web, desktop and mobile clients currently logged in to your account." : "現在、Web、デスクトップ、モバイルアプリであなたのアカウントにログインしている端末一覧です。",
"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" : "新しいアプリパスワードを作成",
@ -115,14 +580,18 @@ OC.L10N.register(
"Username" : "ユーザーID",
"Password" : "パスワード",
"Done" : "完了",
"Show QR code for mobile apps" : "モバイルアプリのQRコードを表示する",
"Copied!" : "コピーしました!",
"Copy" : "コピー",
"Could not copy app password. Please copy it manually." : "アプリのパスワードをコピーできませんでした。 手動でコピーしてください。",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "公式アプリは Nextcloud コミュニティにより開発されています。公式アプリは Nextcloud の中心的な機能を提供し、製品として可能です。",
"Official" : "公式",
"by" : "by",
"Update to {version}" : "{version} にアップデート",
"Remove" : "削除",
"Disable" : "無効にする",
"All" : "すべて",
"Limit app usage to groups" : "アプリの使用をグループに制限する",
"No results" : "該当なし",
"This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.",
"This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.",
@ -134,15 +603,23 @@ OC.L10N.register(
"Admin documentation" : "管理者ドキュメント",
"Developer documentation" : "開発者ドキュメント",
"Update to {update}" : "{update} にアップデート",
"Results from other categories" : "他のカテゴリからの結果",
"No apps found for your version" : "現在のバージョンに対応するアプリはありません",
"Disable all" : "すべて無効にする",
"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" : "新しいパスワード",
"Add user in group" : "グループにユーザーを追加",
"Set user as admin for" : "ユーザーを管理者に設定します",
"Select user quota" : "ユーザークオータを選択",
"No language set" : "言語設定なし",
"Never" : "なし",
"Delete user" : "ユーザーを削除",
"Disable user" : "ユーザーを無効",
"Enable user" : "ユーザーを有効",
@ -159,6 +636,7 @@ OC.L10N.register(
"Last login" : "最終ログイン",
"Default language" : "デフォルトの言語",
"Add a new user" : "新しいユーザーを追加",
"No users in here" : "ここにはユーザーがありません",
"Unlimited" : "無制限",
"Default quota" : "デフォルトのクオータ",
"Password change is disabled because the master key is disabled" : "マスターキーが無効になっているため、パスワードの変更は無効です",
@ -173,8 +651,10 @@ OC.L10N.register(
"New user" : "新しいユーザー",
"Default quota:" : "デフォルトのクオータ:",
"Select default quota" : "デフォルトのクオータを選択",
"Show Languages" : "言語を表示",
"Show last login" : "最終ログインを表示",
"Show user backend" : "ユーザーバックエンドを表示",
"Show storage path" : "ストレージの場所を表示",
"You are about to remove the group {group}. The users will NOT be deleted." : "{group}グループを削除しようとしています。 ユーザーは削除されません。",
"Please confirm the group removal " : "グループの削除を確認してください",
"Remove group" : "グループを削除",
@ -206,6 +686,7 @@ OC.L10N.register(
"It is important to set up this server to be able to send emails, like for password reset and notifications." : "パスワードのリセットや通知などのメールを送信できるよう、このサーバーを設定することが重要です。",
"Send mode" : "送信モード",
"Encryption" : "暗号化",
"Sendmail mode" : "Sendmailモード",
"From address" : "送信元アドレス",
"mail" : "mail",
"Authentication method" : "認証方法",
@ -248,6 +729,7 @@ OC.L10N.register(
"Last job execution ran %s. Something seems wrong." : "最終ジョブ実行は %s です。何か問題が発生しています。",
"Background job didnt run yet!" : "バックグラウンドジョブは実行されていません",
"For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "最適なパフォーマンスにするには、バックグラウンドジョブを正確に設定することが重要です。大規模なインスタンスでは、'Cron'がお薦めの設定です。詳細な情報は、ドキュメントを参照してください。",
"Pick background job setting" : "バックグラウンドジョブ設定を選択",
"Execute one task with each page loaded" : "各ページの読み込み時にタスクを実行します。",
"cron.php is registered at a webcron service to call cron.php every 15 minutes over HTTP." : "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されます。",
"Use system cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。",
@ -310,6 +792,21 @@ OC.L10N.register(
"Help translate" : "翻訳に協力する",
"Locale" : "ロケール",
"Current password" : "現在のパスワード",
"Change password" : "パスワードを変更"
"Change password" : "パスワードを変更",
"Use a second factor besides your password to increase security for your account." : "アカウントのセキュリティを強化するには、パスワード以外に2番目の要素を使用してください。",
"cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "%s バージョン (%s) の古い cURL を使っています。OSを更新するか、この機能 %s が正しく動くアプリに更新してください。",
"Disconnect" : "切断",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOSクライアント",
"Android Client" : "Androidクライアント",
"Not supported!" : "未対応",
"Press ⌘-C to copy." : "⌘-C でコピーします。",
"Press Ctrl-C to copy." : "Ctrl-Cを押してコピーします。",
"Error while loading browser sessions and device tokens" : "ブラウザーセッションとデバイストークンの読み込み中にエラーが発生しました",
"Default quota :" : "デフォルトのクオータ :",
"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>." : "<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">インストールガイド ↗</a>を再確認して、 <a href=\"%s\">ログ</a>にあるすべてのエラーや警告を確認してください。",
"Follow us on Google+" : "Google+でフォロー!",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "<strong>%s</strong> / <strong>%s</strong> (<strong>%s %%</strong>) 使用中"
},
"nplurals=1; plural=0;");

View file

@ -1,11 +1,26 @@
{ "translations": {
"{actor} added you to group {group}" : "{actor} があなたを {group} グループに追加しました",
"You added {user} to group {group}" : "{user}を {group} グループに追加しました",
"{actor} added {user} to group {group}" : "{actor} が{user}を {group} グループに追加しました",
"An administrator added you to group {group}" : "管理者があなたを {group} グループに追加しました",
"An administrator added {user} to group {group}" : "管理者が{user}を {group} グループに追加しました",
"{actor} removed you from group {group}" : "{actor} があなたを {group} グループから外しました",
"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" : "管理者がパスワードをリセットしました",
"{actor} changed your email address" : "{actor} がメールアドレスを変更しました",
"You changed your email address" : "メールアドレスを変更しました",
"Your email address was changed by an administrator" : "管理者がメールアドレスを変更しました",
"You created app password \"{token}\"" : "アプリのパスワード\"{token}\"を作成しました",
"You deleted app password \"{token}\"" : "アプリのパスワード\"{token}\"を削除しました",
"You renamed app password \"{token}\" to \"{newToken}\"" : "アプリのパスワードを{token} から {newToken} に変更しました。",
"You granted filesystem access to app password \"{token}\"" : "アプリのパスワード\"{token}\"へファイルシステムアクセス件を付与しました",
"You revoked filesystem access from app password \"{token}\"" : "アプリのパスワード\"{token}\"へファイルシステムアクセス件を取り下げました",
"Security" : "セキュリティ",
"You successfully logged in using two-factor authentication (%1$s)" : "二要素認証を使用して正常にログインしました (%1$s)",
"A login attempt using two-factor authentication failed (%1$s)" : "二要素認証を使用したログイン試行に失敗しました (%1$s)",
@ -22,6 +37,7 @@
"Backend doesn't support password change, but the user's encryption key was updated." : "バックエンドはパスワードの変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。",
"installing and updating apps via the app store or Federated Cloud Sharing" : "アプリストアまたはクラウド連携共有から、アプリをインストールならびにアップデート",
"Federated Cloud Sharing" : "統合されたクラウド共有",
"cURL is using an outdated %1$s version (%2$s). Please update your operating system or features such as %3$s will not work reliably." : "%1$sバージョン (%2$s) の古い cURL を使っています。OSを更新するか、この機能 %3$sが正しく動くアプリに更新してください。",
"Invalid SMTP password." : "SMTPパスワードが無効",
"Email setting test" : "メール設定のテスト",
"Well done, %s!" : "%s、素晴らしい",
@ -34,6 +50,7 @@
"Unable to change full name" : "名前を変更できません",
"Unable to change email address" : "メールアドレスを変更できません",
"In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "あなたのTwitterアカウントを確認するには、以下のtweetをTwitterに投稿してください改行なしで投稿してください",
"In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "あなたのウェブサイトを確認するため、次の内容をウェブルートの'.well-known/CloudIdVerificationCode.txt'に保存します。(完全な文章で一文になっていることを確かめてください。)",
"%1$s changed your password on %2$s." : "%1$sにより %2$sのパスワードを変更しました。",
"Your password on %s was changed." : "%s のパスワードを変更しました。",
"Your password on %s was reset by an administrator." : "%sのパスワードは、管理者がリセットしました。",
@ -77,17 +94,456 @@
"So-so password" : "まずまずのパスワード",
"Good password" : "良好なパスワード",
"Strong password" : "強いパスワード",
"An error occurred while changing your language. Please reload the page and try again." : "言語を変更する際にエラーが発生しました。ページをリロードして、再度試してください。",
"An error occurred while changing your locale. Please reload the page and try again." : "ロケールの変更中にエラーが発生しました。 ページをリロードしてもう一度お試しください。",
"Select a profile picture" : "プロファイル画像を選択",
"Week starts on {fdow}" : "週は{fdow}から始まります",
"Groups" : "グループ",
"Group list is empty" : "グループリストが空です",
"Unable to retrieve the group list" : "グループリストを取得できません",
"Afrikaans (Namibia)" : "Afrikaans (Namibia)",
"Afrikaans (South Africa)" : "Afrikaans (South Africa)",
"Afrikaans" : "Afrikaans",
"Akan (Ghana)" : "Akan (Ghana)",
"Akan" : "Akan",
"Albanian (Albania)" : "Albanian (Albania)",
"Albanian" : "Albanian",
"Amharic (Ethiopia)" : "Amharic (Ethiopia)",
"Amharic" : "Amharic",
"Arabic (Algeria)" : "Arabic (Algeria)",
"Arabic (Bahrain)" : "Arabic (Bahrain)",
"Arabic (Egypt)" : "Arabic (Egypt)",
"Arabic (Iraq)" : "Arabic (Iraq)",
"Arabic (Jordan)" : "Arabic (Jordan)",
"Arabic (Kuwait)" : "Arabic (Kuwait)",
"Arabic (Lebanon)" : "Arabic (Lebanon)",
"Arabic (Libya)" : "Arabic (Libya)",
"Arabic (Morocco)" : "Arabic (Morocco)",
"Arabic (Oman)" : "Arabic (Oman)",
"Arabic (Qatar)" : "Arabic (Qatar)",
"Arabic (Saudi Arabia)" : "Arabic (Saudi Arabia)",
"Arabic (Sudan)" : "Arabic (Sudan)",
"Arabic (Syria)" : "Arabic (Syria)",
"Arabic (Tunisia)" : "Arabic (Tunisia)",
"Arabic (United Arab Emirates)" : "Arabic (United Arab Emirates)",
"Arabic (Yemen)" : "Arabic (Yemen)",
"Arabic" : "Arabic",
"Armenian (Armenia)" : "Armenian (Armenia)",
"Armenian" : "Armenian",
"Assamese (India)" : "Assamese (India)",
"Assamese" : "Assamese",
"Asu (Tanzania)" : "Asu (Tanzania)",
"Asu" : "Asu",
"Azerbaijani (Cyrillic)" : "Azerbaijani (Cyrillic)",
"Azerbaijani (Cyrillic, Azerbaijan)" : "Azerbaijani (Cyrillic, Azerbaijan)",
"Azerbaijani (Latin)" : "Azerbaijani (Latin)",
"Azerbaijani (Latin, Azerbaijan)" : "Azerbaijani (Latin, Azerbaijan)",
"Azerbaijani" : "Azerbaijani",
"Bambara (Mali)" : "Bambara (Mali)",
"Bambara" : "Bambara",
"Basque (Spain)" : "Basque (Spain)",
"Basque" : "Basque",
"Belarusian (Belarus)" : "Belarusian (Belarus)",
"Belarusian" : "Belarusian",
"Bemba (Zambia)" : "Bemba (Zambia)",
"Bemba" : "Bemba",
"Bena (Tanzania)" : "Bena (Tanzania)",
"Bena" : "Bena",
"Bengali (Bangladesh)" : "Bengali (Bangladesh)",
"Bengali (India)" : "Bengali (India)",
"Bengali" : "Bengali",
"Bosnian (Bosnia and Herzegovina)" : "Bosnian (Bosnia and Herzegovina)",
"Bosnian" : "Bosnian",
"Bulgarian (Bulgaria)" : "Bulgarian (Bulgaria)",
"Bulgarian" : "Bulgarian",
"Burmese (Myanmar [Burma])" : "Burmese (Myanmar [Burma])",
"Burmese" : "Burmese",
"Catalan (Spain)" : "Catalan (Spain)",
"Catalan" : "Catalan",
"Central Morocco Tamazight (Latin)" : "Central Morocco Tamazight (Latin)",
"Central Morocco Tamazight (Latin, Morocco)" : "Central Morocco Tamazight (Latin, Morocco)",
"Central Morocco Tamazight" : "Central Morocco Tamazight",
"Cherokee (United States)" : "Cherokee (United States)",
"Cherokee" : "Cherokee",
"Chiga (Uganda)" : "Chiga (Uganda)",
"Chiga" : "Chiga",
"Chinese (Simplified Han)" : "Chinese (Simplified Han)",
"Chinese (Simplified Han, China)" : "Chinese (Simplified Han, China)",
"Chinese (Simplified Han, Hong Kong SAR China)" : "Chinese (Simplified Han, Hong Kong SAR China)",
"Chinese (Simplified Han, Macau SAR China)" : "Chinese (Simplified Han, Macau SAR China)",
"Chinese (Simplified Han, Singapore)" : "Chinese (Simplified Han, Singapore)",
"Chinese (Traditional Han)" : "Chinese (Traditional Han)",
"Chinese (Traditional Han, Hong Kong SAR China)" : "Chinese (Traditional Han, Hong Kong SAR China)",
"Chinese (Traditional Han, Macau SAR China)" : "Chinese (Traditional Han, Macau SAR China)",
"Chinese (Traditional Han, Taiwan)" : "Chinese (Traditional Han, Taiwan)",
"Chinese" : "Chinese",
"Cornish (United Kingdom)" : "Cornish (United Kingdom)",
"Cornish" : "Cornish",
"Croatian (Croatia)" : "Croatian (Croatia)",
"Croatian" : "Croatian",
"Czech (Czech Republic)" : "Czech (Czech Republic)",
"Czech" : "Czech",
"Danish (Denmark)" : "Danish (Denmark)",
"Danish" : "Danish",
"Dutch (Belgium)" : "Dutch (Belgium)",
"Dutch (Netherlands)" : "Dutch (Netherlands)",
"Dutch" : "Dutch",
"Embu (Kenya)" : "Embu (Kenya)",
"Embu" : "Embu",
"English (American Samoa)" : "English (American Samoa)",
"English (Australia)" : "English (Australia)",
"English (Belgium)" : "English (Belgium)",
"English (Belize)" : "English (Belize)",
"English (Botswana)" : "English (Botswana)",
"English (Canada)" : "English (Canada)",
"English (Guam)" : "English (Guam)",
"English (Hong Kong SAR China)" : "English (Hong Kong SAR China)",
"English (India)" : "English (India)",
"English (Ireland)" : "English (Ireland)",
"English (Jamaica)" : "English (Jamaica)",
"English (Malta)" : "English (Malta)",
"English (Marshall Islands)" : "English (Marshall Islands)",
"English (Mauritius)" : "English (Mauritius)",
"English (Namibia)" : "English (Namibia)",
"English (New Zealand)" : "English (New Zealand)",
"English (Northern Mariana Islands)" : "English (Northern Mariana Islands)",
"English (Pakistan)" : "English (Pakistan)",
"English (Philippines)" : "English (Philippines)",
"English (Singapore)" : "English (Singapore)",
"English (South Africa)" : "English (South Africa)",
"English (Trinidad and Tobago)" : "English (Trinidad and Tobago)",
"English (U.S. Minor Outlying Islands)" : "English (U.S. Minor Outlying Islands)",
"English (U.S. Virgin Islands)" : "English (U.S. Virgin Islands)",
"English (United Kingdom)" : "English (United Kingdom)",
"English (United States)" : "English (United States)",
"English (Zimbabwe)" : "English (Zimbabwe)",
"English" : "English",
"Esperanto" : "Esperanto",
"Estonian (Estonia)" : "Estonian (Estonia)",
"Estonian" : "Estonian",
"Ewe (Ghana)" : "Ewe (Ghana)",
"Ewe (Togo)" : "Ewe (Togo)",
"Ewe" : "Ewe",
"Faroese (Faroe Islands)" : "Faroese (Faroe Islands)",
"Faroese" : "Faroese",
"Filipino (Philippines)" : "Filipino (Philippines)",
"Filipino" : "Filipino",
"Finnish (Finland)" : "Finnish (Finland)",
"Finnish" : "Finnish",
"French (Belgium)" : "French (Belgium)",
"French (Benin)" : "French (Benin)",
"French (Burkina Faso)" : "French (Burkina Faso)",
"French (Burundi)" : "French (Burundi)",
"French (Cameroon)" : "French (Cameroon)",
"French (Canada)" : "French (Canada)",
"French (Central African Republic)" : "French (Central African Republic)",
"French (Chad)" : "French (Chad)",
"French (Comoros)" : "French (Comoros)",
"French (Congo - Brazzaville)" : "French (Congo - Brazzaville)",
"French (Congo - Kinshasa)" : "French (Congo - Kinshasa)",
"French (Côte dIvoire)" : "French (Côte dIvoire)",
"French (Djibouti)" : "French (Djibouti)",
"French (Equatorial Guinea)" : "French (Equatorial Guinea)",
"French (France)" : "French (France)",
"French (Gabon)" : "French (Gabon)",
"French (Guadeloupe)" : "French (Guadeloupe)",
"French (Guinea)" : "French (Guinea)",
"French (Luxembourg)" : "French (Luxembourg)",
"French (Madagascar)" : "French (Madagascar)",
"French (Mali)" : "French (Mali)",
"French (Martinique)" : "French (Martinique)",
"French (Monaco)" : "French (Monaco)",
"French (Niger)" : "French (Niger)",
"French (Rwanda)" : "French (Rwanda)",
"French (Réunion)" : "French (Réunion)",
"French (Saint Barthélemy)" : "French (Saint Barthélemy)",
"French (Saint Martin)" : "French (Saint Martin)",
"French (Senegal)" : "French (Senegal)",
"French (Switzerland)" : "French (Switzerland)",
"French (Togo)" : "French (Togo)",
"French" : "French",
"Fulah (Senegal)" : "Fulah (Senegal)",
"Fulah" : "Fulah",
"Galician (Spain)" : "Galician (Spain)",
"Galician" : "Galician",
"Ganda (Uganda)" : "Ganda (Uganda)",
"Ganda" : "Ganda",
"Georgian (Georgia)" : "Georgian (Georgia)",
"Georgian" : "Georgian",
"German (Austria)" : "German (Austria)",
"German (Belgium)" : "German (Belgium)",
"German (Germany)" : "German (Germany)",
"German (Liechtenstein)" : "German (Liechtenstein)",
"German (Luxembourg)" : "German (Luxembourg)",
"German (Switzerland)" : "German (Switzerland)",
"German" : "German",
"Greek (Cyprus)" : "Greek (Cyprus)",
"Greek (Greece)" : "Greek (Greece)",
"Greek" : "Greek",
"Gujarati (India)" : "Gujarati (India)",
"Gujarati" : "Gujarati",
"Gusii (Kenya)" : "Gusii (Kenya)",
"Gusii" : "Gusii",
"Hausa (Latin)" : "Hausa (Latin)",
"Hausa (Latin, Ghana)" : "Hausa (Latin, Ghana)",
"Hausa (Latin, Niger)" : "Hausa (Latin, Niger)",
"Hausa (Latin, Nigeria)" : "Hausa (Latin, Nigeria)",
"Hausa" : "Hausa",
"Hawaiian (United States)" : "Hawaiian (United States)",
"Hawaiian" : "Hawaiian",
"Hebrew (Israel)" : "Hebrew (Israel)",
"Hebrew" : "Hebrew",
"Hindi (India)" : "Hindi (India)",
"Hindi" : "Hindi",
"Hungarian (Hungary)" : "Hungarian (Hungary)",
"Hungarian" : "Hungarian",
"Icelandic (Iceland)" : "Icelandic (Iceland)",
"Icelandic" : "Icelandic",
"Igbo (Nigeria)" : "Igbo (Nigeria)",
"Igbo" : "Igbo",
"Indonesian (Indonesia)" : "Indonesian (Indonesia)",
"Indonesian" : "Indonesian",
"Irish (Ireland)" : "Irish (Ireland)",
"Irish" : "Irish",
"Italian (Italy)" : "Italian (Italy)",
"Italian (Switzerland)" : "Italian (Switzerland)",
"Italian" : "Italian",
"Japanese (Japan)" : "Japanese (Japan)",
"Japanese" : "Japanese",
"Kabuverdianu (Cape Verde)" : "Kabuverdianu (Cape Verde)",
"Kabuverdianu" : "Kabuverdianu",
"Kabyle (Algeria)" : "Kabyle (Algeria)",
"Kabyle" : "Kabyle",
"Kalaallisut (Greenland)" : "Kalaallisut (Greenland)",
"Kalaallisut" : "Kalaallisut",
"Kalenjin (Kenya)" : "Kalenjin (Kenya)",
"Kalenjin" : "Kalenjin",
"Kamba (Kenya)" : "Kamba (Kenya)",
"Kamba" : "Kamba",
"Kannada (India)" : "Kannada (India)",
"Kannada" : "Kannada",
"Kazakh (Cyrillic)" : "Kazakh (Cyrillic)",
"Kazakh (Cyrillic, Kazakhstan)" : "Kazakh (Cyrillic, Kazakhstan)",
"Kazakh" : "Kazakh",
"Khmer (Cambodia)" : "Khmer (Cambodia)",
"Khmer" : "Khmer",
"Kikuyu (Kenya)" : "Kikuyu (Kenya)",
"Kikuyu" : "Kikuyu",
"Kinyarwanda (Rwanda)" : "Kinyarwanda (Rwanda)",
"Kinyarwanda" : "Kinyarwanda",
"Konkani (India)" : "Konkani (India)",
"Konkani" : "Konkani",
"Korean (South Korea)" : "Korean (South Korea)",
"Korean" : "Korean",
"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)" : "Latvian (Latvia)",
"Latvian" : "Latvian",
"Lithuanian (Lithuania)" : "Lithuanian (Lithuania)",
"Lithuanian" : "Lithuanian",
"Luo (Kenya)" : "Luo (Kenya)",
"Luo" : "Luo",
"Luyia (Kenya)" : "Luyia (Kenya)",
"Luyia" : "Luyia",
"Macedonian (Macedonia)" : "Macedonian (Macedonia)",
"Macedonian" : "Macedonian",
"Machame (Tanzania)" : "Machame (Tanzania)",
"Machame" : "Machame",
"Makonde (Tanzania)" : "Makonde (Tanzania)",
"Makonde" : "Makonde",
"Malagasy (Madagascar)" : "Malagasy (Madagascar)",
"Malagasy" : "Malagasy",
"Malay (Brunei)" : "Malay (Brunei)",
"Malay (Malaysia)" : "Malay (Malaysia)",
"Malay" : "Malay",
"Malayalam (India)" : "Malayalam (India)",
"Malayalam" : "Malayalam",
"Maltese (Malta)" : "Maltese (Malta)",
"Maltese" : "Maltese",
"Manx (United Kingdom)" : "Manx (United Kingdom)",
"Manx" : "Manx",
"Marathi (India)" : "Marathi (India)",
"Marathi" : "Marathi",
"Masai (Kenya)" : "Masai (Kenya)",
"Masai (Tanzania)" : "Masai (Tanzania)",
"Masai" : "Masai",
"Meru (Kenya)" : "Meru (Kenya)",
"Meru" : "Meru",
"Morisyen (Mauritius)" : "Morisyen (Mauritius)",
"Morisyen" : "Morisyen",
"Nama (Namibia)" : "Nama (Namibia)",
"Nama" : "Nama",
"Nepali (India)" : "Nepali (India)",
"Nepali (Nepal)" : "Nepali (Nepal)",
"Nepali" : "Nepali",
"North Ndebele (Zimbabwe)" : "North Ndebele (Zimbabwe)",
"North Ndebele" : "North Ndebele",
"Norwegian Bokmål (Norway)" : "Norwegian Bokmål (Norway)",
"Norwegian Bokmål" : "Norwegian Bokmål",
"Norwegian Nynorsk (Norway)" : "Norwegian Nynorsk (Norway)",
"Norwegian Nynorsk" : "Norwegian Nynorsk",
"Nyankole (Uganda)" : "Nyankole (Uganda)",
"Nyankole" : "Nyankole",
"Oriya (India)" : "Oriya (India)",
"Oriya" : "Oriya",
"Oromo (Ethiopia)" : "Oromo (Ethiopia)",
"Oromo (Kenya)" : "Oromo (Kenya)",
"Oromo" : "Oromo",
"Pashto (Afghanistan)" : "Pashto (Afghanistan)",
"Pashto" : "Pashto",
"Persian (Afghanistan)" : "Persian (Afghanistan)",
"Persian (Iran)" : "Persian (Iran)",
"Persian" : "Persian",
"Polish (Poland)" : "Polish (Poland)",
"Polish" : "Polish",
"Portuguese (Brazil)" : "Portuguese (Brazil)",
"Portuguese (Guinea-Bissau)" : "Portuguese (Guinea-Bissau)",
"Portuguese (Mozambique)" : "Portuguese (Mozambique)",
"Portuguese (Portugal)" : "Portuguese (Portugal)",
"Portuguese" : "Portuguese",
"Punjabi (Arabic)" : "Punjabi (Arabic)",
"Punjabi (Arabic, Pakistan)" : "Punjabi (Arabic, Pakistan)",
"Punjabi (Gurmukhi)" : "Punjabi (Gurmukhi)",
"Punjabi (Gurmukhi, India)" : "Punjabi (Gurmukhi, India)",
"Punjabi" : "Punjabi",
"Romanian (Moldova)" : "Romanian (Moldova)",
"Romanian (Romania)" : "Romanian (Romania)",
"Romanian" : "Romanian",
"Romansh (Switzerland)" : "Romansh (Switzerland)",
"Romansh" : "Romansh",
"Rombo (Tanzania)" : "Rombo (Tanzania)",
"Rombo" : "Rombo",
"Russian (Moldova)" : "Russian (Moldova)",
"Russian (Russia)" : "Russian (Russia)",
"Russian (Ukraine)" : "Russian (Ukraine)",
"Russian" : "Russian",
"Rwa (Tanzania)" : "Rwa (Tanzania)",
"Rwa" : "Rwa",
"Samburu (Kenya)" : "Samburu (Kenya)",
"Samburu" : "Samburu",
"Sango (Central African Republic)" : "Sango (Central African Republic)",
"Sango" : "Sango",
"Sena (Mozambique)" : "Sena (Mozambique)",
"Sena" : "Sena",
"Serbian (Cyrillic)" : "Serbian (Cyrillic)",
"Serbian (Cyrillic, Bosnia and Herzegovina)" : "Serbian (Cyrillic, Bosnia and Herzegovina)",
"Serbian (Cyrillic, Montenegro)" : "Serbian (Cyrillic, Montenegro)",
"Serbian (Cyrillic, Serbia)" : "Serbian (Cyrillic, Serbia)",
"Serbian (Latin)" : "Serbian (Latin)",
"Serbian (Latin, Bosnia and Herzegovina)" : "Serbian (Latin, Bosnia and Herzegovina)",
"Serbian (Latin, Montenegro)" : "Serbian (Latin, Montenegro)",
"Serbian (Latin, Serbia)" : "Serbian (Latin, Serbia)",
"Serbian" : "Serbian",
"Shona (Zimbabwe)" : "Shona (Zimbabwe)",
"Shona" : "Shona",
"Sichuan Yi (China)" : "Sichuan Yi (China)",
"Sichuan Yi" : "Sichuan Yi",
"Sinhala (Sri Lanka)" : "Sinhala (Sri Lanka)",
"Sinhala" : "Sinhala",
"Slovak (Slovakia)" : "Slovak (Slovakia)",
"Slovak" : "Slovak",
"Slovenian (Slovenia)" : "Slovenian (Slovenia)",
"Slovenian" : "Slovenian",
"Soga (Uganda)" : "Soga (Uganda)",
"Soga" : "Soga",
"Somali (Djibouti)" : "Somali (Djibouti)",
"Somali (Ethiopia)" : "Somali (Ethiopia)",
"Somali (Kenya)" : "Somali (Kenya)",
"Somali (Somalia)" : "Somali (Somalia)",
"Somali" : "Somali",
"Spanish (Argentina)" : "Spanish (Argentina)",
"Spanish (Bolivia)" : "Spanish (Bolivia)",
"Spanish (Chile)" : "Spanish (Chile)",
"Spanish (Colombia)" : "Spanish (Colombia)",
"Spanish (Costa Rica)" : "Spanish (Costa Rica)",
"Spanish (Dominican Republic)" : "Spanish (Dominican Republic)",
"Spanish (Ecuador)" : "Spanish (Ecuador)",
"Spanish (El Salvador)" : "Spanish (El Salvador)",
"Spanish (Equatorial Guinea)" : "Spanish (Equatorial Guinea)",
"Spanish (Guatemala)" : "Spanish (Guatemala)",
"Spanish (Honduras)" : "Spanish (Honduras)",
"Spanish (Latin America)" : "Spanish (Latin America)",
"Spanish (Mexico)" : "Spanish (Mexico)",
"Spanish (Nicaragua)" : "Spanish (Nicaragua)",
"Spanish (Panama)" : "Spanish (Panama)",
"Spanish (Paraguay)" : "Spanish (Paraguay)",
"Spanish (Peru)" : "Spanish (Peru)",
"Spanish (Puerto Rico)" : "Spanish (Puerto Rico)",
"Spanish (Spain)" : "Spanish (Spain)",
"Spanish (United States)" : "Spanish (United States)",
"Spanish (Uruguay)" : "Spanish (Uruguay)",
"Spanish (Venezuela)" : "Spanish (Venezuela)",
"Spanish" : "Spanish",
"Swahili (Kenya)" : "Swahili (Kenya)",
"Swahili (Tanzania)" : "Swahili (Tanzania)",
"Swahili" : "Swahili",
"Swedish (Finland)" : "Swedish (Finland)",
"Swedish (Sweden)" : "Swedish (Sweden)",
"Swedish" : "Swedish",
"Swiss German (Switzerland)" : "Swiss German (Switzerland)",
"Swiss German" : "Swiss German",
"Tachelhit (Latin)" : "Tachelhit (Latin)",
"Tachelhit (Latin, Morocco)" : "Tachelhit (Latin, Morocco)",
"Tachelhit (Tifinagh)" : "Tachelhit (Tifinagh)",
"Tachelhit (Tifinagh, Morocco)" : "Tachelhit (Tifinagh, Morocco)",
"Tachelhit" : "Tachelhit",
"Taita (Kenya)" : "Taita (Kenya)",
"Taita" : "Taita",
"Tamil (India)" : "Tamil (India)",
"Tamil (Sri Lanka)" : "Tamil (Sri Lanka)",
"Tamil" : "Tamil",
"Telugu (India)" : "Telugu (India)",
"Telugu" : "Telugu",
"Teso (Kenya)" : "Teso (Kenya)",
"Teso (Uganda)" : "Teso (Uganda)",
"Teso" : "Teso",
"Thai (Thailand)" : "Thai (Thailand)",
"Thai" : "Thai",
"Tibetan (China)" : "Tibetan (China)",
"Tibetan (India)" : "Tibetan (India)",
"Tibetan" : "Tibetan",
"Tigrinya (Eritrea)" : "Tigrinya (Eritrea)",
"Tigrinya (Ethiopia)" : "Tigrinya (Ethiopia)",
"Tigrinya" : "Tigrinya",
"Tonga (Tonga)" : "Tonga (Tonga)",
"Tonga" : "Tonga",
"Turkish (Turkey)" : "Turkish (Turkey)",
"Turkish" : "Turkish",
"Ukrainian (Ukraine)" : "Ukrainian (Ukraine)",
"Ukrainian" : "Ukrainian",
"Urdu (India)" : "Urdu (India)",
"Urdu (Pakistan)" : "Urdu (Pakistan)",
"Urdu" : "Urdu",
"Uzbek (Arabic)" : "Uzbek (Arabic)",
"Uzbek (Arabic, Afghanistan)" : "Uzbek (Arabic, Afghanistan)",
"Uzbek (Cyrillic)" : "Uzbek (Cyrillic)",
"Uzbek (Cyrillic, Uzbekistan)" : "Uzbek (Cyrillic, Uzbekistan)",
"Uzbek (Latin)" : "Uzbek (Latin)",
"Uzbek (Latin, Uzbekistan)" : "Uzbek (Latin, Uzbekistan)",
"Uzbek" : "Uzbek",
"Vietnamese (Vietnam)" : "Vietnamese (Vietnam)",
"Vietnamese" : "Vietnamese",
"Vunjo (Tanzania)" : "Vunjo (Tanzania)",
"Vunjo" : "Vunjo",
"Welsh (United Kingdom)" : "Welsh (United Kingdom)",
"Welsh" : "Welsh",
"Yoruba (Nigeria)" : "Yoruba (Nigeria)",
"Yoruba" : "Yoruba",
"Zulu (South Africa)" : "Zulu (South Africa)",
"Zulu" : "Zulu",
"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." : "二要素認証はすべての\tユーザーと特定のグループに強制することができます。設定済みの二要素プロバイダーがない場合は、システムにログインできません。",
"Enforce two-factor authentication" : "二要素認証を強制する",
"Limit to groups" : "次のグループに制限",
"Enforcement of two-factor authentication can be set for certain groups only." : "二要素認証の強制は特定のグループのみに設定できます。",
"Two-factor authentication is enforced for all\tmembers of the following groups." : "二要素認証はすべての\t次のグループのメンバーに強制されています。",
"Enforced groups" : "適用されたグループ",
"Two-factor authentication is not enforced for\tmembers of the following groups." : "次のグループのメンバーの場合、二要素認証は強制されません。",
"Excluded groups" : "除外されたグループ",
"When groups are selected/excluded, they use the following logic to determine if a user has 2FA enforced: If no groups are selected, 2FA is enabled for everyone except members of the excluded groups. If groups are selected, 2FA is enabled for all members of these. If a user is both in a selected and excluded group, the selected takes precedence and 2FA is enforced." : "グループが選択または除外されると、ユーザーが2FAを適用しているかどうかを判断するために次のロジックが使用されます。グループが選択されていない場合、除外グループのメンバーを除くすべてのユーザーに対して2FAが有効になります。グループが選択されている場合は、2FAは、これらのすべてのメンバーのために有効になっています。 ユーザーが選択されたグループと除外されたグループの両方にいる場合は、選択されたグループが優先され、2FAが適用されます。",
"Save changes" : "変更を保存",
"Device settings" : "デバイスの設定",
"Internet Explorer" : "Internet Explorer",
@ -96,7 +552,14 @@
"Google Chrome" : "Google Chrome",
"Safari" : "Safari",
"Google Chrome for Android" : "Android用Google Chrome",
"iPhone" : "iPhone",
"iPad" : "iPad",
"Nextcloud iOS app" : "Nextcloud iOSアプリ",
"Nextcloud Android app" : "Nextcloud Android アプリ",
"Nextcloud Talk for iOS" : "iOS用Nextcloud Talk",
"Nextcloud Talk for Android" : "Android用Nextcloud Talk",
"Allow filesystem access" : "ファイルシステムへのアクセスを許可",
"Rename" : "名前を変更",
"Revoke" : "取り消す",
"Sync client - {os}" : "同期用クライアント - {os}",
"This session" : "本セッション",
@ -105,6 +568,8 @@
"Devices & sessions" : "デバイスとセッション",
"Web, desktop and mobile clients currently logged in to your account." : "現在、Web、デスクトップ、モバイルアプリであなたのアカウントにログインしている端末一覧です。",
"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" : "新しいアプリパスワードを作成",
@ -113,14 +578,18 @@
"Username" : "ユーザーID",
"Password" : "パスワード",
"Done" : "完了",
"Show QR code for mobile apps" : "モバイルアプリのQRコードを表示する",
"Copied!" : "コピーしました!",
"Copy" : "コピー",
"Could not copy app password. Please copy it manually." : "アプリのパスワードをコピーできませんでした。 手動でコピーしてください。",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "公式アプリは Nextcloud コミュニティにより開発されています。公式アプリは Nextcloud の中心的な機能を提供し、製品として可能です。",
"Official" : "公式",
"by" : "by",
"Update to {version}" : "{version} にアップデート",
"Remove" : "削除",
"Disable" : "無効にする",
"All" : "すべて",
"Limit app usage to groups" : "アプリの使用をグループに制限する",
"No results" : "該当なし",
"This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.",
"This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.",
@ -132,15 +601,23 @@
"Admin documentation" : "管理者ドキュメント",
"Developer documentation" : "開発者ドキュメント",
"Update to {update}" : "{update} にアップデート",
"Results from other categories" : "他のカテゴリからの結果",
"No apps found for your version" : "現在のバージョンに対応するアプリはありません",
"Disable all" : "すべて無効にする",
"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" : "新しいパスワード",
"Add user in group" : "グループにユーザーを追加",
"Set user as admin for" : "ユーザーを管理者に設定します",
"Select user quota" : "ユーザークオータを選択",
"No language set" : "言語設定なし",
"Never" : "なし",
"Delete user" : "ユーザーを削除",
"Disable user" : "ユーザーを無効",
"Enable user" : "ユーザーを有効",
@ -157,6 +634,7 @@
"Last login" : "最終ログイン",
"Default language" : "デフォルトの言語",
"Add a new user" : "新しいユーザーを追加",
"No users in here" : "ここにはユーザーがありません",
"Unlimited" : "無制限",
"Default quota" : "デフォルトのクオータ",
"Password change is disabled because the master key is disabled" : "マスターキーが無効になっているため、パスワードの変更は無効です",
@ -171,8 +649,10 @@
"New user" : "新しいユーザー",
"Default quota:" : "デフォルトのクオータ:",
"Select default quota" : "デフォルトのクオータを選択",
"Show Languages" : "言語を表示",
"Show last login" : "最終ログインを表示",
"Show user backend" : "ユーザーバックエンドを表示",
"Show storage path" : "ストレージの場所を表示",
"You are about to remove the group {group}. The users will NOT be deleted." : "{group}グループを削除しようとしています。 ユーザーは削除されません。",
"Please confirm the group removal " : "グループの削除を確認してください",
"Remove group" : "グループを削除",
@ -204,6 +684,7 @@
"It is important to set up this server to be able to send emails, like for password reset and notifications." : "パスワードのリセットや通知などのメールを送信できるよう、このサーバーを設定することが重要です。",
"Send mode" : "送信モード",
"Encryption" : "暗号化",
"Sendmail mode" : "Sendmailモード",
"From address" : "送信元アドレス",
"mail" : "mail",
"Authentication method" : "認証方法",
@ -246,6 +727,7 @@
"Last job execution ran %s. Something seems wrong." : "最終ジョブ実行は %s です。何か問題が発生しています。",
"Background job didnt run yet!" : "バックグラウンドジョブは実行されていません",
"For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "最適なパフォーマンスにするには、バックグラウンドジョブを正確に設定することが重要です。大規模なインスタンスでは、'Cron'がお薦めの設定です。詳細な情報は、ドキュメントを参照してください。",
"Pick background job setting" : "バックグラウンドジョブ設定を選択",
"Execute one task with each page loaded" : "各ページの読み込み時にタスクを実行します。",
"cron.php is registered at a webcron service to call cron.php every 15 minutes over HTTP." : "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されます。",
"Use system cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。",
@ -308,6 +790,21 @@
"Help translate" : "翻訳に協力する",
"Locale" : "ロケール",
"Current password" : "現在のパスワード",
"Change password" : "パスワードを変更"
"Change password" : "パスワードを変更",
"Use a second factor besides your password to increase security for your account." : "アカウントのセキュリティを強化するには、パスワード以外に2番目の要素を使用してください。",
"cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "%s バージョン (%s) の古い cURL を使っています。OSを更新するか、この機能 %s が正しく動くアプリに更新してください。",
"Disconnect" : "切断",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOSクライアント",
"Android Client" : "Androidクライアント",
"Not supported!" : "未対応",
"Press ⌘-C to copy." : "⌘-C でコピーします。",
"Press Ctrl-C to copy." : "Ctrl-Cを押してコピーします。",
"Error while loading browser sessions and device tokens" : "ブラウザーセッションとデバイストークンの読み込み中にエラーが発生しました",
"Default quota :" : "デフォルトのクオータ :",
"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>." : "<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">インストールガイド ↗</a>を再確認して、 <a href=\"%s\">ログ</a>にあるすべてのエラーや警告を確認してください。",
"Follow us on Google+" : "Google+でフォロー!",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "<strong>%s</strong> / <strong>%s</strong> (<strong>%s %%</strong>) 使用中"
},"pluralForm" :"nplurals=1; plural=0;"
}

View file

@ -763,12 +763,12 @@ OC.L10N.register(
"Follow us on Mastodon" : "在Mastodon上关注我们",
"Check out our blog" : "浏览我们的博客!",
"Subscribe to our newsletter" : "订阅我们的最新消息!",
"Profile picture" : "账头像",
"Profile picture" : "账头像",
"Upload new" : "上传",
"Select from Files" : "选择文件",
"Remove image" : "删除图片",
"png or jpg, max. 20 MB" : "png 或 jpg 格式,最大 20MB",
"Picture provided by original account" : "原始账户图片",
"Picture provided by original account" : "初始账号提供的图片",
"Cancel" : "取消",
"Choose as profile picture" : "选择个人头像",
"Details" : "详情",

View file

@ -761,12 +761,12 @@
"Follow us on Mastodon" : "在Mastodon上关注我们",
"Check out our blog" : "浏览我们的博客!",
"Subscribe to our newsletter" : "订阅我们的最新消息!",
"Profile picture" : "账头像",
"Profile picture" : "账头像",
"Upload new" : "上传",
"Select from Files" : "选择文件",
"Remove image" : "删除图片",
"png or jpg, max. 20 MB" : "png 或 jpg 格式,最大 20MB",
"Picture provided by original account" : "原始账户图片",
"Picture provided by original account" : "初始账号提供的图片",
"Cancel" : "取消",
"Choose as profile picture" : "选择个人头像",
"Details" : "详情",

View file

@ -250,6 +250,7 @@ OC.L10N.register(
"Twitter" : "Twitter",
"Twitter handle @…" : "Twitter 用戶名 @...",
"Help translate" : "幫助翻譯",
"Locale" : "所在地",
"Current password" : "目前密碼",
"Change password" : "變更密碼"
},

View file

@ -248,6 +248,7 @@
"Twitter" : "Twitter",
"Twitter handle @…" : "Twitter 用戶名 @...",
"Help translate" : "幫助翻譯",
"Locale" : "所在地",
"Current password" : "目前密碼",
"Change password" : "變更密碼"
},"pluralForm" :"nplurals=1; plural=0;"

View file

@ -134,20 +134,6 @@ class ShareTest extends \Test\TestCase {
parent::tearDown();
}
/**
* @param boolean|string $token
* @return array
*/
protected function getShareByValidToken($token) {
$row = \OCP\Share::getShareByToken($token);
$this->assertInternalType(
'array',
$row,
"Failed asserting that a share for token $token exists."
);
return $row;
}
public function testGetItemSharedWithUser() {
\OC_User::setUserId($this->user1->getUID());