From edf62eb41a338319488eb0b71134da2d38d0a7bd Mon Sep 17 00:00:00 2001
From: Lukas Reschke user) ? p($entry->user) : p('--') ?>
--
cgit v1.2.3
From ea25be51dac20ad42a813276794b9df3044b62f5 Mon Sep 17 00:00:00 2001
From: Morris Jobke
-
Date: Wed, 15 Jun 2016 15:30:23 +0200
Subject: Drop useless IE8 rules
---
settings/css/settings.css | 12 ------------
settings/templates/personal.php | 2 --
2 files changed, 14 deletions(-)
(limited to 'settings/templates')
diff --git a/settings/css/settings.css b/settings/css/settings.css
index 5fc96343502..13b289ea182 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -536,18 +536,6 @@ span.indeterminate {
margin-top: -7px;
}
-.ie8 .strengthify-wrapper {
- left: 389px;
-}
-
-.onlyInIE8 {
- display: none;
-}
-
-.ie8 .onlyInIE8 {
- display: inline;
-}
-
/* OPERA hack for strengthify*/
doesnotexist:-o-prefocus, .strengthify-wrapper {
left: 185px;
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index ced76fc3bf6..19bba537181 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -121,11 +121,9 @@ if($_['passwordChangeSupported']) {
-
-
Date: Wed, 15 Jun 2016 23:25:06 +0200
Subject: Re-add labels for password inputs for usability
* ref https://github.com/nextcloud/server/pull/112#discussion_r67245286
---
settings/templates/personal.php | 2 ++
1 file changed, 2 insertions(+)
(limited to 'settings/templates')
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index b4ff5db5c7c..4f3bca63a4e 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -121,9 +121,11 @@ if($_['passwordChangeSupported']) {
+
+
Date: Mon, 20 Jun 2016 10:38:37 +0200
Subject: fix more strings
---
apps/updatenotification/lib/Notification/Notifier.php | 2 +-
apps/updatenotification/templates/admin.php | 2 +-
settings/js/apps.js | 2 +-
settings/templates/admin.php | 2 +-
settings/templates/apps.php | 4 ++--
settings/templates/personal.php | 10 +++++-----
settings/templates/settings.development.notice.php | 4 ++--
7 files changed, 13 insertions(+), 13 deletions(-)
(limited to 'settings/templates')
diff --git a/apps/updatenotification/lib/Notification/Notifier.php b/apps/updatenotification/lib/Notification/Notifier.php
index 50505ef13f6..bd89c11d62d 100644
--- a/apps/updatenotification/lib/Notification/Notifier.php
+++ b/apps/updatenotification/lib/Notification/Notifier.php
@@ -64,7 +64,7 @@ class Notifier implements INotifier {
$l = $this->l10NFactory->get('updatenotification', $languageCode);
if ($notification->getObjectType() === 'core') {
- $appName = $l->t('ownCloud core');
+ $appName = $l->t('Nextcloud core');
$this->updateAlreadyInstalledCheck($notification, $this->getCoreVersions());
} else {
diff --git a/apps/updatenotification/templates/admin.php b/apps/updatenotification/templates/admin.php
index 5974b106f72..0be070cac30 100644
--- a/apps/updatenotification/templates/admin.php
+++ b/apps/updatenotification/templates/admin.php
@@ -47,7 +47,7 @@
- t('Only notification for app updates are available, because the selected update channel for ownCloud itself does not allow notifications.')); ?>
+ t('Only notification for app updates are available, because the selected update channel for the server itself does not allow notifications.')); ?>
t('Please read carefully before activating server-side encryption: ')); ?>
t('This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later.')); ?>
+t('This app has no minimum Nextcloud version assigned. This will be an error in the future.')); ?>
t('This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later.')); ?>
+t('This app has no maximum Nextcloud version assigned. This will be an error in the future.')); ?>
t('A device password is a passcode that gives an app or device permissions to access your ownCloud account.'));?>
+t('A device password is a passcode that gives an app or device permissions to access your account.'));?>
t('If you want to support the project - join development or - spread the word!'));?>
diff --git a/settings/templates/settings.development.notice.php b/settings/templates/settings.development.notice.php index c88c90f6b6b..2834277cfd6 100644 --- a/settings/templates/settings.development.notice.php +++ b/settings/templates/settings.development.notice.php @@ -8,12 +8,12 @@ '{linkclose}', ], [ - '', + '', '', '', '', ], - $l->t('Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.') + $l->t('Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.') )); ?> -- cgit v1.2.3 From 2a990a0db5199ac842b50b580300bbeb2d2e794c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle