summaryrefslogtreecommitdiffstats
path: root/lib/l10n/pt_BR.js
diff options
context:
space:
mode:
authorNextcloud bot <bot@nextcloud.com>2023-05-06 02:27:44 +0000
committerNextcloud bot <bot@nextcloud.com>2023-05-06 02:27:44 +0000
commit737e79854e967e2d2620f8593d9698905146e77a (patch)
tree4d198c983c905f8f1d41ae34840a703beb467fdc /lib/l10n/pt_BR.js
parentc40d1b7dbc4b0c12ff08f300abdd93dbecba0396 (diff)
downloadnextcloud-server-737e79854e967e2d2620f8593d9698905146e77a.tar.gz
nextcloud-server-737e79854e967e2d2620f8593d9698905146e77a.zip
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Diffstat (limited to 'lib/l10n/pt_BR.js')
-rw-r--r--lib/l10n/pt_BR.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/l10n/pt_BR.js b/lib/l10n/pt_BR.js
index 65db17c8a09..ac79493d289 100644
--- a/lib/l10n/pt_BR.js
+++ b/lib/l10n/pt_BR.js
@@ -238,8 +238,6 @@ OC.L10N.register(
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ajustar a configuração no php.ini fará com que o Nextcloud execute novamente",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> está configurado para <code>%s</code> em vez do valor esperado <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Para corrigir este conjunto de problemas <code>mbstring.func_overload</code> para <code>0</code> no seu php.ini.",
- "libxml2 2.7.0 is at least required. Currently %s is installed." : "A libxml2 2.7.0 é a versão mínima necessária. Atualmente a versão %s está instalada.",
- "To fix this issue update your libxml2 version and restart your web server." : "Para corrigir este problema, atualize a versão da sua libxml2 e reinicie seu servidor web.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP aparentemente está configurado para retirar blocos doc inline. Isso fará com que vários aplicativos do núcleo fiquem inacessíveis.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isso provavelmente é causado por um cache/acelerador, como Zend OPcache ou eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "Módulos do PHP foram instalados, mas eles ainda estão listados como faltantes?",
@@ -271,6 +269,8 @@ OC.L10N.register(
"%s enter the database name." : "%s insira o nome do banco de dados.",
"%s you may not use dots in the database name" : "%s você não pode usar pontos no nome do banco de dados",
"The user limit has been reached and the user was not created. Check your notifications to learn more." : "O limite de usuários foi atingido e o usuário não foi criado. Verifique suas notificações para saber mais.",
- "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Somente os seguintes caracteres são permitidos em um nome de usuário: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-'\""
+ "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Somente os seguintes caracteres são permitidos em um nome de usuário: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-'\"",
+ "libxml2 2.7.0 is at least required. Currently %s is installed." : "A libxml2 2.7.0 é a versão mínima necessária. Atualmente a versão %s está instalada.",
+ "To fix this issue update your libxml2 version and restart your web server." : "Para corrigir este problema, atualize a versão da sua libxml2 e reinicie seu servidor web."
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
an> == '' && !OC_Group::inGroup(OC_User::getUser(), 'admin')) || (!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))){ $l = OC_L10N::get('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } //make sure the quota is in the expected format $quota=$_POST["quota"]; if($quota!='none' and $quota!='default'){ $quota= OC_Helper::computerFileSize($quota); if($quota==0){ $quota='default'; }else{ $quota=OC_Helper::humanFileSize($quota); } } // Return Success story if($username){ OC_Preferences::setValue($username,'files','quota',$quota); }else{//set the default quota when no username is specified if($quota=='default'){//'default' as default quota makes no sense $quota='none'; } OC_Appconfig::setValue('files','default_quota',$quota); } OC_JSON::success(array("data" => array( "username" => $username ,'quota'=>$quota)));