This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from Yunite-Net/5059-epic-groups
chore: π° Release v2.1.0-253 β Merge Groups Into master β Epic Groups
- Loading branch information
Showing
13 changed files
with
167 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// this file is duplicated in `backend/src/constants/group.js` and `webapp/constants/group.js` | ||
export const NAME_LENGTH_MIN = 3 | ||
export const NAME_LENGTH_MAX = 50 | ||
export const DESCRIPTION_WITHOUT_HTML_LENGTH_MIN = 100 // with removed HTML tags | ||
export const SHOW_GROUP_BUTTON_IN_HEADER = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"yuniteRebranding": { | ||
"header": { | ||
"about": "Γber Yunite", | ||
"myGroups": "Gruppen", | ||
"newsFeed": "BeitrΓ€ge", | ||
"topics": "Themen" | ||
}, | ||
"footer": { | ||
"dataPrivacy": "Datenschutz", | ||
"imprint": "Impressum" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"yuniteRebranding": { | ||
"header": { | ||
"about": "About Yunite", | ||
"myGroups": "Groups", | ||
"newsFeed": "News Feed", | ||
"topics": "Topics" | ||
}, | ||
"footer": { | ||
"dataPrivacy": "Data privacy", | ||
"imprint": "Imprint" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/dns.values.yaml | ||
/dns.values*-ME.yaml | ||
/nginx.values.yaml | ||
/values.yaml | ||
/values*-ME.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
for locale in `ls locales/*.json`; | ||
do | ||
file=$(basename $locale); | ||
if [ -f locales/tmp/$file ]; then | ||
jq -s '.[0] * .[1]' $locale locales/tmp/$file > locales/tmp/tmp.json; | ||
mv locales/tmp/tmp.json $locale; | ||
fi; | ||
done; | ||
|
||
rm -r locales/tmp/ |