diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/l10n/es.js | 1 | ||||
-rw-r--r-- | lib/l10n/es.json | 1 | ||||
-rw-r--r-- | lib/l10n/pl.js | 5 | ||||
-rw-r--r-- | lib/l10n/pl.json | 5 | ||||
-rw-r--r-- | lib/private/Settings/Personal/Security.php | 8 |
5 files changed, 20 insertions, 0 deletions
diff --git a/lib/l10n/es.js b/lib/l10n/es.js index 80b64b79a3c..f50901137be 100644 --- a/lib/l10n/es.js +++ b/lib/l10n/es.js @@ -29,6 +29,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se necesita la versión %s o superior del servidor.", "Server version %s or lower is required." : "Se necesita la versión %s o inferior del servidor. ", + "Logged in user must be an admin or sub admin" : "El usuario activo debe ser un administrador o subadministrador", "Logged in user must be an admin" : "El usuario registrado debe ser un administrador", "Remote wipe started" : "Barrido remoto comenzado.", "A remote wipe was started on device %s" : "Se ha iniciado un barrido remoto en el dispositivo %s.", diff --git a/lib/l10n/es.json b/lib/l10n/es.json index f6d3a078732..b3baf91ece9 100644 --- a/lib/l10n/es.json +++ b/lib/l10n/es.json @@ -27,6 +27,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se necesita la versión %s o superior del servidor.", "Server version %s or lower is required." : "Se necesita la versión %s o inferior del servidor. ", + "Logged in user must be an admin or sub admin" : "El usuario activo debe ser un administrador o subadministrador", "Logged in user must be an admin" : "El usuario registrado debe ser un administrador", "Remote wipe started" : "Barrido remoto comenzado.", "A remote wipe was started on device %s" : "Se ha iniciado un barrido remoto en el dispositivo %s.", diff --git a/lib/l10n/pl.js b/lib/l10n/pl.js index 8232a249fe4..92cc70699ae 100644 --- a/lib/l10n/pl.js +++ b/lib/l10n/pl.js @@ -29,7 +29,12 @@ OC.L10N.register( "Following platforms are supported: %s" : "Obsługiwane są następujące platformy: %s", "Server version %s or higher is required." : "Wymagana jest wersja serwera %s lub wyższa.", "Server version %s or lower is required." : "Wymagana jest wersja serwera %s lub niższa.", + "Logged in user must be an admin or sub admin" : "Zalogowany użytkownik musi być administratorem lub współadministratorem", "Logged in user must be an admin" : "Zalogowany użytkownik musi być administratorem", + "Remote wipe started" : "Rozpoczęto zdalne czyszczenie", + "A remote wipe was started on device %s" : "Zdalne czyszczenie zostało uruchomione na urządzeniu %s", + "Remote wipe finished" : "Zdalne czyszczenie zakończone", + "The remote wipe on %s has finished" : "Zakończono zdalne czyszczenie na %s", "Unknown filetype" : "Nieznany typ pliku", "Invalid image" : "Błędne zdjęcie", "Avatar image is not square" : "Zdjęcie awatara nie jest kwadratowe", diff --git a/lib/l10n/pl.json b/lib/l10n/pl.json index 3df83e4ba3b..9532a65a727 100644 --- a/lib/l10n/pl.json +++ b/lib/l10n/pl.json @@ -27,7 +27,12 @@ "Following platforms are supported: %s" : "Obsługiwane są następujące platformy: %s", "Server version %s or higher is required." : "Wymagana jest wersja serwera %s lub wyższa.", "Server version %s or lower is required." : "Wymagana jest wersja serwera %s lub niższa.", + "Logged in user must be an admin or sub admin" : "Zalogowany użytkownik musi być administratorem lub współadministratorem", "Logged in user must be an admin" : "Zalogowany użytkownik musi być administratorem", + "Remote wipe started" : "Rozpoczęto zdalne czyszczenie", + "A remote wipe was started on device %s" : "Zdalne czyszczenie zostało uruchomione na urządzeniu %s", + "Remote wipe finished" : "Zdalne czyszczenie zakończone", + "The remote wipe on %s has finished" : "Zakończono zdalne czyszczenie na %s", "Unknown filetype" : "Nieznany typ pliku", "Invalid image" : "Błędne zdjęcie", "Avatar image is not square" : "Zdjęcie awatara nie jest kwadratowe", diff --git a/lib/private/Settings/Personal/Security.php b/lib/private/Settings/Personal/Security.php index eee1d9ae084..a009c6a12f4 100644 --- a/lib/private/Settings/Personal/Security.php +++ b/lib/private/Settings/Personal/Security.php @@ -42,6 +42,7 @@ use OCP\IUserManager; use OCP\IUserSession; use OCP\Session\Exceptions\SessionNotAvailableException; use OCP\Settings\ISettings; +use OCP\IConfig; class Security implements ISettings { @@ -69,6 +70,10 @@ class Security implements ISettings { * @var string|null */ private $uid; + /** + *@var IConfig + */ + private $config; public function __construct(IUserManager $userManager, TwoFactorManager $providerManager, @@ -76,6 +81,7 @@ class Security implements ISettings { ProviderLoader $providerLoader, IUserSession $userSession, ISession $session, + IConfig $config, IInitialStateService $initialStateService, ?string $UserId) { $this->userManager = $userManager; @@ -86,6 +92,7 @@ class Security implements ISettings { $this->session = $session; $this->initialStateService = $initialStateService; $this->uid = $UserId; + $this->config = $config; } /** @@ -108,6 +115,7 @@ class Security implements ISettings { return new TemplateResponse('settings', 'settings/personal/security', [ 'passwordChangeSupported' => $passwordChangeSupported, 'twoFactorProviderData' => $this->getTwoFactorProviderData(), + 'themedark' => $this->config->getUserValue($this->uid, 'accessibility', 'theme', false) ]); } |