Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/l10n/ro.js2
-rw-r--r--lib/l10n/ro.json2
-rw-r--r--lib/private/legacy/OC_Defaults.php4
3 files changed, 6 insertions, 2 deletions
diff --git a/lib/l10n/ro.js b/lib/l10n/ro.js
index 3594dd31251..f3385376e1b 100644
--- a/lib/l10n/ro.js
+++ b/lib/l10n/ro.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"See %s" : "Vezi %s",
"Sample configuration detected" : "A fost detectată o configurație exemplu",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "S-a detectat copierea configurației exemplu. Acest lucru poate duce la oprirea instanței tale și nu este suportat. Te rugăm să citești documentația înainte de a face modificări în fișierul config.php",
+ "Other activities" : "Alte activități",
"%1$s and %2$s" : "%1$s și %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s și %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s și %4$s",
@@ -17,6 +18,7 @@ OC.L10N.register(
"Authentication" : "Autentificare",
"Unknown filetype" : "Tip fișier necunoscut",
"Invalid image" : "Imagine invalidă",
+ "View profile" : "Vezi profilul",
"today" : "astăzi",
"tomorrow" : "mâine",
"yesterday" : "ieri",
diff --git a/lib/l10n/ro.json b/lib/l10n/ro.json
index 8454e885675..9ade0ceffc2 100644
--- a/lib/l10n/ro.json
+++ b/lib/l10n/ro.json
@@ -3,6 +3,7 @@
"See %s" : "Vezi %s",
"Sample configuration detected" : "A fost detectată o configurație exemplu",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "S-a detectat copierea configurației exemplu. Acest lucru poate duce la oprirea instanței tale și nu este suportat. Te rugăm să citești documentația înainte de a face modificări în fișierul config.php",
+ "Other activities" : "Alte activități",
"%1$s and %2$s" : "%1$s și %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s și %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s și %4$s",
@@ -15,6 +16,7 @@
"Authentication" : "Autentificare",
"Unknown filetype" : "Tip fișier necunoscut",
"Invalid image" : "Imagine invalidă",
+ "View profile" : "Vezi profilul",
"today" : "astăzi",
"tomorrow" : "mâine",
"yesterday" : "ieri",
diff --git a/lib/private/legacy/OC_Defaults.php b/lib/private/legacy/OC_Defaults.php
index 707df7279bb..88207e30adc 100644
--- a/lib/private/legacy/OC_Defaults.php
+++ b/lib/private/legacy/OC_Defaults.php
@@ -311,9 +311,9 @@ class OC_Defaults {
/**
* @return array scss variables to overwrite
*/
- public function getScssVariables() {
+ public function getScssVariables(bool $brightBackground = true) {
if ($this->themeExist('getScssVariables')) {
- return $this->theme->getScssVariables();
+ return $this->theme->getScssVariables($brightBackground);
}
return [];
}