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

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-04-26 18:33:05 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2017-04-26 18:33:05 +0300
commit44ccc2412c8a456e2f47d78055444e3fa835cb02 (patch)
treee6618606608e9aba839789324b13b48a0b43d930
parent974f0b6585a2b50688e1530b031bd2eeacc33f42 (diff)
Proper capitalization of app name
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r--README.md4
-rw-r--r--appinfo/info.xml4
-rw-r--r--build/bundle.css2
-rw-r--r--lib/Settings/Section.php2
-rw-r--r--tests/phpunit.xml3
5 files changed, 6 insertions, 9 deletions
diff --git a/README.md b/README.md
index d74e3b0f..ec05a311 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
-# Group Folders
+# Group folders
Admin configured folders shared by everyone in a group.
## Configure folders
-Folders can be configured from *Group Folders* in the admin settings.
+Folders can be configured from *Group folders* in the admin settings.
After a folder is created, the admin can give access to the folder to one or more groups.
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 6ff985d5..9f3401a0 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -1,11 +1,11 @@
<?xml version="1.0"?>
<info>
<id>groupfolders</id>
- <name>Group Folders</name>
+ <name>Group folders</name>
<summary>Admin configured folders shared by everyone in a group</summary>
<description><![CDATA[Admin configured folders shared by everyone in a group.
-Folders can be configured from *Group Folders* in the admin settings.
+Folders can be configured from *Group folders* in the admin settings.
After a folder is created, the admin can give access to the folder to one or more groups.]]></description>
<licence>AGPL</licence>
diff --git a/build/bundle.css b/build/bundle.css
index 9cc6fd9d..2100bd2d 100644
--- a/build/bundle.css
+++ b/build/bundle.css
@@ -11,7 +11,6 @@
}
.group-edit img {
opacity: 0;
- -webkit-transition: opactity 0.5s;
transition: opactity 0.5s;
}
.group-edit tr:hover img {
@@ -59,7 +58,6 @@
#groupfolders-react-root .icon {
display: inline-block;
opacity: 0.5;
- -webkit-transition: opacity 0.5s;
transition: opacity 0.5s;
}
diff --git a/lib/Settings/Section.php b/lib/Settings/Section.php
index 8d86235b..f4345477 100644
--- a/lib/Settings/Section.php
+++ b/lib/Settings/Section.php
@@ -53,7 +53,7 @@ class Section implements IIconSection {
* @return string
*/
public function getName() {
- return $this->l->t('Group Folders');
+ return $this->l->t('Group folders');
}
/**
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
index eff7d601..9d19e1d8 100644
--- a/tests/phpunit.xml
+++ b/tests/phpunit.xml
@@ -5,7 +5,7 @@
timeoutForMediumTests="900"
timeoutForLargeTests="900"
>
- <testsuite name='Nextcloud - Group Folders App Tests'>
+ <testsuite name='Nextcloud - Group folders App Tests'>
<directory suffix='.php'>.</directory>
</testsuite>
<filter>
@@ -21,4 +21,3 @@
<log type="coverage-clover" target="./clover.xml"/>
</logging>
</phpunit>
-