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

github.com/nextcloud/circles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@nextcloud.com>2017-08-01 19:35:43 +0300
committerMaxence Lange <maxence@nextcloud.com>2017-08-01 19:35:43 +0300
commite5602458c58c485909de9dcfd8140785a15575f7 (patch)
tree521348996ff8dc8f44292a3823793da7b19e44b9
parent2b96d68551a3f9a37b852a93bf35399b9c7504b2 (diff)
icons renaming + circles description
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
-rw-r--r--img/closed.png (renamed from img/private.png)bin916 -> 916 bytes
-rw-r--r--img/closed.svg (renamed from img/private.svg)0
-rw-r--r--img/secret.png (renamed from img/hidden.png)bin889 -> 889 bytes
-rw-r--r--img/secret.svg (renamed from img/hidden.svg)0
-rw-r--r--lib/Activity/Provider.php2
-rw-r--r--lib/Api/Sharees.php2
-rw-r--r--templates/navigate.php50
7 files changed, 27 insertions, 27 deletions
diff --git a/img/private.png b/img/closed.png
index 5a2df35d..5a2df35d 100644
--- a/img/private.png
+++ b/img/closed.png
Binary files differ
diff --git a/img/private.svg b/img/closed.svg
index 8a7f8bd8..8a7f8bd8 100644
--- a/img/private.svg
+++ b/img/closed.svg
diff --git a/img/hidden.png b/img/secret.png
index dd66f015..dd66f015 100644
--- a/img/hidden.png
+++ b/img/secret.png
Binary files differ
diff --git a/img/hidden.svg b/img/secret.svg
index 5d18bcfa..5d18bcfa 100644
--- a/img/hidden.svg
+++ b/img/secret.svg
diff --git a/lib/Activity/Provider.php b/lib/Activity/Provider.php
index 3cbb9387..573ed7f8 100644
--- a/lib/Activity/Provider.php
+++ b/lib/Activity/Provider.php
@@ -354,7 +354,6 @@ class Provider implements IProvider {
$params = $event->getSubjectParameters();
$member = Member::fromJSON($this->l10n, $params['member']);
-
switch ($event->getSubject()) {
case 'member_invited':
return $this->parseCircleMemberAdvancedEvent(
@@ -607,7 +606,6 @@ class Provider implements IProvider {
private function parseCircleMemberAdvancedEvent(
IEvent &$event, Circle $circle, Member $member, $ownEvent, $targetEvent, $othersEvent
) {
-
$data = [
'author' => $this->generateViewerParameter($circle),
'circle' => $this->generateCircleParameter($circle),
diff --git a/lib/Api/Sharees.php b/lib/Api/Sharees.php
index c1437dfc..d308422f 100644
--- a/lib/Api/Sharees.php
+++ b/lib/Api/Sharees.php
@@ -84,7 +84,7 @@ class Sharees {
'shareType' => Share::SHARE_TYPE_CIRCLE,
'shareWith' => $entry->getUniqueId(),
'circleInfo' => $entry->getInfo(),
- 'circleOwner' => MiscService::staticGetUserManager(
+ 'circleOwner' => MiscService::staticGetDisplayName(
$entry->getOwner()
->getUserId()
)
diff --git a/templates/navigate.php b/templates/navigate.php
index 545e399e..2ed7cc2f 100644
--- a/templates/navigate.php
+++ b/templates/navigate.php
@@ -61,13 +61,13 @@ style('circles', 'navigation');
);
}
- // Secret Circle
- if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_SECRET]) {
+ // Public Circle
+ if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_PUBLIC]) {
print_unescaped(
sprintf(
'<option value="%s">%s</option>',
- \OCA\Circles\Model\Circle::CIRCLES_SECRET,
- $l->t("Create a secret circle")
+ \OCA\Circles\Model\Circle::CIRCLES_PUBLIC,
+ $l->t("Create a public circle")
)
);
}
@@ -83,23 +83,24 @@ style('circles', 'navigation');
);
}
- // Public Circle
- if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_PUBLIC]) {
+ // Secret Circle
+ if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_SECRET]) {
print_unescaped(
sprintf(
'<option value="%s">%s</option>',
- \OCA\Circles\Model\Circle::CIRCLES_PUBLIC,
- $l->t("Create a public circle")
+ \OCA\Circles\Model\Circle::CIRCLES_SECRET,
+ $l->t("Create a secret circle")
)
);
}
+
?>
</select>
<input id="circles_new_submit" type="submit" value="Creation" style="display: none;"/>
<div id="circles_new_type_definition" style="display: none;">
- <div id="circles_new_type_personal"><b>
+ <div id="circles_new_type_1"><b>
<?php p(
$l->t(
"A personal circle is a list of users known only to the owner."
@@ -108,39 +109,39 @@ style('circles', 'navigation');
</b><br/>
<?php p(
$l->t(
- "This is the right option if you want to do recurrent sharing with the same group."
+ "This is the right option if you want to do recurrent sharing with the same list of local users."
)
); ?>
</div>
- <div id="circles_new_type_secret"><b>
+ <div id="circles_new_type_2"><b>
<?php p(
$l->t(
- "An secret circle is an open group that can be protected by a password."
+ "A secret circle is an hidden group that can only be see by its members or by people knowing the exact name of the circle."
)
); ?></b><br/><?php p(
$l->t(
- "Users won't be able to find this circle using the Nextcloud search engine."
+ "Non-members won't be able to find your secret circle using the search bar."
)
); ?>
</div>
- <div id="circles_new_type_closed"><b><?php p(
+ <div id="circles_new_type_4"><b><?php p(
$l->t(
- "A closed circle requires invitation or confirmation by an admin."
+ "Joining a closed circle requires an invitation or a confirmation by a moderator."
)
); ?>
</b><br/><?php p(
$l->t(
- "This is the right circle if you are looking for privacy when sharing your files or ideas."
+ "Anyone can find the circle and request an invitation; but only members will see who's in it and get access to shared items."
)
); ?>
</div>
- <div id="circles_new_type_public"><b><?php p(
+ <div id="circles_new_type_8"><b><?php p(
$l->t(
"A public circle is an open group visible to anyone willing to join."
)
); ?></b><br/><?php p(
$l->t(
- "Everyone will be able to see and join your circle."
+ "Anyone can see the circle, can join the circle and access the items shared to the circle."
)
); ?>
</div>
@@ -157,10 +158,10 @@ style('circles', 'navigation');
);
}
- if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_SECRET]) {
+ if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_PUBLIC]) {
print_unescaped(
- '<div circle-type="' . \OCA\Circles\Model\Circle::CIRCLES_SECRET . '">' . $l->t(
- 'Secret circles'
+ '<div circle-type="' . \OCA\Circles\Model\Circle::CIRCLES_PUBLIC . '">' . $l->t(
+ 'Public circles'
) . '</div>'
);
}
@@ -173,13 +174,14 @@ style('circles', 'navigation');
);
}
- if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_PUBLIC]) {
+ if ($_['allowed_circles'][\OCA\Circles\Model\Circle::CIRCLES_SECRET]) {
print_unescaped(
- '<div circle-type="' . \OCA\Circles\Model\Circle::CIRCLES_PUBLIC . '">' . $l->t(
- 'Public circles'
+ '<div circle-type="' . \OCA\Circles\Model\Circle::CIRCLES_SECRET . '">' . $l->t(
+ 'Secret circles'
) . '</div>'
);
}
+
?>
<div circle-type="all"><?php p($l->t('All circles')); ?></div>