diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/l10n/pt_BR.js | 1 | ||||
-rw-r--r-- | lib/l10n/pt_BR.json | 1 | ||||
-rw-r--r-- | lib/l10n/tr.js | 1 | ||||
-rw-r--r-- | lib/l10n/tr.json | 1 | ||||
-rw-r--r-- | lib/private/Files/ObjectStore/S3ConnectionTrait.php | 2 |
5 files changed, 5 insertions, 1 deletions
diff --git a/lib/l10n/pt_BR.js b/lib/l10n/pt_BR.js index 4270e0b3192..265de0ee0a8 100644 --- a/lib/l10n/pt_BR.js +++ b/lib/l10n/pt_BR.js @@ -156,6 +156,7 @@ OC.L10N.register( "%1$s shared »%2$s« with you." : "%1$s compartilhou »%2$s« com você.", "Click the button below to open it." : "Clique no botão abaixo para abri-lo.", "The requested share does not exist anymore" : "O compartilhamento solicitado não existe mais", + "The requested share comes from a disabled user" : "O compartilhamento solicitado vem de um usuário desabilitado", "The user was not created because the user limit has been reached. Check your notifications to learn more." : "O usuário não foi criado porque o limite de usuários foi atingido. Confira suas notificações para saber mais.", "Could not find category \"%s\"" : "Impossível localizar a categoria \"%s\"", "Sunday" : "Domingo", diff --git a/lib/l10n/pt_BR.json b/lib/l10n/pt_BR.json index edb7e705072..2609d133dd4 100644 --- a/lib/l10n/pt_BR.json +++ b/lib/l10n/pt_BR.json @@ -154,6 +154,7 @@ "%1$s shared »%2$s« with you." : "%1$s compartilhou »%2$s« com você.", "Click the button below to open it." : "Clique no botão abaixo para abri-lo.", "The requested share does not exist anymore" : "O compartilhamento solicitado não existe mais", + "The requested share comes from a disabled user" : "O compartilhamento solicitado vem de um usuário desabilitado", "The user was not created because the user limit has been reached. Check your notifications to learn more." : "O usuário não foi criado porque o limite de usuários foi atingido. Confira suas notificações para saber mais.", "Could not find category \"%s\"" : "Impossível localizar a categoria \"%s\"", "Sunday" : "Domingo", diff --git a/lib/l10n/tr.js b/lib/l10n/tr.js index 5eee8ded0d6..df403564ca0 100644 --- a/lib/l10n/tr.js +++ b/lib/l10n/tr.js @@ -156,6 +156,7 @@ OC.L10N.register( "%1$s shared »%2$s« with you." : "%1$s, sizinle »%2$s« ögesini paylaştı.", "Click the button below to open it." : "Açmak için aşağıdaki düğmeye tıklayın.", "The requested share does not exist anymore" : "Erişilmek istenilen paylaşım artık yok", + "The requested share comes from a disabled user" : "Erişilmek istenilen paylaşım etkisizleştirilmiş bir kullanıcıdan geliyor", "The user was not created because the user limit has been reached. Check your notifications to learn more." : "Kullanıcı sayısı sınırına ulaşıldığından kullanıcı eklenemedi. Ayrıntılı bilgi almak için bildirimlerinize bakın.", "Could not find category \"%s\"" : "\"%s\" kategorisi bulunamadı", "Sunday" : "Pazar", diff --git a/lib/l10n/tr.json b/lib/l10n/tr.json index a719db23f9a..5db37fb770c 100644 --- a/lib/l10n/tr.json +++ b/lib/l10n/tr.json @@ -154,6 +154,7 @@ "%1$s shared »%2$s« with you." : "%1$s, sizinle »%2$s« ögesini paylaştı.", "Click the button below to open it." : "Açmak için aşağıdaki düğmeye tıklayın.", "The requested share does not exist anymore" : "Erişilmek istenilen paylaşım artık yok", + "The requested share comes from a disabled user" : "Erişilmek istenilen paylaşım etkisizleştirilmiş bir kullanıcıdan geliyor", "The user was not created because the user limit has been reached. Check your notifications to learn more." : "Kullanıcı sayısı sınırına ulaşıldığından kullanıcı eklenemedi. Ayrıntılı bilgi almak için bildirimlerinize bakın.", "Could not find category \"%s\"" : "\"%s\" kategorisi bulunamadı", "Sunday" : "Pazar", diff --git a/lib/private/Files/ObjectStore/S3ConnectionTrait.php b/lib/private/Files/ObjectStore/S3ConnectionTrait.php index deb03571c76..49942b385bc 100644 --- a/lib/private/Files/ObjectStore/S3ConnectionTrait.php +++ b/lib/private/Files/ObjectStore/S3ConnectionTrait.php @@ -92,7 +92,7 @@ trait S3ConnectionTrait { if (!isset($params['port']) || $params['port'] === '') { $params['port'] = (isset($params['use_ssl']) && $params['use_ssl'] === false) ? 80 : 443; } - $params['verify_bucket_exists'] = empty($params['verify_bucket_exists']) ? true : $params['verify_bucket_exists']; + $params['verify_bucket_exists'] = $params['verify_bucket_exists'] ?? true; $this->params = $params; } |