summaryrefslogtreecommitdiffstats
path: root/apps/settings/l10n/es_419.js
diff options
context:
space:
mode:
authorNextcloud bot <bot@nextcloud.com>2022-03-19 02:28:28 +0000
committerNextcloud bot <bot@nextcloud.com>2022-03-19 02:28:28 +0000
commit40b0ca56f77a994e8a094643ea96d53e7e8d24bc (patch)
tree4ab7f7b5fc397cf70108551f54247b2a4db272ea /apps/settings/l10n/es_419.js
parent39b5c2cd8324655c88507993fcbc08f2f331ff68 (diff)
downloadnextcloud-server-40b0ca56f77a994e8a094643ea96d53e7e8d24bc.tar.gz
nextcloud-server-40b0ca56f77a994e8a094643ea96d53e7e8d24bc.zip
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Diffstat (limited to 'apps/settings/l10n/es_419.js')
-rw-r--r--apps/settings/l10n/es_419.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/l10n/es_419.js b/apps/settings/l10n/es_419.js
index bda31fd1c98..4eb8da5d1c6 100644
--- a/apps/settings/l10n/es_419.js
+++ b/apps/settings/l10n/es_419.js
@@ -129,6 +129,7 @@ OC.L10N.register(
"Done" : "Terminado",
"Copied!" : "¡Copiado!",
"Copy" : "Copiar",
+ "Enable" : "Habilitar",
"Your email address" : "Tu dirección de correo electrónico",
"No email address set" : "No se ha establecido la dirección de correo electrónico",
"Language" : "Idioma",
@@ -166,7 +167,6 @@ OC.L10N.register(
"Phone number" : "Número de teléfono",
"Twitter" : "Twitter",
"Website" : "Sitio web",
- "Enable" : "Habilitar",
"Never" : "Nunca",
"The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación está habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ",
"Administrator documentation" : "Documentación del adminsitrador",
ghlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php

try {

	require_once 'lib/base.php';
	$path_info = OC_Request::getPathInfo();
	if ($path_info === false || $path_info === '') {
		OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
		exit;
	}
	if (!$pos = strpos($path_info, '/', 1)) {
		$pos = strlen($path_info);
	}
	$service=substr($path_info, 1, $pos-1);

	$file = \OC::$server->getAppConfig()->getValue('core', 'remote_' . $service);

	if(is_null($file)) {
		OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
		exit;
	}

	$file=ltrim($file, '/');

	$parts=explode('/', $file, 2);
	$app=$parts[0];
	switch ($app) {
		case 'core':
			$file =  OC::$SERVERROOT .'/'. $file;
			break;
		default:
			OC_Util::checkAppEnabled($app);
			OC_App::loadApp($app);
			$file = OC_App::getAppPath($app) .'/'. $parts[1];
			break;
	}
	$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
	require_once $file;

} catch (Exception $ex) {
	OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
	\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
	OC_Template::printExceptionErrorPage($ex);
}