summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Command/App/ListApps.php2
-rw-r--r--core/Controller/AvatarController.php5
-rw-r--r--core/Controller/ContactsMenuController.php7
-rw-r--r--core/Controller/LoginController.php2
-rw-r--r--core/Controller/OCSController.php6
-rw-r--r--core/Middleware/TwoFactorMiddleware.php2
-rw-r--r--core/ajax/update.php6
-rw-r--r--core/css/icons.scss4
-rw-r--r--core/js/tests/specs/setupchecksSpec.js8
-rw-r--r--core/l10n/ca.js82
-rw-r--r--core/l10n/ca.json82
-rw-r--r--core/l10n/es_MX.js2
-rw-r--r--core/l10n/es_MX.json2
-rw-r--r--core/l10n/lv.js51
-rw-r--r--core/l10n/lv.json51
-rw-r--r--core/l10n/ro.js9
-rw-r--r--core/l10n/ro.json9
-rw-r--r--core/l10n/sq.js43
-rw-r--r--core/l10n/sq.json43
-rw-r--r--core/templates/403.php8
-rw-r--r--core/templates/404.php8
21 files changed, 341 insertions, 91 deletions
diff --git a/core/Command/App/ListApps.php b/core/Command/App/ListApps.php
index e03e3ce8f56..c933a2519ef 100644
--- a/core/Command/App/ListApps.php
+++ b/core/Command/App/ListApps.php
@@ -73,7 +73,7 @@ class ListApps extends Base {
//sort enabled apps above disabled apps
foreach ($apps as $app) {
- if ($shippedFilter !== null && \OC_App::isShipped($app) !== $shippedFilter){
+ if ($shippedFilter !== null && $this->manager->isShipped($app) !== $shippedFilter){
continue;
}
if ($this->manager->isInstalled($app)) {
diff --git a/core/Controller/AvatarController.php b/core/Controller/AvatarController.php
index 5a3d6309149..cb0ece9fa45 100644
--- a/core/Controller/AvatarController.php
+++ b/core/Controller/AvatarController.php
@@ -173,6 +173,7 @@ class AvatarController extends Controller {
if (isset($path)) {
$path = stripslashes($path);
$userFolder = $this->rootFolder->getUserFolder($this->userId);
+ /** @var File $node */
$node = $userFolder->get($path);
if (!($node instanceof File)) {
return new JSONResponse(['data' => ['message' => $this->l->t('Please select a file.')]]);
@@ -296,7 +297,7 @@ class AvatarController extends Controller {
Http::STATUS_OK,
['Content-Type' => $image->mimeType()]);
- $resp->setETag(crc32($image->data()));
+ $resp->setETag((string)crc32($image->data()));
$resp->cacheFor(0);
$resp->setLastModified(new \DateTime('now', new \DateTimeZone('GMT')));
return $resp;
@@ -328,7 +329,7 @@ class AvatarController extends Controller {
}
$image = new \OC_Image($tmpAvatar);
- $image->crop($crop['x'], $crop['y'], round($crop['w']), round($crop['h']));
+ $image->crop($crop['x'], $crop['y'], (int)round($crop['w']), (int)round($crop['h']));
try {
$avatar = $this->avatarManager->getAvatar($this->userId);
$avatar->set($image);
diff --git a/core/Controller/ContactsMenuController.php b/core/Controller/ContactsMenuController.php
index bbb990f1a4f..76eaf11085d 100644
--- a/core/Controller/ContactsMenuController.php
+++ b/core/Controller/ContactsMenuController.php
@@ -54,7 +54,7 @@ class ContactsMenuController extends Controller {
* @NoAdminRequired
*
* @param string|null filter
- * @return JSONResponse
+ * @return \JsonSerializable[]
*/
public function index($filter = null) {
return $this->manager->getEntries($this->userSession->getUser(), $filter);
@@ -65,15 +65,14 @@ class ContactsMenuController extends Controller {
*
* @param integer $shareType
* @param string $shareWith
- * @return JSONResponse
+ * @return JSONResponse|\JsonSerializable
*/
public function findOne($shareType, $shareWith) {
$contact = $this->manager->findOne($this->userSession->getUser(), $shareType, $shareWith);
if ($contact) {
return $contact;
- } else {
- return new JSONResponse([], Http::STATUS_NOT_FOUND);
}
+ return new JSONResponse([], Http::STATUS_NOT_FOUND);
}
}
diff --git a/core/Controller/LoginController.php b/core/Controller/LoginController.php
index 1c75b1f3c8b..12431571256 100644
--- a/core/Controller/LoginController.php
+++ b/core/Controller/LoginController.php
@@ -248,7 +248,7 @@ class LoginController extends Controller {
$args['redirect_url'] = $redirect_url;
}
$response = new RedirectResponse($this->urlGenerator->linkToRoute('core.login.showLoginForm', $args));
- $response->throttle();
+ $response->throttle(['user' => $user]);
$this->session->set('loginMessages', [
['invalidpassword'], []
]);
diff --git a/core/Controller/OCSController.php b/core/Controller/OCSController.php
index 35eac3a3d8b..ff939f71a4f 100644
--- a/core/Controller/OCSController.php
+++ b/core/Controller/OCSController.php
@@ -122,11 +122,11 @@ class OCSController extends \OCP\AppFramework\OCSController {
]);
}
- $response = new DataResponse(null, 102);
+ $response = new DataResponse([], 102);
$response->throttle();
return $response;
}
- return new DataResponse(null, 101);
+ return new DataResponse([], 101);
}
/**
@@ -146,6 +146,6 @@ class OCSController extends \OCP\AppFramework\OCSController {
return new DataResponse($data);
}
- return new DataResponse('User not found', 404);
+ return new DataResponse(['User not found'], 404);
}
}
diff --git a/core/Middleware/TwoFactorMiddleware.php b/core/Middleware/TwoFactorMiddleware.php
index e35c53d4049..a4e0d7219ec 100644
--- a/core/Middleware/TwoFactorMiddleware.php
+++ b/core/Middleware/TwoFactorMiddleware.php
@@ -104,7 +104,7 @@ class TwoFactorMiddleware extends Middleware {
// TODO: dont check/enforce 2FA if a auth token is used
}
- private function checkTwoFactor($controller, $methodName, IUser $user) {
+ private function checkTwoFactor(Controller $controller, $methodName, IUser $user) {
// If two-factor auth is in progress disallow access to any controllers
// defined within "LoginController".
$needsSecondFactor = $this->twoFactorManager->needsSecondFactor($user);
diff --git a/core/ajax/update.php b/core/ajax/update.php
index d23e3b0d56d..818291d3eff 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -50,6 +50,10 @@ class FeedBackHandler {
private $progressStateStep = 0;
/** @var string */
private $currentStep;
+ /** @var \OCP\IEventSource */
+ private $eventSource;
+ /** @var \OCP\IL10N */
+ private $l10n;
public function __construct(\OCP\IEventSource $eventSource, \OCP\IL10N $l10n) {
$this->eventSource = $eventSource;
@@ -220,7 +224,7 @@ if (OC::checkUpgrade(false)) {
if (!empty($disabledApps)) {
$eventSource->send('notice',
- (string)$l->t('Following apps have been disabled: %s', implode(', ', $disabledApps)));
+ (string)$l->t('Following apps have been disabled: %s', [implode(', ', $disabledApps)]));
}
} else {
$eventSource->send('notice', (string)$l->t('Already up to date'));
diff --git a/core/css/icons.scss b/core/css/icons.scss
index ae6df353f1e..b2702a29950 100644
--- a/core/css/icons.scss
+++ b/core/css/icons.scss
@@ -369,6 +369,10 @@ img, object, video, button, textarea, input, select {
background-image: url('../img/actions/toggle.svg?v=1');
}
+.icon-toggle-pictures {
+ background-image: url('../img/actions/toggle-pictures.svg?v=1');
+}
+
.icon-triangle-e {
background-image: url('../img/actions/triangle-e.svg?v=1');
}
diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js
index 507abd7e774..35279f3501e 100644
--- a/core/js/tests/specs/setupchecksSpec.js
+++ b/core/js/tests/specs/setupchecksSpec.js
@@ -151,7 +151,7 @@ describe('OC.SetupChecks tests', function() {
JSON.stringify({
isUrandomAvailable: true,
serverHasInternetConnection: false,
- memcacheDocs: 'https://doc.owncloud.org/server/go.php?to=admin-performance',
+ memcacheDocs: 'https://docs.nextcloud.com/server/go.php?to=admin-performance',
forwardedForHeadersWorking: true,
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
@@ -166,7 +166,7 @@ describe('OC.SetupChecks tests', function() {
msg: '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. We suggest to enable Internet connection for this server if you want to have all features.',
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
}, {
- msg: 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href="https://doc.owncloud.org/server/go.php?to=admin-performance" rel="noreferrer">documentation</a>.',
+ msg: 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href="https://docs.nextcloud.com/server/go.php?to=admin-performance" rel="noreferrer">documentation</a>.',
type: OC.SetupChecks.MESSAGE_TYPE_INFO
}]);
done();
@@ -184,7 +184,7 @@ describe('OC.SetupChecks tests', function() {
JSON.stringify({
isUrandomAvailable: true,
serverHasInternetConnection: false,
- memcacheDocs: 'https://doc.owncloud.org/server/go.php?to=admin-performance',
+ memcacheDocs: 'https://docs.nextcloud.com/server/go.php?to=admin-performance',
forwardedForHeadersWorking: true,
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
@@ -200,7 +200,7 @@ describe('OC.SetupChecks tests', function() {
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
},
{
- msg: 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href="https://doc.owncloud.org/server/go.php?to=admin-performance" rel="noreferrer">documentation</a>.',
+ msg: 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href="https://docs.nextcloud.com/server/go.php?to=admin-performance" rel="noreferrer">documentation</a>.',
type: OC.SetupChecks.MESSAGE_TYPE_INFO
}]);
done();
diff --git a/core/l10n/ca.js b/core/l10n/ca.js
index 1a8db86ed9f..7040a5cf748 100644
--- a/core/l10n/ca.js
+++ b/core/l10n/ca.js
@@ -3,7 +3,7 @@ OC.L10N.register(
{
"Please select a file." : "Seleccioneu un fitxer.",
"File is too big" : "El fitxer és massa gran",
- "The selected file is not an image." : "El fitxer seleccionat no és una imatge",
+ "The selected file is not an image." : "El fitxer seleccionat no és una imatge.",
"The selected file cannot be read." : "El fitxer seleccionat no es pot llegir.",
"Invalid file provided" : "El fitxer proporcionat no és vàlid",
"No image or file provided" : "No s'han proporcionat imatges o fitxers",
@@ -21,25 +21,29 @@ OC.L10N.register(
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "No s'ha pogut enviar correu de restabliment. No hi ha correu per aquest compte. Contacteu amb l'administrador.",
"Password reset" : "Canvi de contrasenya",
"Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Prem el següent botó per reinicialitzar la teva contrasenya. Si no has sol·licitat un canvi de contrasenya, ignora aquest correu.",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Feu clic al següent enllaç per restablir la contrasenya. Si no sol·liciteu la reinicialització de contrasenya, llavors ignoreu aquest correu electrònic.",
"Reset your password" : "Canvia la teva contrasenya",
"%s password reset" : "restableix la contrasenya %s",
"Couldn't send reset email. Please contact your administrator." : "No s'ha pogut restablir el correu. Contacteu amb l'administrador.",
"Couldn't send reset email. Please make sure your username is correct." : "No s'ha pogut enviar el correu de restabliment. Assegureu-vos que el vostre nom d'usuari és correcte.",
"Preparing update" : "Preparant l'actualització",
"[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "Advertiment de reparació:",
- "Repair error: " : "Error de reparació:",
+ "Repair warning: " : "Advertiment de reparació: ",
+ "Repair error: " : "Error de reparació: ",
+ "Please use the command line updater because automatic updating is disabled in the config.php." : "Utilitzeu l’actualitzador de línia de comandes perquè l'actualització automàtica està deshabilitada en el config.php.",
"[%d / %d]: Checking table %s" : "[%d / %d]: Revisant la taula %s",
"Turned on maintenance mode" : "Activat el mode de manteniment",
"Turned off maintenance mode" : "Desactivat el mode de manteniment",
"Maintenance mode is kept active" : "El mode de manteniment es manté activat",
"Updating database schema" : "Actualitzant l'esquema de la base de dades",
"Updated database" : "Actualitzada la base de dades",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Comprovar si l'esquema de base de dades es pot actualitzar (això pot trigar temps segons la mida de la base de dades)",
"Checked database schema update" : "S'ha comprobat l'actualització de l'esquema de la base de dades",
"Checking updates of apps" : "Comprovant les actualitzacions d'aplicacions",
"Checking for update of app \"%s\" in appstore" : "Comprovant les actualitzacions de l'aplicació \"%s\" al repositori",
"Update app \"%s\" from appstore" : "Actualitza l'aplicació \"%s\" del repositori",
"Checked for update of app \"%s\" in appstore" : "Comprovades les actualitzacions de l'aplicació \"%s\" al repositori",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Comprovar si l'esquema de base de dades per %s pot ser actualitzat (això pot trigar temps segons la mida de la base de dades)",
"Checked database schema update for apps" : "S'ha comprobat l'actualització de l'esquema de la base de dades per les apps",
"Updated \"%s\" to %s" : "Actualitzat \"%s\" a %s",
"Set log level to debug" : "Modifica el nivell de registre a depuració",
@@ -50,11 +54,11 @@ OC.L10N.register(
"%s (incompatible)" : "%s (incompatible)",
"Following apps have been disabled: %s" : "Les aplicacions següents s'han deshabilitat: %s",
"Already up to date" : "Ja actualitzat",
- "Search contacts …" : "Cerca contactes ...",
+ "Search contacts …" : "Cerca contactes …",
"No contacts found" : "No s'han trobat contactes",
- "Show all contacts …" : "Mostra tots els contactes...",
+ "Show all contacts …" : "Mostra tots els contactes …",
"There was an error loading your contacts" : "Hi ha hagut un error al carregar els teus contactes",
- "Loading your contacts …" : "Carregant els teus contactes...",
+ "Loading your contacts …" : "Carregant els teus contactes …",
"Looking for {term} …" : "Buscant {term} …",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Hi ha hagut problemes amb la comprovació d'integritat del codi. Més informació…</a>",
"No action available" : "Cap acció disponible",
@@ -71,7 +75,7 @@ OC.L10N.register(
"Confirm" : "Confirma",
"Failed to authenticate, try again" : "Error d'autenticació, torna-ho a intentar",
"seconds ago" : "segons enrere",
- "Logging in …" : "Accedint a...",
+ "Logging in …" : "Accedint 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." : "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu. Si no el rebeu en un temps raonable comproveu les carpetes de spam. <br>Si no és allà, pregunteu a l'administrador local.",
"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?" : "Els vostres fitxers estan encriptats. No hi haurà manera de recuperar les dades després que reestabliu la contrasenya. <br />Si no esteu segurs del que feu, contacteu amb l'administrador abans de continuar.<br />Voleu continuar?",
"I know what I'm doing" : "Sé el que faig",
@@ -83,7 +87,7 @@ OC.L10N.register(
"Error loading file picker template: {error}" : "Error en carregar la plantilla de càrrega de fitxers: {error}",
"OK" : "D'acord",
"Error loading message template: {error}" : "Error en carregar la plantilla de missatge: {error}",
- "read-only" : "Només de lectura",
+ "read-only" : "només de lectura",
"_{count} file conflict_::_{count} file conflicts_" : ["{count} conflicte de fitxer","{count} conflictes de fitxer"],
"One file conflict" : "Un fitxer en conflicte",
"New Files" : "Fitxers nous",
@@ -101,8 +105,21 @@ OC.L10N.register(
"Good password" : "Contrasenya bona",
"Strong password" : "Contrasenya forta",
"Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.",
+ "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "El teu servidor web no està configurat correctament per resoldre \"{url}\". Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>.",
+ "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. We suggest to enable Internet connection for this server if you want to have all features." : "Aquest servidor no té cap connexió a Internet operativa: múltiples punts finals no es van poder contactar. Això significa que algunes de les funcions com muntatge d'emmagatzematge extern, notificacions sobre les actualitzacions o instal·lació d'apps de terceres parts no funcionarà. L’accés remot a arxius i l’enviament d'e-mail de notificació podrien no funcionar tampoc. Suggerim habilitar la connexió a Internet per a aquest servidor si voleu tenir tota la funcionalitat.",
+ "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "No s’ha configurat cap memòria cau. Per millorar el seu rendiment configureu un memcache si està disponible. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>.",
+ "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom no és llegible per PHP que no és gens recomenable per motius de seguretat. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>.",
+ "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Actualment esteu executant PHP {version}. Us animem a actualitzar la versió de PHP que feu servir per tenir avantatge d’<a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">actualitzacions de rendiment i seguretat proporcionats pel PHP Group</a> tan aviat com ho suporti la vostra distribució.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configuració de les capçaleres del proxi invers és incorrecta o estàs accedint a Nextcloud des d'un proxy de confiança. Si no estàs accedint a Nextcloud des d'un proxy de confiança, això és un risc de seguretat i pot permetre a un atacant suplantar la teva adreça d'IP com visible a Nextcloud. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</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\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached es configura com a una memoria cau distribuïda, però s’ha instal·lat el mòdul erroni de PHP \"memcache\". \\OC\\Memcache\\Memcached només dóna suport a “memcached\" i no \"memcache\". Mireu el <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki de memcached sobre ambdós mòduls</a>.",
+ "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns fitxers no han passat la comprovació d'integritat. Trobareu més informació sobre com resoldre aquest assumpte a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Llista de fitxers no vàlids...</a> / <a href=\"{rescanEndpoint}\">Reescannejar...</a>)",
+ "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "La OPcache de PHP no està configurada correctament. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Per millor rendiment recomanem</a> utilitzar-la seguint la configuració en el <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. We strongly recommend enabling this function." : "La funció PHP \"set_time_limit\" no està disponible. Això podria resultar en scripts que s’aturin a mig execució, trencant la instal·lació. Us recomanem activar aquesta funció.",
"Error occurred while checking server setup" : "Hi ha hagut un error en comprovar la configuració del servidor",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Esteu accedint aquesta web a través de HTTP. Us recomanem que configureu el servidor per requerir HTTPS tal i com es descriu als <a href=\"{docUrl}\">consells de seguretat</a>",
+ "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "El teu directori de dades i fitxers són probablement accessibles des d'Internet. L'arxiu .htaccess no està funcionant. Es recomana que configureu el servidor web de manera que el directori de dades no estigui accessible o moure el directori de dades fora de l'arrel de document de servidor de web.",
+ "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "L'encapçalament “{header}” HTTP no està configurat per ser igual a “{expected}”. Aquest és un potencial risc de seguretat o privacitat, i es recomana ajustar aquesta configuració.",
+ "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "La capçalera HTTP “Strict-Transport-Security” no està configurada a un mínim de “{seconds}” segons. Per millor seguretat recomanem permetre HSTS com es descriu en els nostres <a href=\"{docUrl}\" rel=\"noreferrer\">consells de seguretat</a>.",
+ "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Esteu accedint aquesta web a través de HTTP. Us recomanem que configureu el servidor per requerir HTTPS tal i com es descriu als <a href=\"{docUrl}\">consells de seguretat</a>.",
"Shared" : "Compartit",
"Shared with {recipients}" : "Compartit amb {recipients}",
"Error setting expiration date" : "Error en establir la data de venciment",
@@ -135,7 +152,7 @@ OC.L10N.register(
"group" : "grup",
"remote" : "remot",
"email" : "email",
- "shared by {sharer}" : "Compartit per {sharer}",
+ "shared by {sharer}" : "compartit per {sharer}",
"Unshare" : "Deixa de compartir",
"Can reshare" : "Pot recompartir",
"Can edit" : "Pot editar",
@@ -147,16 +164,21 @@ OC.L10N.register(
"Error while sharing" : "Error en compartir",
"Share details could not be loaded for this item." : "No s'han pogut carregar els detalls de compartició de l'element.",
"_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Com a mínim cal {count} caràcter per a l'autocompletat","Com a mínim calen {count} caràcters per a l'autocompletat"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Aquesta llista potser està truncada - refineu el vostre terme de cerca per veure més resultats.",
"No users or groups found for {search}" : "No s'han trobat usuaris ni grups per {search}",
"No users found for {search}" : "No s'han trobat usuaris per {search}",
- "An error occurred. Please try again" : "S'ha produït un error. Si us plau, torni a intentar-ho.",
+ "An error occurred. Please try again" : "S'ha produït un error. Si us plau, torni a intentar-ho",
"{sharee} (group)" : "{sharee} (grup)",
"{sharee} (remote)" : "{sharee} (remot)",
"{sharee} (email)" : "{sharee} (email)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Comparteix",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartir amb altres persones introduint un usuari o grup, un ID de núvol federat o una adreça d’email.",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Compartir amb altres persones introduint un usuari o grup o ID de núvol federat.",
+ "Share with other people by entering a user or group or an email address." : "Compartir amb altres persones introduint un usuari o grup o una adreça d’email.",
"Name or email address..." : "Nom o adreça electrònica...",
- "Name or federated cloud ID..." : "Nom o ID de Núvol Federat:",
+ "Name or federated cloud ID..." : "Nom o ID de Núvol Federat…",
+ "Name, federated cloud ID or email address..." : "Nom, ID de núvol federat o adreça d’email…",
"Name..." : "Nom...",
"Error" : "Error",
"Error removing share" : "Error al treure compartició",
@@ -173,13 +195,19 @@ OC.L10N.register(
"sunny" : "asolellat",
"Hello {name}, the weather is {weather}" : "Hola {name}, el temps és {weather}",
"Hello {name}" : "Hola {name}",
- "new" : "Nou",
- "_download %n file_::_download %n files_" : ["descarregar l'arxiu %n","descarregar arxius %n "],
+ "<strong>These are your search results<script>alert(1)</script></strong>" : "<strong>Aquests són els resultats de la cerca<script>alert(1)</script></strong>",
+ "new" : "nou",
+ "_download %n file_::_download %n files_" : ["descarregar l'arxiu %n","descarregar arxius %n"],
+ "The update is in progress, leaving this page might interrupt the process in some environments." : "L'actualització està en marxa, abandonar aquesta pàgina podria interrompre el procés en alguns entorns.",
"Update to {version}" : "Actualitza a {version}",
- "An error occurred." : "S'ha produït un error",
+ "An error occurred." : "S'ha produït un error.",
"Please reload the page." : "Carregueu la pàgina de nou.",
+ "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "L'actualització no va tenir èxit. Per a més informació <a href=\"{url}\">consulta la nostra nota al fòrum</a> que cobreix aquest assumpte.",
+ "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "L'actualització no va tenir èxit. Si us plau reporti aquest assumpte a la <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">comunitat Nextcloud</a>.",
"Continue to Nextcloud" : "Continua a Nextcloud",
+ "_The update was successful. Redirecting you to Nextcloud in %n second._::_The update was successful. Redirecting you to Nextcloud in %n seconds._" : ["L'actualització va ser reeixida. Redirigint a Nextcloud en %n segon.","L’actualització va ser reeixida. Redirigint a Nextcloud en %n segons."],
"Searching other places" : "Buscant altres ubicacions",
+ "No search results in other folders for {tag}{filter}{endtag}" : "No hi ha resultats de la cerca en altres carpetes per {tag}{filter}{endtag}",
"_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} resultat de cerca en altres carpetes","{count} resultats de cerca en altres carpetes"],
"Personal" : "Personal",
"Users" : "Usuaris",
@@ -196,7 +224,7 @@ OC.L10N.register(
"More details can be found in the server log." : "Pots trobar més detalls al llistat del servidor.",
"Technical details" : "Detalls tècnics",
"Remote Address: %s" : "Adreça remota: %s",
- "Request ID: %s" : "Sol·licitud ID: %s ",
+ "Request ID: %s" : "Sol·licitud ID: %s",
"Type: %s" : "Tipus: %s",
"Code: %s" : "Codi: %s",
"Message: %s" : "Missatge: %s",
@@ -205,12 +233,13 @@ OC.L10N.register(
"Trace" : "Traça",
"Security warning" : "Advertiment de seguretat",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona.",
+ "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Per a informació sobre com configurar correctament el servidor, podeu consultar la <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentació</a>.",
"Create an <strong>admin account</strong>" : "Crea un <strong>compte d'administrador</strong>",
"Username" : "Nom d'usuari",
"Storage & database" : "Emmagatzematge i base de dades",
"Data folder" : "Carpeta de dades",
"Configure the database" : "Configura la base de dades",
- "Only %s is available." : "Només hi ha disponible %s",
+ "Only %s is available." : "Només hi ha disponible %s.",
"Install and activate additional PHP modules to choose other database types." : "Instal·la i activa mòduls PHP addicionals per seleccionar altres tipus de bases de dades.",
"For more details check out the documentation." : "Per més detalls consulteu la documentació.",
"Database user" : "Usuari de la base de dades",
@@ -218,17 +247,19 @@ OC.L10N.register(
"Database name" : "Nom de la base de dades",
"Database tablespace" : "Espai de taula de la base de dades",
"Database host" : "Ordinador central de la base de dades",
+ "Please specify the port number along with the host name (e.g., localhost:5432)." : "Si us plau, especifiqueu el nombre de port juntament amb el nom de servidor (per exemple, localhost:5432).",
"Performance warning" : "Alerta de rendiment",
"SQLite will be used as database." : "SQLite s'utilitzarà com a base de dades.",
"For larger installations we recommend to choose a different database backend." : "Per a instal·lacions més grans es recomana triar una base de dades diferent.",
"Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'ús de SQLite està desaconsellat especialment quan s'usa el client d'escriptori per sincronitzar els fitxers.",
"Finish setup" : "Acaba la configuració",
- "Finishing …" : "Acabant...",
+ "Finishing …" : "Acabant …",
"Need help?" : "Necessites ajuda?",
"See the documentation" : "Consulti la documentació",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Aquesta aplicació requereix Javascript per al seu correcte funcionament . Per favor, {linkstart}habiliti Javascript{linkend} i torni a carregar la pàgina.",
"More apps" : "Més aplicacions",
"Search" : "Cerca",
+ "This action requires you to confirm your password:" : "Aquesta acció necessita que confirmis la teva contrasenya:",
"Confirm your password" : "Confirma la teva contrasenya",
"Server side authentication failed!" : "L'autenticació del servidor ha fallat!",
"Please contact your administrator." : "Contacteu amb l'administrador.",
@@ -243,28 +274,32 @@ OC.L10N.register(
"You are about to grant \"%s\" access to your %s account." : "Estàs a punt de concedir accés \"%s\" al teu %s compte.",
"App token" : "Testimoni d'aplicació",
"Alternative login using app token" : "Acreditació alternativa utilitzat testimoni d'aplicació",
- "Redirecting …" : "Redirigint...",
+ "Redirecting …" : "Redirigint …",
"New password" : "Contrasenya nova",
"New Password" : "Contrasenya nova",
"Reset password" : "Reinicialitza la contrasenya",
"Two-factor authentication" : "Segon factor d'autenticació",
+ "Enhanced security is enabled for your account. Please authenticate using a second factor." : "La seguretat millorada està habilitada per al vostre compte. Si us plau autentica’t amb un segon factor.",
"Cancel log in" : "Cancel·la l'accés a",
"Use backup code" : "Utilitza un codi de copia de seguretat",
"Error while validating your second factor" : "Error al validar el segon factor d'autenticació",
- "You are accessing the server from an untrusted domain." : "Esteu accedint al servidor des d'un domini no fiable",
+ "You are accessing the server from an untrusted domain." : "Esteu accedint al servidor des d'un domini no fiable.",
+ "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Contacteu amb l'administrador. Si ets un administrador d'aquesta instància, configurar la opció \"trusted_domains\" en config/config.php. Config/config.sample.php ofereix una configuració d'exemple.",
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "En funció de la teva configuració, com a administrador podries utilitzar el botó d'abaix per confiar en aquest domini.",
"Add \"%s\" as trusted domain" : "Afegeix \"%s\" com a domini de confiança",
"App update required" : "Cal que actualitzeu la aplicació",
"%s will be updated to version %s" : "%s s'actualitzarà a la versió %s",
"These apps will be updated:" : "Aquestes aplicacions s'actualitzaran:",
"These incompatible apps will be disabled:" : "Aquestes aplicacions incompatibles es desactivaran:",
- "The theme %s has been disabled." : "S'ha desactivat el tema %s",
+ "The theme %s has been disabled." : "S'ha desactivat el tema %s.",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Assegureu-vos que heu fet una còpia de seguretat de la base de dades, del fitxer de configuració i de la carpeta de dades abans de continuar.",
"Start update" : "Inicia l'actualització",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Per evitar que s'esgoti el temps d'espera en instalacions grans, pots en el seu lloc fer córrer la següent comanda en el directori d'instalació. ",
+ "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Per evitar que s'esgoti el temps d'espera en instalacions grans, pots en el seu lloc fer córrer la següent comanda en el directori d'instalació:",
"Detailed logs" : "Registres detallats",
"Update needed" : "Actualització necessaria",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Utilitzeu l'updater de línia de comandes perquè tens un gran instància amb més de 50 usuàries.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Per obtenir ajuda, mira la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentació</a>.",
+ "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Sé que si continuo fent l'actualització mitjançant l’interfície d’usuari web té el risc que la sol·licitud esgoti un temps d'espera, que podria causa pèrdua de dades, però tinc una còpia de seguretat i se com restaurar la meva instància en cas de fallada.",
"Upgrade via web on my own risk" : "Actualitza via web sota la teva responsabilitat",
"This %s instance is currently in maintenance mode, which may take a while." : "Aquesta instància %s està actualment en manteniment i podria trigar una estona.",
"This page will refresh itself when the %s instance is available again." : "Aquesta pàgina s'actualitzarà automàticament quan la instància %s estigui disponible de nou.",
@@ -279,8 +314,9 @@ OC.L10N.register(
"can edit" : "pot editar",
"can create" : "pot crear",
"can change" : "pot canviar",
- "can delete" : "Pot esborrar",
+ "can delete" : "pot esborrar",
"access control" : "control d'accés",
+ "Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Compartir amb gent a altres servidors utilitzant els seus ID de núvol federats usuari@exemple.com/nextcloud",
"Share with users or by mail..." : "Comparteix amb usuaris o per correu...",
"Share with users or remote users..." : "Comparteix amb usuaris o usuaris remots ...",
"Share with users, remote users or by mail..." : "Comparteix amb usuaris, usuaris remots o per correu...",
diff --git a/core/l10n/ca.json b/core/l10n/ca.json
index 64ae6beed53..ff7af7846f1 100644
--- a/core/l10n/ca.json
+++ b/core/l10n/ca.json
@@ -1,7 +1,7 @@
{ "translations": {
"Please select a file." : "Seleccioneu un fitxer.",
"File is too big" : "El fitxer és massa gran",
- "The selected file is not an image." : "El fitxer seleccionat no és una imatge",
+ "The selected file is not an image." : "El fitxer seleccionat no és una imatge.",
"The selected file cannot be read." : "El fitxer seleccionat no es pot llegir.",
"Invalid file provided" : "El fitxer proporcionat no és vàlid",
"No image or file provided" : "No s'han proporcionat imatges o fitxers",
@@ -19,25 +19,29 @@
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "No s'ha pogut enviar correu de restabliment. No hi ha correu per aquest compte. Contacteu amb l'administrador.",
"Password reset" : "Canvi de contrasenya",
"Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Prem el següent botó per reinicialitzar la teva contrasenya. Si no has sol·licitat un canvi de contrasenya, ignora aquest correu.",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Feu clic al següent enllaç per restablir la contrasenya. Si no sol·liciteu la reinicialització de contrasenya, llavors ignoreu aquest correu electrònic.",
"Reset your password" : "Canvia la teva contrasenya",
"%s password reset" : "restableix la contrasenya %s",
"Couldn't send reset email. Please contact your administrator." : "No s'ha pogut restablir el correu. Contacteu amb l'administrador.",
"Couldn't send reset email. Please make sure your username is correct." : "No s'ha pogut enviar el correu de restabliment. Assegureu-vos que el vostre nom d'usuari és correcte.",
"Preparing update" : "Preparant l'actualització",
"[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "Advertiment de reparació:",
- "Repair error: " : "Error de reparació:",
+ "Repair warning: " : "Advertiment de reparació: ",
+ "Repair error: " : "Error de reparació: ",
+ "Please use the command line updater because automatic updating is disabled in the config.php." : "Utilitzeu l’actualitzador de línia de comandes perquè l'actualització automàtica està deshabilitada en el config.php.",
"[%d / %d]: Checking table %s" : "[%d / %d]: Revisant la taula %s",
"Turned on maintenance mode" : "Activat el mode de manteniment",
"Turned off maintenance mode" : "Desactivat el mode de manteniment",
"Maintenance mode is kept active" : "El mode de manteniment es manté activat",
"Updating database schema" : "Actualitzant l'esquema de la base de dades",
"Updated database" : "Actualitzada la base de dades",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Comprovar si l'esquema de base de dades es pot actualitzar (això pot trigar temps segons la mida de la base de dades)",
"Checked database schema update" : "S'ha comprobat l'actualització de l'esquema de la base de dades",
"Checking updates of apps" : "Comprovant les actualitzacions d'aplicacions",
"Checking for update of app \"%s\" in appstore" : "Comprovant les actualitzacions de l'aplicació \"%s\" al repositori",
"Update app \"%s\" from appstore" : "Actualitza l'aplicació \"%s\" del repositori",
"Checked for update of app \"%s\" in appstore" : "Comprovades les actualitzacions de l'aplicació \"%s\" al repositori",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Comprovar si l'esquema de base de dades per %s pot ser actualitzat (això pot trigar temps segons la mida de la base de dades)",
"Checked database schema update for apps" : "S'ha comprobat l'actualització de l'esquema de la base de dades per les apps",
"Updated \"%s\" to %s" : "Actualitzat \"%s\" a %s",
"Set log level to debug" : "Modifica el nivell de registre a depuració",
@@ -48,11 +52,11 @@
"%s (incompatible)" : "%s (incompatible)",
"Following apps have been disabled: %s" : "Les aplicacions següents s'han deshabilitat: %s",
"Already up to date" : "Ja actualitzat",
- "Search contacts …" : "Cerca contactes ...",
+ "Search contacts …" : "Cerca contactes …",
"No contacts found" : "No s'han trobat contactes",
- "Show all contacts …" : "Mostra tots els contactes...",
+ "Show all contacts …" : "Mostra tots els contactes …",
"There was an error loading your contacts" : "Hi ha hagut un error al carregar els teus contactes",
- "Loading your contacts …" : "Carregant els teus contactes...",
+ "Loading your contacts …" : "Carregant els teus contactes …",
"Looking for {term} …" : "Buscant {term} …",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Hi ha hagut problemes amb la comprovació d'integritat del codi. Més informació…</a>",
"No action available" : "Cap acció disponible",
@@ -69,7 +73,7 @@
"Confirm" : "Confirma",
"Failed to authenticate, try again" : "Error d'autenticació, torna-ho a intentar",
"seconds ago" : "segons enrere",
- "Logging in …" : "Accedint a...",
+ "Logging in …" : "Accedint 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." : "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu. Si no el rebeu en un temps raonable comproveu les carpetes de spam. <br>Si no és allà, pregunteu a l'administrador local.",
"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?" : "Els vostres fitxers estan encriptats. No hi haurà manera de recuperar les dades després que reestabliu la contrasenya. <br />Si no esteu segurs del que feu, contacteu amb l'administrador abans de continuar.<br />Voleu continuar?",
"I know what I'm doing" : "Sé el que faig",
@@ -81,7 +85,7 @@
"Error loading file picker template: {error}" : "Error en carregar la plantilla de càrrega de fitxers: {error}",
"OK" : "D'acord",
"Error loading message template: {error}" : "Error en carregar la plantilla de missatge: {error}",
- "read-only" : "Només de lectura",
+ "read-only" : "només de lectura",
"_{count} file conflict_::_{count} file conflicts_" : ["{count} conflicte de fitxer","{count} conflictes de fitxer"],
"One file conflict" : "Un fitxer en conflicte",
"New Files" : "Fitxers nous",
@@ -99,8 +103,21 @@
"Good password" : "Contrasenya bona",
"Strong password" : "Contrasenya forta",
"Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.",
+ "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "El teu servidor web no està configurat correctament per resoldre \"{url}\". Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>.",
+ "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. We suggest to enable Internet connection for this server if you want to have all features." : "Aquest servidor no té cap connexió a Internet operativa: múltiples punts finals no es van poder contactar. Això significa que algunes de les funcions com muntatge d'emmagatzematge extern, notificacions sobre les actualitzacions o instal·lació d'apps de terceres parts no funcionarà. L’accés remot a arxius i l’enviament d'e-mail de notificació podrien no funcionar tampoc. Suggerim habilitar la connexió a Internet per a aquest servidor si voleu tenir tota la funcionalitat.",
+ "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "No s’ha configurat cap memòria cau. Per millorar el seu rendiment configureu un memcache si està disponible. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>.",
+ "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom no és llegible per PHP que no és gens recomenable per motius de seguretat. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>.",
+ "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Actualment esteu executant PHP {version}. Us animem a actualitzar la versió de PHP que feu servir per tenir avantatge d’<a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">actualitzacions de rendiment i seguretat proporcionats pel PHP Group</a> tan aviat com ho suporti la vostra distribució.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configuració de les capçaleres del proxi invers és incorrecta o estàs accedint a Nextcloud des d'un proxy de confiança. Si no estàs accedint a Nextcloud des d'un proxy de confiança, això és un risc de seguretat i pot permetre a un atacant suplantar la teva adreça d'IP com visible a Nextcloud. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</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\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached es configura com a una memoria cau distribuïda, però s’ha instal·lat el mòdul erroni de PHP \"memcache\". \\OC\\Memcache\\Memcached només dóna suport a “memcached\" i no \"memcache\". Mireu el <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki de memcached sobre ambdós mòduls</a>.",
+ "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns fitxers no han passat la comprovació d'integritat. Trobareu més informació sobre com resoldre aquest assumpte a la nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentació</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Llista de fitxers no vàlids...</a> / <a href=\"{rescanEndpoint}\">Reescannejar...</a>)",
+ "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "La OPcache de PHP no està configurada correctament. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Per millor rendiment recomanem</a> utilitzar-la seguint la configuració en el <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. We strongly recommend enabling this function." : "La funció PHP \"set_time_limit\" no està disponible. Això podria resultar en scripts que s’aturin a mig execució, trencant la instal·lació. Us recomanem activar aquesta funció.",
"Error occurred while checking server setup" : "Hi ha hagut un error en comprovar la configuració del servidor",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Esteu accedint aquesta web a través de HTTP. Us recomanem que configureu el servidor per requerir HTTPS tal i com es descriu als <a href=\"{docUrl}\">consells de seguretat</a>",
+ "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "El teu directori de dades i fitxers són probablement accessibles des d'Internet. L'arxiu .htaccess no està funcionant. Es recomana que configureu el servidor web de manera que el directori de dades no estigui accessible o moure el directori de dades fora de l'arrel de document de servidor de web.",
+ "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "L'encapçalament “{header}” HTTP no està configurat per ser igual a “{expected}”. Aquest és un potencial risc de seguretat o privacitat, i es recomana ajustar aquesta configuració.",
+ "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "La capçalera HTTP “Strict-Transport-Security” no està configurada a un mínim de “{seconds}” segons. Per millor seguretat recomanem permetre HSTS com es descriu en els nostres <a href=\"{docUrl}\" rel=\"noreferrer\">consells de seguretat</a>.",
+ "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Esteu accedint aquesta web a través de HTTP. Us recomanem que configureu el servidor per requerir HTTPS tal i com es descriu als <a href=\"{docUrl}\">consells de seguretat</a>.",
"Shared" : "Compartit",
"Shared with {recipients}" : "Compartit amb {recipients}",
"Error setting expiration date" : "Error en establir la data de venciment",
@@ -133,7 +150,7 @@
"group" : "grup",
"remote" : "remot",
"email" : "email",
- "shared by {sharer}" : "Compartit per {sharer}",
+ "shared by {sharer}" : "compartit per {sharer}",
"Unshare" : "Deixa de compartir",
"Can reshare" : "Pot recompartir",
"Can edit" : "Pot editar",
@@ -145,16 +162,21 @@
"Error while sharing" : "Error en compartir",
"Share details could not be loaded for this item." : "No s'han pogut carregar els detalls de compartició de l'element.",
"_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Com a mínim cal {count} caràcter per a l'autocompletat","Com a mínim calen {count} caràcters per a l'autocompletat"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Aquesta llista potser està truncada - refineu el vostre terme de cerca per veure més resultats.",
"No users or groups found for {search}" : "No s'han trobat usuaris ni grups per {search}",
"No users found for {search}" : "No s'han trobat usuaris per {search}",
- "An error occurred. Please try again" : "S'ha produït un error. Si us plau, torni a intentar-ho.",
+ "An error occurred. Please try again" : "S'ha produït un error. Si us plau, torni a intentar-ho",
"{sharee} (group)" : "{sharee} (grup)",
"{sharee} (remote)" : "{sharee} (remot)",
"{sharee} (email)" : "{sharee} (email)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Comparteix",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartir amb altres persones introduint un usuari o grup, un ID de núvol federat o una adreça d’email.",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Compartir amb altres persones introduint un usuari o grup o ID de núvol federat.",
+ "Share with other people by entering a user or group or an email address." : "Compartir amb altres persones introduint un usuari o grup o una adreça d’email.",
"Name or email address..." : "Nom o adreça electrònica...",
- "Name or federated cloud ID..." : "Nom o ID de Núvol Federat:",
+ "Name or federated cloud ID..." : "Nom o ID de Núvol Federat…",
+ "Name, federated cloud ID or email address..." : "Nom, ID de núvol federat o adreça d’email…",
"Name..." : "Nom...",
"Error" : "Error",
"Error removing share" : "Error al treure compartició",
@@ -171,13 +193,19 @@
"sunny" : "asolellat",
"Hello {name}, the weather is {weather}" : "Hola {name}, el temps és {weather}",
"Hello {name}" : "Hola {name}",
- "new" : "Nou",
- "_download %n file_::_download %n files_" : ["descarregar l'arxiu %n","descarregar arxius %n "],
+ "<strong>These are your search results<script>alert(1)</script></strong>" : "<strong>Aquests són els resultats de la cerca<script>alert(1)</script></strong>",
+ "new" : "nou",
+ "_download %n file_::_download %n files_" : ["descarregar l'arxiu %n","descarregar arxius %n"],
+ "The update is in progress, leaving this page might interrupt the process in some environments." : "L'actualització està en marxa, abandonar aquesta pàgina podria interrompre el procés en alguns entorns.",
"Update to {version}" : "Actualitza a {version}",
- "An error occurred." : "S'ha produït un error",
+ "An error occurred." : "S'ha produït un error.",
"Please reload the page." : "Carregueu la pàgina de nou.",
+ "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "L'actualització no va tenir èxit. Per a més informació <a href=\"{url}\">consulta la nostra nota al fòrum</a> que cobreix aquest assumpte.",
+ "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "L'actualització no va tenir èxit. Si us plau reporti aquest assumpte a la <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">comunitat Nextcloud</a>.",
"Continue to Nextcloud" : "Continua a Nextcloud",
+ "_The update was successful. Redirecting you to Nextcloud in %n second._::_The update was successful. Redirecting you to Nextcloud in %n seconds._" : ["L'actualització va ser reeixida. Redirigint a Nextcloud en %n segon.","L’actualització va ser reeixida. Redirigint a Nextcloud en %n segons."],
"Searching other places" : "Buscant altres ubicacions",
+ "No search results in other folders for {tag}{filter}{endtag}" : "No hi ha resultats de la cerca en altres carpetes per {tag}{filter}{endtag}",
"_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} resultat de cerca en altres carpetes","{count} resultats de cerca en altres carpetes"],
"Personal" : "Personal",
"Users" : "Usuaris",
@@ -194,7 +222,7 @@
"More details can be found in the server log." : "Pots trobar més detalls al llistat del servidor.",
"Technical details" : "Detalls tècnics",
"Remote Address: %s" : "Adreça remota: %s",
- "Request ID: %s" : "Sol·licitud ID: %s ",
+ "Request ID: %s" : "Sol·licitud ID: %s",
"Type: %s" : "Tipus: %s",
"Code: %s" : "Codi: %s",
"Message: %s" : "Missatge: %s",
@@ -203,12 +231,13 @@
"Trace" : "Traça",
"Security warning" : "Advertiment de seguretat",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona.",
+ "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Per a informació sobre com configurar correctament el servidor, podeu consultar la <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentació</a>.",
"Create an <strong>admin account</strong>" : "Crea un <strong>compte d'administrador</strong>",
"Username" : "Nom d'usuari",
"Storage & database" : "Emmagatzematge i base de dades",
"Data folder" : "Carpeta de dades",
"Configure the database" : "Configura la base de dades",
- "Only %s is available." : "Només hi ha disponible %s",
+ "Only %s is available." : "Només hi ha disponible %s.",
"Install and activate additional PHP modules to choose other database types." : "Instal·la i activa mòduls PHP addicionals per seleccionar altres tipus de bases de dades.",
"For more details check out the documentation." : "Per més detalls consulteu la documentació.",
"Database user" : "Usuari de la base de dades",
@@ -216,17 +245,19 @@
"Database name" : "Nom de la base de dades",
"Database tablespace" : "Espai de taula de la base de dades",
"Database host" : "Ordinador central de la base de dades",
+ "Please specify the port number along with the host name (e.g., localhost:5432)." : "Si us plau, especifiqueu el nombre de port juntament amb el nom de servidor (per exemple, localhost:5432).",
"Performance warning" : "Alerta de rendiment",
"SQLite will be used as database." : "SQLite s'utilitzarà com a base de dades.",
"For larger installations we recommend to choose a different database backend." : "Per a instal·lacions més grans es recomana triar una base de dades diferent.",
"Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'ús de SQLite està desaconsellat especialment quan s'usa el client d'escriptori per sincronitzar els fitxers.",
"Finish setup" : "Acaba la configuració",
- "Finishing …" : "Acabant...",
+ "Finishing …" : "Acabant …",
"Need help?" : "Necessites ajuda?",
"See the documentation" : "Consulti la documentació",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Aquesta aplicació requereix Javascript per al seu correcte funcionament . Per favor, {linkstart}habiliti Javascript{linkend} i torni a carregar la pàgina.",
"More apps" : "Més aplicacions",
"Search" : "Cerca",
+ "This action requires you to confirm your password:" : "Aquesta acció necessita que confirmis la teva contrasenya:",
"Confirm your password" : "Confirma la teva contrasenya",
"Server side authentication failed!" : "L'autenticació del servidor ha fallat!",
"Please contact your administrator." : "Contacteu amb l'administrador.",
@@ -241,28 +272,32 @@
"You are about to grant \"%s\" access to your %s account." : "Estàs a punt de concedir accés \"%s\" al teu %s compte.",
"App token" : "Testimoni d'aplicació",
"Alternative login using app token" : "Acreditació alternativa utilitzat testimoni d'aplicació",
- "Redirecting …" : "Redirigint...",
+ "Redirecting …" : "Redirigint …",
"New password" : "Contrasenya nova",
"New Password" : "Contrasenya nova",
"Reset password" : "Reinicialitza la contrasenya",
"Two-factor authentication" : "Segon factor d'autenticació",
+ "Enhanced security is enabled for your account. Please authenticate using a second factor." : "La seguretat millorada està habilitada per al vostre compte. Si us plau autentica’t amb un segon factor.",
"Cancel log in" : "Cancel·la l'accés a",
"Use backup code" : "Utilitza un codi de copia de seguretat",
"Error while validating your second factor" : "Error al validar el segon factor d'autenticació",
- "You are accessing the server from an untrusted domain." : "Esteu accedint al servidor des d'un domini no fiable",
+ "You are accessing the server from an untrusted domain." : "Esteu accedint al servidor des d'un domini no fiable.",
+ "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Contacteu amb l'administrador. Si ets un administrador d'aquesta instància, configurar la opció \"trusted_domains\" en config/config.php. Config/config.sample.php ofereix una configuració d'exemple.",
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "En funció de la teva configuració, com a administrador podries utilitzar el botó d'abaix per confiar en aquest domini.",
"Add \"%s\" as trusted domain" : "Afegeix \"%s\" com a domini de confiança",
"App update required" : "Cal que actualitzeu la aplicació",
"%s will be updated to version %s" : "%s s'actualitzarà a la versió %s",
"These apps will be updated:" : "Aquestes aplicacions s'actualitzaran:",
"These incompatible apps will be disabled:" : "Aquestes aplicacions incompatibles es desactivaran:",
- "The theme %s has been disabled." : "S'ha desactivat el tema %s",
+ "The theme %s has been disabled." : "S'ha desactivat el tema %s.",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Assegureu-vos que heu fet una còpia de seguretat de la base de dades, del fitxer de configuració i de la carpeta de dades abans de continuar.",
"Start update" : "Inicia l'actualització",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Per evitar que s'esgoti el temps d'espera en instalacions grans, pots en el seu lloc fer córrer la següent comanda en el directori d'instalació. ",
+ "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Per evitar que s'esgoti el temps d'espera en instalacions grans, pots en el seu lloc fer córrer la següent comanda en el directori d'instalació:",
"Detailed logs" : "Registres detallats",
"Update needed" : "Actualització necessaria",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Utilitzeu l'updater de línia de comandes perquè tens un gran instància amb més de 50 usuàries.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Per obtenir ajuda, mira la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentació</a>.",
+ "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Sé que si continuo fent l'actualització mitjançant l’interfície d’usuari web té el risc que la sol·licitud esgoti un temps d'espera, que podria causa pèrdua de dades, però tinc una còpia de seguretat i se com restaurar la meva instància en cas de fallada.",
"Upgrade via web on my own risk" : "Actualitza via web sota la teva responsabilitat",
"This %s instance is currently in maintenance mode, which may take a while." : "Aquesta instància %s està actualment en manteniment i podria trigar una estona.",
"This page will refresh itself when the %s instance is available again." : "Aquesta pàgina s'actualitzarà automàticament quan la instància %s estigui disponible de nou.",
@@ -277,8 +312,9 @@
"can edit" : "pot editar",
"can create" : "pot crear",
"can change" : "pot canviar",
- "can delete" : "Pot esborrar",
+ "can delete" : "pot esborrar",
"access control" : "control d'accés",
+ "Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Compartir amb gent a altres servidors utilitzant els seus ID de núvol federats usuari@exemple.com/nextcloud",
"Share with users or by mail..." : "Comparteix amb usuaris o per correu...",
"Share with users or remote users..." : "Comparteix amb usuaris o usuaris remots ...",
"Share with users, remote users or by mail..." : "Comparteix amb usuaris, usuaris remots o per correu...",
diff --git a/core/l10n/es_MX.js b/core/l10n/es_MX.js
index 4251e633b80..a191d2cba5d 100644
--- a/core/l10n/es_MX.js
+++ b/core/l10n/es_MX.js
@@ -148,7 +148,7 @@ OC.L10N.register(
"Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartido contigo por {owner}",
"Choose a password for the mail share" : "Elige una contraseña para el elemento compartido por correo",
- "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha compatido mediante una liga",
+ "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha compartido mediante una liga",
"group" : "grupo",
"remote" : "remoto",
"email" : "correo electrónico",
diff --git a/core/l10n/es_MX.json b/core/l10n/es_MX.json
index 89fe3637bac..66bb66957a5 100644
--- a/core/l10n/es_MX.json
+++ b/core/l10n/es_MX.json
@@ -146,7 +146,7 @@
"Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartido contigo por {owner}",
"Choose a password for the mail share" : "Elige una contraseña para el elemento compartido por correo",
- "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha compatido mediante una liga",
+ "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha compartido mediante una liga",
"group" : "grupo",
"remote" : "remoto",
"email" : "correo electrónico",
diff --git a/core/l10n/lv.js b/core/l10n/lv.js
index 7e23a0887e5..f1c3af371ce 100644
--- a/core/l10n/lv.js
+++ b/core/l10n/lv.js
@@ -54,6 +54,7 @@ OC.L10N.register(
"%s (incompatible)" : "%s (nesaderīgs)",
"Following apps have been disabled: %s" : "Sekojošas programmas tika atslēgtas: %s",
"Already up to date" : "Jau ir jaunākā",
+ "Search contacts …" : "Meklēt kontaktpersonu",
"No contacts found" : "Nav atrasta ne viena kontaktpersona",
"Show all contacts …" : "Rādīt visas kontaktpersonas",
"There was an error loading your contacts" : "Notikusi kļūda ielādējot kontaktpersonu sarakstu",
@@ -96,11 +97,14 @@ OC.L10N.register(
"Continue" : "Turpināt",
"(all selected)" : "(visus iezīmētos)",
"({count} selected)" : "({count} iezīmēti)",
+ "Pending" : "Gaida",
"Very weak password" : "Ļoti vāja parole",
"Weak password" : "Vāja parole",
"So-so password" : "Normāla parole",
"Good password" : "Laba parole",
"Strong password" : "Lieliska parole",
+ "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Jūsu serveris nav pareizi uzstādīts lai atļautu failu sinhronizēšanu jo WebDAV interfeiss šķiet salūzis.",
+ "Error occurred while checking server setup" : "Radās kļūda, pārbaudot servera ",
"Shared" : "Koplietots",
"Shared with {recipients}" : "Koplietots ar {recipients}",
"Error setting expiration date" : "Kļūda, iestatot termiņa datumu",
@@ -108,12 +112,14 @@ OC.L10N.register(
"Expiration" : "Termiņš",
"Expiration date" : "Termiņa datums",
"Choose a password for the public link" : "Izvēlies paroli publiskai saitei",
+ "Choose a password for the public link or press the \"Enter\" key" : "Izvēlies paroli publiskai saitei vai nospiediet \"Enter\" taustiņu",
"Copied!" : "Nokopēts!",
"Copy" : "Kopēt",
"Not supported!" : "Nav atbalstīts!",
"Press ⌘-C to copy." : "Spiet ⌘-C lai kopētu.",
"Press Ctrl-C to copy." : "Spiet Ctrl-C lai kopētu.",
"Resharing is not allowed" : "Atkārtota dalīšanās nav atļauta",
+ "Share to {name}" : "Dalīties ar {name}",
"Share link" : "Koplietot saiti",
"Link" : "Saite",
"Password protect" : "Aizsargāt ar paroli",
@@ -121,13 +127,20 @@ OC.L10N.register(
"Email link to person" : "Sūtīt saiti personai pa e-pastu",
"Send" : "Sūtīt",
"Allow upload and editing" : "Atļaut augšupielādi un rediģēšanu",
+ "Read only" : "Tikai lasāms",
"Shared with you and the group {group} by {owner}" : "{owner} koplietoja ar jums un grupu {group}",
"Shared with you by {owner}" : "{owner} koplietoja ar jums",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} koplietots ar saiti",
"group" : "grupa",
"remote" : "attālināti",
"email" : "e-pasts",
+ "shared by {sharer}" : "Koplietoja {sharer}",
"Unshare" : "Pārtraukt koplietošanu",
+ "Can edit" : "Var rediģēt",
+ "Can create" : "Var izveidot",
+ "Can change" : "Var mainīt",
+ "Can delete" : "Var dzēst",
+ "Access control" : "Piekļuves vadība",
"Could not unshare" : "Nevarēja pārtraukt koplietošanu",
"Error while sharing" : "Kļūda, daloties",
"Share details could not be loaded for this item." : "Šim nevarēja ielādēt koplietošanas detaļas.",
@@ -137,7 +150,15 @@ OC.L10N.register(
"{sharee} (group)" : "{sharee} (grupa)",
"{sharee} (remote)" : "{sharee} (attālināti)",
"{sharee} (email)" : "{sharee} (e-pasts)",
+ "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Koplietot",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Dalīties ar citiem cilvēkiem ievadot lietotāju, grupu, federated cloud ID vai e-pasta adresi.",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Dalīties ar citiem cilvēkiem ievadot lietotāju, grupu vai federated cloud ID.",
+ "Share with other people by entering a user or group or an email address." : "Dalīties ar citiem cilvēkiem ievadot lietotāju, grupu vai e-pasta adresi.",
+ "Name or email address..." : "Vārds vai e-pasta adrese...",
+ "Name or federated cloud ID..." : "Vārds vai federated cloud ID",
+ "Name, federated cloud ID or email address..." : "Vārds, federated cloud ID vai e-pasta adrese...",
+ "Name..." : "Vārds...",
"Error" : "Kļūda",
"Error removing share" : "Kļūda, noņemot koplietošanu",
"restricted" : "ierobežots",
@@ -154,11 +175,16 @@ OC.L10N.register(
"Hello {name}" : "Sveiks {name}",
"new" : "jauns",
"_download %n file_::_download %n files_" : ["lejupielādēt %n failus","lejupielādēt %n failus","lejupielādēt %n failus"],
+ "The update is in progress, leaving this page might interrupt the process in some environments." : "Notiek atjaunināšana, šīs lapas atstāšana var pārtraukt procesu dažās vidēs.",
"Update to {version}" : "Atjaunināts uz {version}",
"An error occurred." : "Radās kļūda.",
"Please reload the page." : "Lūdzu, atkārtoti ielādējiet lapu.",
+ "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Atjauninājums nebija veiksmīgs. Plašāku informāciju skatiet <a href=\"{url}\">mūsu foruma rakstā</a> par šo problēmu.",
+ "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Atjauninājums nebija veiksmīgs. Lūdzu ziņojiet šo ķļūdu <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud kopienā</a>.",
"Continue to Nextcloud" : "Turpināt ar Nextcloud",
+ "_The update was successful. Redirecting you to Nextcloud in %n second._::_The update was successful. Redirecting you to Nextcloud in %n seconds._" : ["Atjaunināšana ir bijusi veiksmīga. Novirzīsim jūs uz Nextcloud pēc %n sekundēm.","Atjaunināšana ir bijusi veiksmīga. Novirzīsim jūs uz Nextcloud pēc %n sekundes.","Atjaunināšana ir bijusi veiksmīga. Novirzīsim jūs uz Nextcloud pēc %n sekundēm."],
"Searching other places" : "Meklēt citās vietās",
+ "No search results in other folders for {tag}{filter}{endtag}" : "Nav nekas atrasts citā mapēs {tag}{filter}{endtag}",
"_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} meklēšanas rezultāti citās mapēs","{count} meklēšanas rezultāti citās mapēs","{count} meklēšanas rezultāti citās mapēs"],
"Personal" : "Personīgi",
"Users" : "Lietotāji",
@@ -171,6 +197,7 @@ OC.L10N.register(
"You can click here to return to %s." : "Jūs varat noklikšķināt šeit, lai atgrieztos uz %s.",
"Internal Server Error" : "Iekšēja servera kļūda",
"The server encountered an internal error and was unable to complete your request." : "Serverī radās iekšēja kļūda, un tas nevarēja pabeigt jūsu pieprasījumu.",
+ "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "Lūdzu sazinieties ar servera administrātoru ja šī kļūda parādās vairākas reizes, lūdzu iekļaujiet zemāk redzamās tehniskās detaļas jūsu ziņojumā.",
"More details can be found in the server log." : "Sīkāka informācija atrodama servera žurnāl failā.",
"Technical details" : "Tehniskās detaļas",
"Remote Address: %s" : "Attālinātā adrese: %s",
@@ -183,12 +210,15 @@ OC.L10N.register(
"Trace" : "Izsekot",
"Security warning" : "Drošības brīdinājums",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Visticamāk, jūsu datu direktorija un datnes ir pieejamas no interneta, jo .htaccess datne nedarbojas.",
+ "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Priekš informācijas kā pareizi konfigurēt jūsu serveri skatiet <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentācijā</a>.",
"Create an <strong>admin account</strong>" : "Izveidot <strong>administratora kontu</strong>",
"Username" : "Lietotājvārds",
"Storage & database" : "Krātuve & datubāze",
"Data folder" : "Datu mape",
"Configure the database" : "Konfigurēt datubāzi",
"Only %s is available." : "Tikai %s ir pieejams.",
+ "Install and activate additional PHP modules to choose other database types." : "Instalējiet un aktivizējiet papildus PHP moduļus lai izvēlētos citus datubāžu tipus.",
+ "For more details check out the documentation." : "Sīkākai informācijai skatiet dokumentāciju.",
"Database user" : "Datubāzes lietotājs",
"Database password" : "Datubāzes parole",
"Database name" : "Datubāzes nosaukums",
@@ -197,10 +227,14 @@ OC.L10N.register(
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Lūdzu, norādiet porta numuru kopā ar resursdatora nosaukumu (piemēram, localhost: 5432).",
"Performance warning" : "Veiktspējas brīdinājums",
"SQLite will be used as database." : "SQLite tiks izmantota kā datu bāze.",
+ "For larger installations we recommend to choose a different database backend." : "Priekš lielākām instalācijām mēs iesakām izvēlēties citu datubāzes serveri.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "It sevišķi, ja, izmantojot darbvirsmas klientu, lai veiktu failu sinhronizāciju SQLite izmantošana nav ieteicama.",
"Finish setup" : "Pabeigt iestatīšanu",
"Finishing …" : "Pabeidz ...",
"Need help?" : "Vajadzīga palīdzība?",
"See the documentation" : "Skatiet dokumentāciju",
+ "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Šai programmai nepieciešams JavaScript. Lūdzu {linkstart}ieslēdziet JavasScript{linkend} un pārlādējiet lapu.",
+ "More apps" : "Vairāk programmu",
"Search" : "Meklēt",
"This action requires you to confirm your password:" : "Šī darbība ir nepieciešama, lai apstiprinātu jūsu paroli:",
"Confirm your password" : "Apstipriniet paroli",
@@ -214,29 +248,44 @@ OC.L10N.register(
"Log in" : "Ierakstīties",
"Stay logged in" : "Palikt ierakstītam",
"Alternative Logins" : "Alternatīvās pieteikšanās",
+ "App token" : "Programmas pilnvara",
+ "Alternative login using app token" : "Alternatīvās pieteikšanās izmantojot programmas pilnvaru.",
+ "Redirecting …" : "Novirzam ...",
"New password" : "Jauna parole",
"New Password" : "Jauna parole",
"Reset password" : "Mainīt paroli",
"Two-factor authentication" : "Divpakāpju autentifikācija",
+ "Enhanced security is enabled for your account. Please authenticate using a second factor." : "Uzlabota drošība ir iespējota jūsu kontam. Lūdzu autentificējies izmantojot otru faktoru.",
"Cancel log in" : "Atcelt pierakstīšanos",
"Use backup code" : "Izmantojiet dublēšanas kodu",
+ "Error while validating your second factor" : "Kļūda validējot jūsu otru faktoru.",
"You are accessing the server from an untrusted domain." : "Jums ir piekļuve serverim no neuzticama domēna.",
+ "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Lūdzu sazinieties ar jūsu administrātoru. Ja jūs esat šīs instances administrātors, konfigurējiet \"trusted_domains\" iestatījumu config/config.php failā. Piemēra konfigurācija ir pieejama config/config.sample.php failā.",
+ "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Atkarīgi no jūsu konfigurācijas, kā administrātors jūs varētu izmantot zemāk redzamo pogu lai uzticētos šim domēnam.",
"Add \"%s\" as trusted domain" : "Pievienot \"%s\" kā uzticamu domēnu",
"App update required" : "Programmai nepieciešama atjaunināšana",
"%s will be updated to version %s" : "%s tiks atjaunināts uz versiju %s",
"These apps will be updated:" : "Šīs programmas tiks atjauninātas:",
+ "These incompatible apps will be disabled:" : "Šīs nesaderīgās programmas tiks atspējotas:",
"The theme %s has been disabled." : "Tēma %s ir atspējota.",
+ "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Lūdzu pārliecinieties ka datubāze, config mape un data mape ir dublētas pirms turpināšanas.",
"Start update" : "Sākt atjaunināšanu",
+ "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Lai izvairītos no noliedzes ar lielākām instalācijām, jūs varat palaist sekojošo komandu no jūsu instalācijas mapes:",
"Detailed logs" : "Detalizētas informācijas žurnālfaili",
"Update needed" : "Nepieciešama atjaunināšana",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Lūdzu, izmantojiet komandrindas atjauninātāju, jo jums ir vairāk nekā 50 lietotāji.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Lai saņemtu palīdzību, skatiet <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentāciju</a>.",
+ "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Es zinu ka ja es turpināšu atjauninājumu caur tīmekļa atjauninātāju ir risks ka pieprasījumam būs noliedze , kas var radīt datu zudumu, bet man ir dublējumkopija un es zinu kā atjaunot instanci neveiksmes gadijumā.",
+ "Upgrade via web on my own risk" : "Atjaunināt caur tīmekļa atjauninātāju uz mana paša risku.",
"This %s instance is currently in maintenance mode, which may take a while." : "Šis %s serveris pašlaik darbojas uzturēšanas režīmā, tas var ilgt kādu laiku.",
+ "This page will refresh itself when the %s instance is available again." : "Lapa tiks atsvaidzināta kad %s instance atkal ir pieejama.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Sazinieties ar sistēmas administratoru, ja šis ziņojums tiek rādīts.. vai parādījās negaidīti",
"Thank you for your patience." : "Paldies par jūsu pacietību.",
"Problem loading page, reloading in 5 seconds" : "Problēma ielādējot lapu, pārlādēšana pēc 5 sekundēm",
"Your files are encrypted. If you haven't enabled the recovery key, 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?" : "Jūsu faili ir šifrēti. Ja neesat iespējojis atkopšanas atslēgu, nevarēsiet atgūt datus atpakaļ, pēc jūsu paroles atiestatīšanas.<br />Ja neesat pārliecināts par to, ko darīt, lūdzu, pirms turpināt, sazinieties ar administratoru. <br />Vai tiešām vēlaties turpināt?",
"Ok" : "Labi",
"Error while unsharing" : "Kļūda, beidzot dalīties",
+ "can reshare" : "var atkārtoti kopīgot",
"can edit" : "var rediģēt",
"can create" : "var izveidot",
"can change" : "var mainīt",
@@ -249,11 +298,13 @@ OC.L10N.register(
"Share with users or groups..." : "Koplietot ar lietotājiem vai grupām...",
"Share with users, groups or by mail..." : "Koplietot ar lietotājiem, grupām vai izmantojot e-pastu...",
"Share with users, groups or remote users..." : "Koplietot ar lietotājiem, grupām vai attāliem lietotājiem...",
+ "Share with users, groups, remote users or by mail..." : "Koplietot ar lietotājiem, grupām, attāliem lietotājiem vai izmantojot e-pastu...",
"Share with users..." : "Koplietots ar lietotājiem...",
"The object type is not specified." : "Nav norādīts objekta tips.",
"Enter new" : "Ievadīt jaunu",
"Add" : "Pievienot",
"Edit tags" : "Rediģēt atzīmes",
+ "Error loading dialog template: {error}" : "Kļūda ielādējot dialoga veidni: {error}",
"The update was successful. Redirecting you to Nextcloud now." : "Atjaunināšana ir bijusi veiksmīga. Tagad novirzīsim jūs uz Nextcloud.",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "Sveiki,\n\ninformējam, ka %s koplietoja ar jums %s.\nApskati to: %s\n",
"The share will expire on %s." : "Koplietošana beigsies %s.",
diff --git a/core/l10n/lv.json b/core/l10n/lv.json
index 9a56aa3a1f6..a40a9fa831b 100644
--- a/core/l10n/lv.json
+++ b/core/l10n/lv.json
@@ -52,6 +52,7 @@
"%s (incompatible)" : "%s (nesaderīgs)",
"Following apps have been disabled: %s" : "Sekojošas programmas tika atslēgtas: %s",
"Already up to date" : "Jau ir jaunākā",
+ "Search contacts …" : "Meklēt kontaktpersonu",
"No contacts found" : "Nav atrasta ne viena kontaktpersona",
"Show all contacts …" : "Rādīt visas kontaktpersonas",
"There was an error loading your contacts" : "Notikusi kļūda ielādējot kontaktpersonu sarakstu",
@@ -94,11 +95,14 @@
"Continue" : "Turpināt",
"(all selected)" : "(visus iezīmētos)",
"({count} selected)" : "({count} iezīmēti)",
+ "Pending" : "Gaida",
"Very weak password" : "Ļoti vāja parole",
"Weak password" : "Vāja parole",
"So-so password" : "Normāla parole",
"Good password" : "Laba parole",
"Strong password" : "Lieliska parole",
+ "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Jūsu serveris nav pareizi uzstādīts lai atļautu failu sinhronizēšanu jo WebDAV interfeiss šķiet salūzis.",
+ "Error occurred while checking server setup" : "Radās kļūda, pārbaudot servera ",
"Shared" : "Koplietots",
"Shared with {recipients}" : "Koplietots ar {recipients}",
"Error setting expiration date" : "Kļūda, iestatot termiņa datumu",
@@ -106,12 +110,14 @@
"Expiration" : "Termiņš",
"Expiration date" : "Termiņa datums",
"Choose a password for the public link" : "Izvēlies paroli publiskai saitei",
+ "Choose a password for the public link or press the \"Enter\" key" : "Izvēlies paroli publiskai saitei vai nospiediet \"Enter\" taustiņu",
"Copied!" : "Nokopēts!",
"Copy" : "Kopēt",
"Not supported!" : "Nav atbalstīts!",
"Press ⌘-C to copy." : "Spiet ⌘-C lai kopētu.",
"Press Ctrl-C to copy." : "Spiet Ctrl-C lai kopētu.",
"Resharing is not allowed" : "Atkārtota dalīšanās nav atļauta",
+ "Share to {name}" : "Dalīties ar {name}",
"Share link" : "Koplietot saiti",
"Link" : "Saite",
"Password protect" : "Aizsargāt ar paroli",
@@ -119,13 +125,20 @@
"Email link to person" : "Sūtīt saiti personai pa e-pastu",
"Send" : "Sūtīt",
"Allow upload and editing" : "Atļaut augšupielādi un rediģēšanu",
+ "Read only" : "Tikai lasāms",
"Shared with you and the group {group} by {owner}" : "{owner} koplietoja ar jums un grupu {group}",
"Shared with you by {owner}" : "{owner} koplietoja ar jums",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} koplietots ar saiti",
"group" : "grupa",
"remote" : "attālināti",
"email" : "e-pasts",
+ "shared by {sharer}" : "Koplietoja {sharer}",
"Unshare" : "Pārtraukt koplietošanu",
+ "Can edit" : "Var rediģēt",
+ "Can create" : "Var izveidot",
+ "Can change" : "Var mainīt",
+ "Can delete" : "Var dzēst",
+ "Access control" : "Piekļuves vadība",
"Could not unshare" : "Nevarēja pārtraukt koplietošanu",
"Error while sharing" : "Kļūda, daloties",
"Share details could not be loaded for this item." : "Šim nevarēja ielādēt koplietošanas detaļas.",
@@ -135,7 +148,15 @@
"{sharee} (group)" : "{sharee} (grupa)",
"{sharee} (remote)" : "{sharee} (attālināti)",
"{sharee} (email)" : "{sharee} (e-pasts)",
+ "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Koplietot",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Dalīties ar citiem cilvēkiem ievadot lietotāju, grupu, federated cloud ID vai e-pasta adresi.",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Dalīties ar citiem cilvēkiem ievadot lietotāju, grupu vai federated cloud ID.",
+ "Share with other people by entering a user or group or an email address." : "Dalīties ar citiem cilvēkiem ievadot lietotāju, grupu vai e-pasta adresi.",
+ "Name or email address..." : "Vārds vai e-pasta adrese...",
+ "Name or federated cloud ID..." : "Vārds vai federated cloud ID",
+ "Name, federated cloud ID or email address..." : "Vārds, federated cloud ID vai e-pasta adrese...",
+ "Name..." : "Vārds...",
"Error" : "Kļūda",
"Error removing share" : "Kļūda, noņemot koplietošanu",
"restricted" : "ierobežots",
@@ -152,11 +173,16 @@
"Hello {name}" : "Sveiks {name}",
"new" : "jauns",
"_download %n file_::_download %n files_" : ["lejupielādēt %n failus","lejupielādēt %n failus","lejupielādēt %n failus"],
+ "The update is in progress, leaving this page might interrupt the process in some environments." : "Notiek atjaunināšana, šīs lapas atstāšana var pārtraukt procesu dažās vidēs.",
"Update to {version}" : "Atjaunināts uz {version}",
"An error occurred." : "Radās kļūda.",
"Please reload the page." : "Lūdzu, atkārtoti ielādējiet lapu.",
+ "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Atjauninājums nebija veiksmīgs. Plašāku informāciju skatiet <a href=\"{url}\">mūsu foruma rakstā</a> par šo problēmu.",
+ "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Atjauninājums nebija veiksmīgs. Lūdzu ziņojiet šo ķļūdu <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud kopienā</a>.",
"Continue to Nextcloud" : "Turpināt ar Nextcloud",
+ "_The update was successful. Redirecting you to Nextcloud in %n second._::_The update was successful. Redirecting you to Nextcloud in %n seconds._" : ["Atjaunināšana ir bijusi veiksmīga. Novirzīsim jūs uz Nextcloud pēc %n sekundēm.","Atjaunināšana ir bijusi veiksmīga. Novirzīsim jūs uz Nextcloud pēc %n sekundes.","Atjaunināšana ir bijusi veiksmīga. Novirzīsim jūs uz Nextcloud pēc %n sekundēm."],
"Searching other places" : "Meklēt citās vietās",
+ "No search results in other folders for {tag}{filter}{endtag}" : "Nav nekas atrasts citā mapēs {tag}{filter}{endtag}",
"_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} meklēšanas rezultāti citās mapēs","{count} meklēšanas rezultāti citās mapēs","{count} meklēšanas rezultāti citās mapēs"],
"Personal" : "Personīgi",
"Users" : "Lietotāji",
@@ -169,6 +195,7 @@
"You can click here to return to %s." : "Jūs varat noklikšķināt šeit, lai atgrieztos uz %s.",
"Internal Server Error" : "Iekšēja servera kļūda",
"The server encountered an internal error and was unable to complete your request." : "Serverī radās iekšēja kļūda, un tas nevarēja pabeigt jūsu pieprasījumu.",
+ "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "Lūdzu sazinieties ar servera administrātoru ja šī kļūda parādās vairākas reizes, lūdzu iekļaujiet zemāk redzamās tehniskās detaļas jūsu ziņojumā.",
"More details can be found in the server log." : "Sīkāka informācija atrodama servera žurnāl failā.",
"Technical details" : "Tehniskās detaļas",
"Remote Address: %s" : "Attālinātā adrese: %s",
@@ -181,12 +208,15 @@
"Trace" : "Izsekot",
"Security warning" : "Drošības brīdinājums",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Visticamāk, jūsu datu direktorija un datnes ir pieejamas no interneta, jo .htaccess datne nedarbojas.",
+ "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Priekš informācijas kā pareizi konfigurēt jūsu serveri skatiet <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentācijā</a>.",
"Create an <strong>admin account</strong>" : "Izveidot <strong>administratora kontu</strong>",
"Username" : "Lietotājvārds",
"Storage & database" : "Krātuve & datubāze",
"Data folder" : "Datu mape",
"Configure the database" : "Konfigurēt datubāzi",
"Only %s is available." : "Tikai %s ir pieejams.",
+ "Install and activate additional PHP modules to choose other database types." : "Instalējiet un aktivizējiet papildus PHP moduļus lai izvēlētos citus datubāžu tipus.",
+ "For more details check out the documentation." : "Sīkākai informācijai skatiet dokumentāciju.",
"Database user" : "Datubāzes lietotājs",
"Database password" : "Datubāzes parole",
"Database name" : "Datubāzes nosaukums",
@@ -195,10 +225,14 @@
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Lūdzu, norādiet porta numuru kopā ar resursdatora nosaukumu (piemēram, localhost: 5432).",
"Performance warning" : "Veiktspējas brīdinājums",
"SQLite will be used as database." : "SQLite tiks izmantota kā datu bāze.",
+ "For larger installations we recommend to choose a different database backend." : "Priekš lielākām instalācijām mēs iesakām izvēlēties citu datubāzes serveri.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "It sevišķi, ja, izmantojot darbvirsmas klientu, lai veiktu failu sinhronizāciju SQLite izmantošana nav ieteicama.",
"Finish setup" : "Pabeigt iestatīšanu",
"Finishing …" : "Pabeidz ...",
"Need help?" : "Vajadzīga palīdzība?",
"See the documentation" : "Skatiet dokumentāciju",
+ "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Šai programmai nepieciešams JavaScript. Lūdzu {linkstart}ieslēdziet JavasScript{linkend} un pārlādējiet lapu.",
+ "More apps" : "Vairāk programmu",
"Search" : "Meklēt",
"This action requires you to confirm your password:" : "Šī darbība ir nepieciešama, lai apstiprinātu jūsu paroli:",
"Confirm your password" : "Apstipriniet paroli",
@@ -212,29 +246,44 @@
"Log in" : "Ierakstīties",
"Stay logged in" : "Palikt ierakstītam",
"Alternative Logins" : "Alternatīvās pieteikšanās",
+ "App token" : "Programmas pilnvara",
+ "Alternative login using app token" : "Alternatīvās pieteikšanās izmantojot programmas pilnvaru.",
+ "Redirecting …" : "Novirzam ...",
"New password" : "Jauna parole",
"New Password" : "Jauna parole",
"Reset password" : "Mainīt paroli",
"Two-factor authentication" : "Divpakāpju autentifikācija",
+ "Enhanced security is enabled for your account. Please authenticate using a second factor." : "Uzlabota drošība ir iespējota jūsu kontam. Lūdzu autentificējies izmantojot otru faktoru.",
"Cancel log in" : "Atcelt pierakstīšanos",
"Use backup code" : "Izmantojiet dublēšanas kodu",
+ "Error while validating your second factor" : "Kļūda validējot jūsu otru faktoru.",
"You are accessing the server from an untrusted domain." : "Jums ir piekļuve serverim no neuzticama domēna.",
+ "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Lūdzu sazinieties ar jūsu administrātoru. Ja jūs esat šīs instances administrātors, konfigurējiet \"trusted_domains\" iestatījumu config/config.php failā. Piemēra konfigurācija ir pieejama config/config.sample.php failā.",
+ "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Atkarīgi no jūsu konfigurācijas, kā administrātors jūs varētu izmantot zemāk redzamo pogu lai uzticētos šim domēnam.",
"Add \"%s\" as trusted domain" : "Pievienot \"%s\" kā uzticamu domēnu",
"App update required" : "Programmai nepieciešama atjaunināšana",
"%s will be updated to version %s" : "%s tiks atjaunināts uz versiju %s",
"These apps will be updated:" : "Šīs programmas tiks atjauninātas:",
+ "These incompatible apps will be disabled:" : "Šīs nesaderīgās programmas tiks atspējotas:",
"The theme %s has been disabled." : "Tēma %s ir atspējota.",
+ "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Lūdzu pārliecinieties ka datubāze, config mape un data mape ir dublētas pirms turpināšanas.",
"Start update" : "Sākt atjaunināšanu",
+ "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Lai izvairītos no noliedzes ar lielākām instalācijām, jūs varat palaist sekojošo komandu no jūsu instalācijas mapes:",
"Detailed logs" : "Detalizētas informācijas žurnālfaili",
"Update needed" : "Nepieciešama atjaunināšana",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Lūdzu, izmantojiet komandrindas atjauninātāju, jo jums ir vairāk nekā 50 lietotāji.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Lai saņemtu palīdzību, skatiet <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentāciju</a>.",
+ "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Es zinu ka ja es turpināšu atjauninājumu caur tīmekļa atjauninātāju ir risks ka pieprasījumam būs noliedze , kas var radīt datu zudumu, bet man ir dublējumkopija un es zinu kā atjaunot instanci neveiksmes gadijumā.",
+ "Upgrade via web on my own risk" : "Atjaunināt caur tīmekļa atjauninātāju uz mana paša risku.",
"This %s instance is currently in maintenance mode, which may take a while." : "Šis %s serveris pašlaik darbojas uzturēšanas režīmā, tas var ilgt kādu laiku.",
+ "This page will refresh itself when the %s instance is available again." : "Lapa tiks atsvaidzināta kad %s instance atkal ir pieejama.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Sazinieties ar sistēmas administratoru, ja šis ziņojums tiek rādīts.. vai parādījās negaidīti",
"Thank you for your patience." : "Paldies par jūsu pacietību.",
"Problem loading page, reloading in 5 seconds" : "Problēma ielādējot lapu, pārlādēšana pēc 5 sekundēm",
"Your files are encrypted. If you haven't enabled the recovery key, 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?" : "Jūsu faili ir šifrēti. Ja neesat iespējojis atkopšanas atslēgu, nevarēsiet atgūt datus atpakaļ, pēc jūsu paroles atiestatīšanas.<br />Ja neesat pārliecināts par to, ko darīt, lūdzu, pirms turpināt, sazinieties ar administratoru. <br />Vai tiešām vēlaties turpināt?",
"Ok" : "Labi",
"Error while unsharing" : "Kļūda, beidzot dalīties",
+ "can reshare" : "var atkārtoti kopīgot",
"can edit" : "var rediģēt",
"can create" : "var izveidot",
"can change" : "var mainīt",
@@ -247,11 +296,13 @@
"Share with users or groups..." : "Koplietot ar lietotājiem vai grupām...",
"Share with users, groups or by mail..." : "Koplietot ar lietotājiem, grupām vai izmantojot e-pastu...",
"Share with users, groups or remote users..." : "Koplietot ar lietotājiem, grupām vai attāliem lietotājiem...",
+ "Share with users, groups, remote users or by mail..." : "Koplietot ar lietotājiem, grupām, attāliem lietotājiem vai izmantojot e-pastu...",
"Share with users..." : "Koplietots ar lietotājiem...",
"The object type is not specified." : "Nav norādīts objekta tips.",
"Enter new" : "Ievadīt jaunu",
"Add" : "Pievienot",
"Edit tags" : "Rediģēt atzīmes",
+ "Error loading dialog template: {error}" : "Kļūda ielādējot dialoga veidni: {error}",
"The update was successful. Redirecting you to Nextcloud now." : "Atjaunināšana ir bijusi veiksmīga. Tagad novirzīsim jūs uz Nextcloud.",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "Sveiki,\n\ninformējam, ka %s koplietoja ar jums %s.\nApskati to: %s\n",
"The share will expire on %s." : "Koplietošana beigsies %s.",
diff --git a/core/l10n/ro.js b/core/l10n/ro.js
index 0c348180d69..6a347d4ce37 100644
--- a/core/l10n/ro.js
+++ b/core/l10n/ro.js
@@ -17,6 +17,7 @@ OC.L10N.register(
"Couldn't reset password because the token is invalid" : "Parola nu a putut fi resetată deoarece token-ul este invalid",
"Couldn't reset password because the token is expired" : "Parola nu a putut fi resetată deoarece token-ul a expirat",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nu a putut fi trimis un email pentru resetare deoarece nu există o adresă email pentru acest utilizator. Contactează-ți administratorul.",
+ "Password reset" : "Resetare parolă",
"%s password reset" : "%s resetare parola",
"Couldn't send reset email. Please contact your administrator." : "Expedierea email-ului de resetare a eşuat. Vă rugăm să contactaţi administratorul dvs.",
"Couldn't send reset email. Please make sure your username is correct." : "Nu a putut fi trimis un email pentru resetare. Asigură-te că numele de utilizator este corect.",
@@ -45,6 +46,8 @@ OC.L10N.register(
"%s (incompatible)" : "%s (incompatibil)",
"Following apps have been disabled: %s" : "Următoarele aplicații au fost dezactivate: %s",
"Already up to date" : "Deja actualizat",
+ "Search contacts …" : "Cauta contacte ...",
+ "Show all contacts …" : "Arata toate contactele ...",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Au apărut probleme la verificarea integrității codului. Mai multe informații…</a>",
"Settings" : "Setări",
"Connection to server lost" : "S-a pierdut conexiunea la server",
@@ -127,7 +130,9 @@ OC.L10N.register(
"group" : "grup",
"remote" : "de la distanță",
"email" : "email",
+ "shared by {sharer}" : "partajat de {sharer}",
"Unshare" : "Anulare partajare",
+ "Access control" : "Control acces",
"Could not unshare" : "Nu s-a putut elimina partajarea",
"Error while sharing" : "Eroare la partajare",
"Share details could not be loaded for this item." : "Nu s-au putut încărca detaliile de partajare pentru acest element.",
@@ -140,6 +145,7 @@ OC.L10N.register(
"{sharee} (remote)" : "{sharee} (distanță)",
"{sharee} (email)" : "{sharee} (email)",
"Share" : "Partajează",
+ "Name..." : "Nume ...",
"Error" : "Eroare",
"Error removing share" : "Eroare la înlăturarea elementului partajat",
"Non-existing tag #{tag}" : "Etichetă inexistentă #{tag}",
@@ -214,6 +220,7 @@ OC.L10N.register(
"Need help?" : "Ai nevoie de ajutor?",
"See the documentation" : "Vezi documentația",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Această aplicație necesită JavaScript pentru a funcționa corect. {linkstart}Activează JavaScript{linkend} și reîncarcă pagina.",
+ "More apps" : "Mai multe aplicatii",
"Search" : "Căutare",
"This action requires you to confirm your password:" : "Această acțiune necesită confirmarea parolei tale:",
"Confirm your password" : "Confirmă parola:",
@@ -228,7 +235,7 @@ OC.L10N.register(
"Stay logged in" : "Rămâi autentificat",
"Alternative Logins" : "Conectări alternative",
"New password" : "Noua parolă",
- "New Password" : "Noua parolă",
+ "New Password" : "Noua Parolă",
"Reset password" : "Resetează parola",
"Two-factor authentication" : "Autentificare în doi-factori",
"Enhanced security is enabled for your account. Please authenticate using a second factor." : "Securitatea îmbunătățită este activată pentru contul tău. Autentifică-te utilizând un al doilea factor.",
diff --git a/core/l10n/ro.json b/core/l10n/ro.json
index ec0daa559d7..3e9b393e5e4 100644
--- a/core/l10n/ro.json
+++ b/core/l10n/ro.json
@@ -15,6 +15,7 @@
"Couldn't reset password because the token is invalid" : "Parola nu a putut fi resetată deoarece token-ul este invalid",
"Couldn't reset password because the token is expired" : "Parola nu a putut fi resetată deoarece token-ul a expirat",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nu a putut fi trimis un email pentru resetare deoarece nu există o adresă email pentru acest utilizator. Contactează-ți administratorul.",
+ "Password reset" : "Resetare parolă",
"%s password reset" : "%s resetare parola",
"Couldn't send reset email. Please contact your administrator." : "Expedierea email-ului de resetare a eşuat. Vă rugăm să contactaţi administratorul dvs.",
"Couldn't send reset email. Please make sure your username is correct." : "Nu a putut fi trimis un email pentru resetare. Asigură-te că numele de utilizator este corect.",
@@ -43,6 +44,8 @@
"%s (incompatible)" : "%s (incompatibil)",
"Following apps have been disabled: %s" : "Următoarele aplicații au fost dezactivate: %s",
"Already up to date" : "Deja actualizat",
+ "Search contacts …" : "Cauta contacte ...",
+ "Show all contacts …" : "Arata toate contactele ...",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Au apărut probleme la verificarea integrității codului. Mai multe informații…</a>",
"Settings" : "Setări",
"Connection to server lost" : "S-a pierdut conexiunea la server",
@@ -125,7 +128,9 @@
"group" : "grup",
"remote" : "de la distanță",
"email" : "email",
+ "shared by {sharer}" : "partajat de {sharer}",
"Unshare" : "Anulare partajare",
+ "Access control" : "Control acces",
"Could not unshare" : "Nu s-a putut elimina partajarea",
"Error while sharing" : "Eroare la partajare",
"Share details could not be loaded for this item." : "Nu s-au putut încărca detaliile de partajare pentru acest element.",
@@ -138,6 +143,7 @@
"{sharee} (remote)" : "{sharee} (distanță)",
"{sharee} (email)" : "{sharee} (email)",
"Share" : "Partajează",
+ "Name..." : "Nume ...",
"Error" : "Eroare",
"Error removing share" : "Eroare la înlăturarea elementului partajat",
"Non-existing tag #{tag}" : "Etichetă inexistentă #{tag}",
@@ -212,6 +218,7 @@
"Need help?" : "Ai nevoie de ajutor?",
"See the documentation" : "Vezi documentația",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Această aplicație necesită JavaScript pentru a funcționa corect. {linkstart}Activează JavaScript{linkend} și reîncarcă pagina.",
+ "More apps" : "Mai multe aplicatii",
"Search" : "Căutare",
"This action requires you to confirm your password:" : "Această acțiune necesită confirmarea parolei tale:",
"Confirm your password" : "Confirmă parola:",
@@ -226,7 +233,7 @@
"Stay logged in" : "Rămâi autentificat",
"Alternative Logins" : "Conectări alternative",
"New password" : "Noua parolă",
- "New Password" : "Noua parolă",
+ "New Password" : "Noua Parolă",
"Reset password" : "Resetează parola",
"Two-factor authentication" : "Autentificare în doi-factori",
"Enhanced security is enabled for your account. Please authenticate using a second factor." : "Securitatea îmbunătățită este activată pentru contul tău. Autentifică-te utilizând un al doilea factor.",
diff --git a/core/l10n/sq.js b/core/l10n/sq.js
index 02466598abc..5da0e92c386 100644
--- a/core/l10n/sq.js
+++ b/core/l10n/sq.js
@@ -2,7 +2,7 @@ OC.L10N.register(
"core",
{
"Please select a file." : "Ju lutem përzgjidhni një skedar.",
- "File is too big" : "Kartela është shumë e madhe",
+ "File is too big" : "Skedari është shumë i madh",
"The selected file is not an image." : "Skedari i zgjedhur nuk është një imazh",
"The selected file cannot be read." : "Skedari i zgjedhur nuk mund të lexohet",
"Invalid file provided" : "U dha kartelë e pavlefshme",
@@ -13,18 +13,20 @@ OC.L10N.register(
"No temporary profile picture available, try again" : "S’ka gati foto të përkohshme profili, riprovoni",
"No crop data provided" : "S’u dhanë të dhëna qethjeje",
"No valid crop data provided" : "S’u dhanë të dhëna qethjeje të vlefshme",
- "Crop is not square" : "Qethja s’është katrore",
+ "Crop is not square" : "Prerja s’është katrore",
+ "State token does not match" : "Shenja shtetërore nuk përputhet",
"Password reset is disabled" : "Opsioni për rigjenerimin e fjalëkalimit është çaktivizuar",
"Couldn't reset password because the token is invalid" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i është i pavlefshëm",
"Couldn't reset password because the token is expired" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i ka skaduar",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "S’u dërgua dot email ricaktimi, ngaqë s’ka adresë email për këtë përdoruesi. Ju lutemi, lidhuni me përgjegjësin tuaj.",
"Password reset" : "Fjalkalimi u rivendos",
+ "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Klikoni butonin më poshtë për të rivendosur fjalëkalimin tuaj. Nëse nuk keni kërkuar rivendosjen e fjalëkalimit, atëherë injorojeni këtë email.",
"Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Klikoni ne 'link-un' e rradhes per te rivendosur fjalekalimin tuaj.Nese nuk e keni vendosur akoma fjalekalimin atehere mos e merrni parasysh kete email.",
"Reset your password" : "Rivendosni nje fjalekalim te ri",
"%s password reset" : "U ricaktua fjalëkalimi për %s",
"Couldn't send reset email. Please contact your administrator." : "S’u dërgua dot email-i i ricaktimit. Ju lutemi, lidhuni me përgjegjësin tuaj.",
"Couldn't send reset email. Please make sure your username is correct." : "S’u dërgua dot email ricaktimi. Ju lutemi, sigurohuni që emri juaj i përdoruesit është i saktë.",
- "Preparing update" : "Po përgatitet përditësimi",
+ "Preparing update" : "Duke përgatitur përditësimin",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair warning: " : "Sinjalizim ndreqjeje: ",
"Repair error: " : "Gabim ndreqjeje: ",
@@ -60,8 +62,10 @@ OC.L10N.register(
"Looking for {term} …" : "Duke kërkuar {për] ...",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Pati probleme me kontrollin e integritetit të kodit. Më tepër të dhëna…</a>",
"No action available" : "Jo veprim i mundur",
+ "Error fetching contact actions" : "Gabim gjatë marrjes së veprimeve të kontaktit",
"Settings" : "Rregullime",
"Connection to server lost" : "Lidhja me serverin u shkëput",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problem gjatë ngarkimit të faqes, rifreskimi në %n sekonda","Problem gjatë ngarkimit të faqes, rifreskimi në %n sekonda"],
"Saving..." : "Po ruhet …",
"Dismiss" : "Mos e merr parasysh",
"This action requires you to confirm your password" : "Ky veprim kërkon që të konfirmoni fjalëkalimin tuaj.",
@@ -81,6 +85,7 @@ OC.L10N.register(
"No files in here" : "Jo skedar këtu",
"Choose" : "Zgjidhni",
"Error loading file picker template: {error}" : "Gabim në ngarkimin e gjedhes së marrësit të kartelave: {error}",
+ "OK" : "OK",
"Error loading message template: {error}" : "Gabim gjatë ngarkimit të gjedhes së mesazheve: {error}",
"read-only" : "vetëm për lexim",
"_{count} file conflict_::_{count} file conflicts_" : ["{count} përplasje kartelash","{count} përplasje kartelash"],
@@ -108,7 +113,10 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "E anasjellta e konfigurimit të kryeve proxy është e pasaktë, ose ju po aksesoni Nextcloud nga një proxy i besuar. Nëse nuk jeni duke aksesuar Nextcloud nga një proxy i besuar, kjo është një çështje sigurie dhe mund të lejoj një sulmues të manipuloj adresën e tyre IP si të dukshme nga Nextcloud. Informacione të mëtejshme mund të gjendet në <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</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\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached është formësuar si fshehtinë e shpërndarë, por është instaluar moduli i gabuar PHP \"memcache\". \\OC\\Memcache\\Memcached mbulon vetëm \"memcached\" dhe jo \"memcache\". Shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki-n mbi memcached rreth të dy moduleve</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Disa kartela s’e kaluan dot kontrollin e pacenueshmërisë. Më tepër të dhëna se si të zgjidhet ky problem mund të gjeni te <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentimi</a> ynë. (<a href=\"{codeIntegrityDownloadEndpoint}\">Listë e kartelave të pavlefshme…</a> / <a href=\"{rescanEndpoint}\">Rikontrollojini…</a>)",
+ "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "PHP OPcache nuk ësht konfiguruar siç duhet. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\"> Për performancë më të mirë ne rekomandojmë </a>të përdorni konfigurimet e mëposhtme në <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. We strongly recommend enabling this function." : "Funksioni i PHP \"set_time_limit\" nuk është i disponueshëm. Kjo mund të rezultoj që skriptet te ndalohen në mes të ekzekutimit dhe të ndërpresin instalimin tuaj. Ne ju rekomandojmë që ju ta bëni aktiv këtë funksion.",
"Error occurred while checking server setup" : "Ndodhi një gabim gjatë kontrollit të rregullimit të shërbyesit",
+ "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Drejtoria juaj e të dhënave dhe kartelat tuaja ka shumë mundësi të jenë të arritshme që nga interneti. Kartela .htaccess s’funksionon. Këshillojmë me forcë që ta formësoni shërbyesin tuaj web në një mënyrë që drejtoria e të dhënave të mos lejojë më hyrje, ose ta zhvendosni drejtorinë e të dhënave jashtë rrënjës së dokumenteve të shërbyesit web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Kryet HTTP \"{header}\" s’është formësuar të jetë i njëjtë me \"{expected}\". Ky është një rrezik potencial sigurie dhe privatësie dhe këshillojmë të ndreqet ky rregullim.",
"The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "Parametri \"Strict-Transport-Security\" HTTP s’është formësuar të paktën \"{seconds}\" sekonda. Për siguri të thelluar, ju këshillojmë aktivizimin e HSTS-së, ashtu si përshkruhet në <a href=\"{docUrl}\" rel=\"noreferrer\">këshillat tona mbi sigurinë</a>.",
"You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Po e përdorni këtë sajt përmes HTTP-je. Këshillojmë me forcë ta formësoni shërbyesin tuaj të kërkojë medoemos përdorimin e HTTPS-së, siç përshkruhet te <a href=\"{docUrl}\">këshillat tona mbi sigurinë</a>.",
@@ -120,40 +128,57 @@ OC.L10N.register(
"Expiration" : "Skadim",
"Expiration date" : "Datë skadimi",
"Choose a password for the public link" : "Zgjidhni një fjalëkalim për lidhjen publike",
+ "Choose a password for the public link or press the \"Enter\" key" : "Zgjidhni një fjalëkalim për lidhjen publike ose shtypni butonin \"Enter\"",
"Copied!" : "U kopjua!",
"Copy" : "Kopjo",
"Not supported!" : "Jo i përshtatshëm!",
"Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.",
"Press Ctrl-C to copy." : "Shtypni Ctrl-C për të kopjuar.",
"Resharing is not allowed" : "Nuk lejohen rindarjet",
+ "Share to {name}" : "Ndaj tek {name}",
"Share link" : "Lidhje ndarjeje",
"Link" : "Lidhje",
"Password protect" : "Mbroje me fjalëkalim",
"Allow editing" : "Lejo përpunim",
"Email link to person" : "Dërgoja personit lidhjen me email",
- "Send" : "Dërgoje",
+ "Send" : "Dërgo",
"Allow upload and editing" : "Lejo ngarkim dhe editim",
"Read only" : "Vetëm i lexueshëm",
"File drop (upload only)" : "Lësho skedar (vetëm ngarkim)",
"Shared with you and the group {group} by {owner}" : "Ndarë me ju dhe me grupin {group} nga {owner}",
"Shared with you by {owner}" : "Ndarë me ju nga {owner}",
+ "Choose a password for the mail share" : "Zgjidh një fjalëkalim për shpërndarjen e mail-it",
"{{shareInitiatorDisplayName}} shared via link" : "{{shpërndaEmrinEShfaqurTëNismëtarit}} shpërnda nëpërmjet linkut",
"group" : "grup",
"remote" : "i largët",
"email" : "postë elektronike",
+ "shared by {sharer}" : "ndarë nga {ndarësi}",
"Unshare" : "Hiqe ndarjen",
+ "Can reshare" : "Mund të rishpërdajë",
+ "Can edit" : "Mund të editojë",
+ "Can create" : "Mund të krijoni",
+ "Can change" : "Mund të ndryshojë",
+ "Can delete" : "Mund të fshijë",
+ "Access control" : "Kontrolli i aksesit",
"Could not unshare" : "S’e shndau dot",
"Error while sharing" : "Gabim gjatë ndarjes",
"Share details could not be loaded for this item." : "Për këtë objekt s’u ngarkuan dot hollësi ndarjeje.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Të paktën {count} karaktere janë të nevojshëm për vetëpërmbushje","Të paktën {count} karaktere janë të nevojshëm për vetëpërmbushje"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Kjo listë ndoshta është e prerë - ju lutemi të përmirësoni termat e kërkimit tuaj për të parë më shumë rezultate.",
"No users or groups found for {search}" : "S’u gjetën përdorues ose grupe për {search}",
"No users found for {search}" : "S’u gjet përdorues për {search}",
"An error occurred. Please try again" : "Ndodhi një gabim. Ju lutemi, riprovoni",
"{sharee} (group)" : "{sharee} (grup)",
"{sharee} (remote)" : "{sharee} (i largët)",
- "{sharee} (email)" : "{shpërnda} (postë elektronike)",
+ "{sharee} (email)" : "{sharee} (email)",
+ "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Ndaje",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Shpërndaje me persona të tjerë duke vendosur një përdorues ose një grup, një ID reje të federuar ose një adresë emaili",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Ndaj me njerëz të tjerë duke futur një pëdorues ose grup ose një ID reje federale.",
"Share with other people by entering a user or group or an email address." : "Shpërndaje me persona të tjerë duke vendosur një perdorues ose një grup ose një adresë emaili",
"Name or email address..." : "Emri ose adresa e email-it",
+ "Name or federated cloud ID..." : "Emri ose ID e resë të fedferuar",
+ "Name, federated cloud ID or email address..." : "Emri, ID e resë të federuar ose adresën e email-it...",
"Name..." : "Emër",
"Error" : "Gabim",
"Error removing share" : "Gabim në heqjen e ndarjes",
@@ -171,7 +196,7 @@ OC.L10N.register(
"Hello {name}, the weather is {weather}" : "Tungjatjeta {name}, koha është {weather}",
"Hello {name}" : "Tungjatjeta {name}",
"<strong>These are your search results<script>alert(1)</script></strong>" : "<strong>Këto janë rezultatet e juaj të kërkimit<script> alarm(1)",
- "new" : "re",
+ "new" : "i/e re",
"_download %n file_::_download %n files_" : ["shkarko %n kartelë","shkarko %n kartela"],
"The update is in progress, leaving this page might interrupt the process in some environments." : "Përditësimi është në zhvillim, largimi nga faqja mund të ndërpres procesin në disa mjedise.",
"Update to {version}" : "Përditëso në {version}",
@@ -180,7 +205,8 @@ OC.L10N.register(
"The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Përditësimi qe i pasuksesshëm. Për më tepër të dhëna <a href=\"{url}\">shihni postimin te forumi ynë</a> lidhur me këtë çështje.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Përditësimi ishte i pasuksesshëm. Ju lutem raportoni këtë problem në <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>.",
"Continue to Nextcloud" : "Vazhdoni tek Nextcloud",
- "Searching other places" : "Po kërkohet në vende të tjera",
+ "_The update was successful. Redirecting you to Nextcloud in %n second._::_The update was successful. Redirecting you to Nextcloud in %n seconds._" : ["Përditësimi ishte i suksesshëm. Ju ridrejtojmë në Nextcloud për %n sekonda.","Përditësimi ishte i suksesshëm. Ju ridrejtojmë në Nextcloud për %n sekonda."],
+ "Searching other places" : "Duke kërkuar në vende të tjera",
"No search results in other folders for {tag}{filter}{endtag}" : "Jo rezultate nga kërkimi në dosjet e tjera për '{etiketim}{filtrim}{përfundoetiketimin}'",
"_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} përfundim kërkimi në një tjetër dosje","{count} përfundime kërkimi në dosje të tjera"],
"Personal" : "Personale",
@@ -274,6 +300,7 @@ OC.L10N.register(
"Please use the command line updater because you have a big instance with more than 50 users." : "Ju lutemi,përdorni përditësuesin e rreshtit të urdhrave, sepse keni një instalim me mbi 50 përdorues",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Për ndihmë, shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin</a>.",
"I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Në qofte se unë vazhdoj të kryej përditësimin nëpëmjet web UI ka rrezik, që kërkesa mund të ndaloj dhe shkakton humbje të të dhënave, por unë di si ti rikthej të dhënat ne rast dështimi.",
+ "Upgrade via web on my own risk" : "Përditëso me anë të internetit në rrezikun tim",
"This %s instance is currently in maintenance mode, which may take a while." : "Kjo instancë %s hëpërhë gjendet nën mënyrën mirëmbajtje, çka mund të zgjasë ca.",
"This page will refresh itself when the %s instance is available again." : "Kjo faqe do të rifreskohet vetiu, sapo instanca %s të jetë sërish gati.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Nëse ky mesazh shfaqet vazhdimisht ose u shfaq papritmas, lidhuni me përgjegjësin e sistemit.",
@@ -294,7 +321,7 @@ OC.L10N.register(
"Share with users or remote users..." : "Shpërnda me përdoruesit ose me përdoruesit në distancë...",
"Share with users, remote users or by mail..." : "Shpërnda me përdoruesit, përdoruesit në distancë ose nga posta elektronike...",
"Share with users or groups..." : "Shpërnda me përdoruesit ose grupet...",
- "Share with users, groups or by mail..." : "Shpërnda me përdoruesit, grupet ose nga posta elektronike...",
+ "Share with users, groups or by mail..." : "Nda me përdoruesit, grupet ose nga posta elektronike...",
"Share with users, groups or remote users..." : "Shpërnda me përdoruesit, grupet ose përdoruesit në distancë...",
"Share with users, groups, remote users or by mail..." : "Shpërnda me përdoruesit, grupet, përdoruesit në distancë ose nga posta elektronike...",
"Share with users..." : "Shpërnda me përdoruesit...",
diff --git a/core/l10n/sq.json b/core/l10n/sq.json
index ddb8a7ae4a5..0b09482432d 100644
--- a/core/l10n/sq.json
+++ b/core/l10n/sq.json
@@ -1,6 +1,6 @@
{ "translations": {
"Please select a file." : "Ju lutem përzgjidhni një skedar.",
- "File is too big" : "Kartela është shumë e madhe",
+ "File is too big" : "Skedari është shumë i madh",
"The selected file is not an image." : "Skedari i zgjedhur nuk është një imazh",
"The selected file cannot be read." : "Skedari i zgjedhur nuk mund të lexohet",
"Invalid file provided" : "U dha kartelë e pavlefshme",
@@ -11,18 +11,20 @@
"No temporary profile picture available, try again" : "S’ka gati foto të përkohshme profili, riprovoni",
"No crop data provided" : "S’u dhanë të dhëna qethjeje",
"No valid crop data provided" : "S’u dhanë të dhëna qethjeje të vlefshme",
- "Crop is not square" : "Qethja s’është katrore",
+ "Crop is not square" : "Prerja s’është katrore",
+ "State token does not match" : "Shenja shtetërore nuk përputhet",
"Password reset is disabled" : "Opsioni për rigjenerimin e fjalëkalimit është çaktivizuar",
"Couldn't reset password because the token is invalid" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i është i pavlefshëm",
"Couldn't reset password because the token is expired" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i ka skaduar",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "S’u dërgua dot email ricaktimi, ngaqë s’ka adresë email për këtë përdoruesi. Ju lutemi, lidhuni me përgjegjësin tuaj.",
"Password reset" : "Fjalkalimi u rivendos",
+ "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Klikoni butonin më poshtë për të rivendosur fjalëkalimin tuaj. Nëse nuk keni kërkuar rivendosjen e fjalëkalimit, atëherë injorojeni këtë email.",
"Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Klikoni ne 'link-un' e rradhes per te rivendosur fjalekalimin tuaj.Nese nuk e keni vendosur akoma fjalekalimin atehere mos e merrni parasysh kete email.",
"Reset your password" : "Rivendosni nje fjalekalim te ri",
"%s password reset" : "U ricaktua fjalëkalimi për %s",
"Couldn't send reset email. Please contact your administrator." : "S’u dërgua dot email-i i ricaktimit. Ju lutemi, lidhuni me përgjegjësin tuaj.",
"Couldn't send reset email. Please make sure your username is correct." : "S’u dërgua dot email ricaktimi. Ju lutemi, sigurohuni që emri juaj i përdoruesit është i saktë.",
- "Preparing update" : "Po përgatitet përditësimi",
+ "Preparing update" : "Duke përgatitur përditësimin",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair warning: " : "Sinjalizim ndreqjeje: ",
"Repair error: " : "Gabim ndreqjeje: ",
@@ -58,8 +60,10 @@
"Looking for {term} …" : "Duke kërkuar {për] ...",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Pati probleme me kontrollin e integritetit të kodit. Më tepër të dhëna…</a>",
"No action available" : "Jo veprim i mundur",
+ "Error fetching contact actions" : "Gabim gjatë marrjes së veprimeve të kontaktit",
"Settings" : "Rregullime",
"Connection to server lost" : "Lidhja me serverin u shkëput",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problem gjatë ngarkimit të faqes, rifreskimi në %n sekonda","Problem gjatë ngarkimit të faqes, rifreskimi në %n sekonda"],
"Saving..." : "Po ruhet …",
"Dismiss" : "Mos e merr parasysh",
"This action requires you to confirm your password" : "Ky veprim kërkon që të konfirmoni fjalëkalimin tuaj.",
@@ -79,6 +83,7 @@
"No files in here" : "Jo skedar këtu",
"Choose" : "Zgjidhni",
"Error loading file picker template: {error}" : "Gabim në ngarkimin e gjedhes së marrësit të kartelave: {error}",
+ "OK" : "OK",
"Error loading message template: {error}" : "Gabim gjatë ngarkimit të gjedhes së mesazheve: {error}",
"read-only" : "vetëm për lexim",
"_{count} file conflict_::_{count} file conflicts_" : ["{count} përplasje kartelash","{count} përplasje kartelash"],
@@ -106,7 +111,10 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "E anasjellta e konfigurimit të kryeve proxy është e pasaktë, ose ju po aksesoni Nextcloud nga një proxy i besuar. Nëse nuk jeni duke aksesuar Nextcloud nga një proxy i besuar, kjo është një çështje sigurie dhe mund të lejoj një sulmues të manipuloj adresën e tyre IP si të dukshme nga Nextcloud. Informacione të mëtejshme mund të gjendet në <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</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\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached është formësuar si fshehtinë e shpërndarë, por është instaluar moduli i gabuar PHP \"memcache\". \\OC\\Memcache\\Memcached mbulon vetëm \"memcached\" dhe jo \"memcache\". Shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki-n mbi memcached rreth të dy moduleve</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Disa kartela s’e kaluan dot kontrollin e pacenueshmërisë. Më tepër të dhëna se si të zgjidhet ky problem mund të gjeni te <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentimi</a> ynë. (<a href=\"{codeIntegrityDownloadEndpoint}\">Listë e kartelave të pavlefshme…</a> / <a href=\"{rescanEndpoint}\">Rikontrollojini…</a>)",
+ "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "PHP OPcache nuk ësht konfiguruar siç duhet. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\"> Për performancë më të mirë ne rekomandojmë </a>të përdorni konfigurimet e mëposhtme në <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. We strongly recommend enabling this function." : "Funksioni i PHP \"set_time_limit\" nuk është i disponueshëm. Kjo mund të rezultoj që skriptet te ndalohen në mes të ekzekutimit dhe të ndërpresin instalimin tuaj. Ne ju rekomandojmë që ju ta bëni aktiv këtë funksion.",
"Error occurred while checking server setup" : "Ndodhi një gabim gjatë kontrollit të rregullimit të shërbyesit",
+ "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Drejtoria juaj e të dhënave dhe kartelat tuaja ka shumë mundësi të jenë të arritshme që nga interneti. Kartela .htaccess s’funksionon. Këshillojmë me forcë që ta formësoni shërbyesin tuaj web në një mënyrë që drejtoria e të dhënave të mos lejojë më hyrje, ose ta zhvendosni drejtorinë e të dhënave jashtë rrënjës së dokumenteve të shërbyesit web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Kryet HTTP \"{header}\" s’është formësuar të jetë i njëjtë me \"{expected}\". Ky është një rrezik potencial sigurie dhe privatësie dhe këshillojmë të ndreqet ky rregullim.",
"The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "Parametri \"Strict-Transport-Security\" HTTP s’është formësuar të paktën \"{seconds}\" sekonda. Për siguri të thelluar, ju këshillojmë aktivizimin e HSTS-së, ashtu si përshkruhet në <a href=\"{docUrl}\" rel=\"noreferrer\">këshillat tona mbi sigurinë</a>.",
"You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Po e përdorni këtë sajt përmes HTTP-je. Këshillojmë me forcë ta formësoni shërbyesin tuaj të kërkojë medoemos përdorimin e HTTPS-së, siç përshkruhet te <a href=\"{docUrl}\">këshillat tona mbi sigurinë</a>.",
@@ -118,40 +126,57 @@
"Expiration" : "Skadim",
"Expiration date" : "Datë skadimi",
"Choose a password for the public link" : "Zgjidhni një fjalëkalim për lidhjen publike",
+ "Choose a password for the public link or press the \"Enter\" key" : "Zgjidhni një fjalëkalim për lidhjen publike ose shtypni butonin \"Enter\"",
"Copied!" : "U kopjua!",
"Copy" : "Kopjo",
"Not supported!" : "Jo i përshtatshëm!",
"Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.",
"Press Ctrl-C to copy." : "Shtypni Ctrl-C për të kopjuar.",
"Resharing is not allowed" : "Nuk lejohen rindarjet",
+ "Share to {name}" : "Ndaj tek {name}",
"Share link" : "Lidhje ndarjeje",
"Link" : "Lidhje",
"Password protect" : "Mbroje me fjalëkalim",
"Allow editing" : "Lejo përpunim",
"Email link to person" : "Dërgoja personit lidhjen me email",
- "Send" : "Dërgoje",
+ "Send" : "Dërgo",
"Allow upload and editing" : "Lejo ngarkim dhe editim",
"Read only" : "Vetëm i lexueshëm",
"File drop (upload only)" : "Lësho skedar (vetëm ngarkim)",
"Shared with you and the group {group} by {owner}" : "Ndarë me ju dhe me grupin {group} nga {owner}",
"Shared with you by {owner}" : "Ndarë me ju nga {owner}",
+ "Choose a password for the mail share" : "Zgjidh një fjalëkalim për shpërndarjen e mail-it",
"{{shareInitiatorDisplayName}} shared via link" : "{{shpërndaEmrinEShfaqurTëNismëtarit}} shpërnda nëpërmjet linkut",
"group" : "grup",
"remote" : "i largët",
"email" : "postë elektronike",
+ "shared by {sharer}" : "ndarë nga {ndarësi}",
"Unshare" : "Hiqe ndarjen",
+ "Can reshare" : "Mund të rishpërdajë",
+ "Can edit" : "Mund të editojë",
+ "Can create" : "Mund të krijoni",
+ "Can change" : "Mund të ndryshojë",
+ "Can delete" : "Mund të fshijë",
+ "Access control" : "Kontrolli i aksesit",
"Could not unshare" : "S’e shndau dot",
"Error while sharing" : "Gabim gjatë ndarjes",
"Share details could not be loaded for this item." : "Për këtë objekt s’u ngarkuan dot hollësi ndarjeje.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Të paktën {count} karaktere janë të nevojshëm për vetëpërmbushje","Të paktën {count} karaktere janë të nevojshëm për vetëpërmbushje"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Kjo listë ndoshta është e prerë - ju lutemi të përmirësoni termat e kërkimit tuaj për të parë më shumë rezultate.",
"No users or groups found for {search}" : "S’u gjetën përdorues ose grupe për {search}",
"No users found for {search}" : "S’u gjet përdorues për {search}",
"An error occurred. Please try again" : "Ndodhi një gabim. Ju lutemi, riprovoni",
"{sharee} (group)" : "{sharee} (grup)",
"{sharee} (remote)" : "{sharee} (i largët)",
- "{sharee} (email)" : "{shpërnda} (postë elektronike)",
+ "{sharee} (email)" : "{sharee} (email)",
+ "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Ndaje",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Shpërndaje me persona të tjerë duke vendosur një përdorues ose një grup, një ID reje të federuar ose një adresë emaili",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Ndaj me njerëz të tjerë duke futur një pëdorues ose grup ose një ID reje federale.",
"Share with other people by entering a user or group or an email address." : "Shpërndaje me persona të tjerë duke vendosur një perdorues ose një grup ose një adresë emaili",
"Name or email address..." : "Emri ose adresa e email-it",
+ "Name or federated cloud ID..." : "Emri ose ID e resë të fedferuar",
+ "Name, federated cloud ID or email address..." : "Emri, ID e resë të federuar ose adresën e email-it...",
"Name..." : "Emër",
"Error" : "Gabim",
"Error removing share" : "Gabim në heqjen e ndarjes",
@@ -169,7 +194,7 @@
"Hello {name}, the weather is {weather}" : "Tungjatjeta {name}, koha është {weather}",
"Hello {name}" : "Tungjatjeta {name}",
"<strong>These are your search results<script>alert(1)</script></strong>" : "<strong>Këto janë rezultatet e juaj të kërkimit<script> alarm(1)",
- "new" : "re",
+ "new" : "i/e re",
"_download %n file_::_download %n files_" : ["shkarko %n kartelë","shkarko %n kartela"],
"The update is in progress, leaving this page might interrupt the process in some environments." : "Përditësimi është në zhvillim, largimi nga faqja mund të ndërpres procesin në disa mjedise.",
"Update to {version}" : "Përditëso në {version}",
@@ -178,7 +203,8 @@
"The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Përditësimi qe i pasuksesshëm. Për më tepër të dhëna <a href=\"{url}\">shihni postimin te forumi ynë</a> lidhur me këtë çështje.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Përditësimi ishte i pasuksesshëm. Ju lutem raportoni këtë problem në <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>.",
"Continue to Nextcloud" : "Vazhdoni tek Nextcloud",
- "Searching other places" : "Po kërkohet në vende të tjera",
+ "_The update was successful. Redirecting you to Nextcloud in %n second._::_The update was successful. Redirecting you to Nextcloud in %n seconds._" : ["Përditësimi ishte i suksesshëm. Ju ridrejtojmë në Nextcloud për %n sekonda.","Përditësimi ishte i suksesshëm. Ju ridrejtojmë në Nextcloud për %n sekonda."],
+ "Searching other places" : "Duke kërkuar në vende të tjera",
"No search results in other folders for {tag}{filter}{endtag}" : "Jo rezultate nga kërkimi në dosjet e tjera për '{etiketim}{filtrim}{përfundoetiketimin}'",
"_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} përfundim kërkimi në një tjetër dosje","{count} përfundime kërkimi në dosje të tjera"],
"Personal" : "Personale",
@@ -272,6 +298,7 @@
"Please use the command line updater because you have a big instance with more than 50 users." : "Ju lutemi,përdorni përditësuesin e rreshtit të urdhrave, sepse keni një instalim me mbi 50 përdorues",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Për ndihmë, shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin</a>.",
"I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Në qofte se unë vazhdoj të kryej përditësimin nëpëmjet web UI ka rrezik, që kërkesa mund të ndaloj dhe shkakton humbje të të dhënave, por unë di si ti rikthej të dhënat ne rast dështimi.",
+ "Upgrade via web on my own risk" : "Përditëso me anë të internetit në rrezikun tim",
"This %s instance is currently in maintenance mode, which may take a while." : "Kjo instancë %s hëpërhë gjendet nën mënyrën mirëmbajtje, çka mund të zgjasë ca.",
"This page will refresh itself when the %s instance is available again." : "Kjo faqe do të rifreskohet vetiu, sapo instanca %s të jetë sërish gati.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Nëse ky mesazh shfaqet vazhdimisht ose u shfaq papritmas, lidhuni me përgjegjësin e sistemit.",
@@ -292,7 +319,7 @@
"Share with users or remote users..." : "Shpërnda me përdoruesit ose me përdoruesit në distancë...",
"Share with users, remote users or by mail..." : "Shpërnda me përdoruesit, përdoruesit në distancë ose nga posta elektronike...",
"Share with users or groups..." : "Shpërnda me përdoruesit ose grupet...",
- "Share with users, groups or by mail..." : "Shpërnda me përdoruesit, grupet ose nga posta elektronike...",
+ "Share with users, groups or by mail..." : "Nda me përdoruesit, grupet ose nga posta elektronike...",
"Share with users, groups or remote users..." : "Shpërnda me përdoruesit, grupet ose përdoruesit në distancë...",
"Share with users, groups, remote users or by mail..." : "Shpërnda me përdoruesit, grupet, përdoruesit në distancë ose nga posta elektronike...",
"Share with users..." : "Shpërnda me përdoruesit...",
diff --git a/core/templates/403.php b/core/templates/403.php
index 7d07c72c873..e053fad764a 100644
--- a/core/templates/403.php
+++ b/core/templates/403.php
@@ -1,10 +1,10 @@
<?php
// @codeCoverageIgnoreStart
-if(!isset($_)) {//also provide standalone error page
+if(!isset($_)) {//standalone page is not supported anymore - redirect to /
require_once '../../lib/base.php';
-
- $tmpl = new OC_Template( '', '403', 'guest' );
- $tmpl->printPage();
+
+ $urlGenerator = \OC::$server->getURLGenerator();
+ header('Location: ' . $urlGenerator->getAbsoluteURL('/'));
exit;
}
// @codeCoverageIgnoreEnd
diff --git a/core/templates/404.php b/core/templates/404.php
index cc45cbeaf5d..0f7318e937a 100644
--- a/core/templates/404.php
+++ b/core/templates/404.php
@@ -3,11 +3,11 @@
/** @var $l \OCP\IL10N */
/** @var $theme OCP\Defaults */
// @codeCoverageIgnoreStart
-if(!isset($_)) {//also provide standalone error page
+if(!isset($_)) {//standalone page is not supported anymore - redirect to /
require_once '../../lib/base.php';
-
- $tmpl = new OC_Template( '', '404', 'guest' );
- $tmpl->printPage();
+
+ $urlGenerator = \OC::$server->getURLGenerator();
+ header('Location: ' . $urlGenerator->getAbsoluteURL('/'));
exit;
}
// @codeCoverageIgnoreEnd