Merge branch 'hotfix/v1.1.1' of https://github.com/ONLYOFFICE/AppServer into hotfix/v1.1.1

This commit is contained in:
Alexey Safronov 2022-02-08 17:20:20 +03:00
commit 830bfac3d7
11 changed files with 46 additions and 3 deletions

View File

@ -1,3 +1,7 @@
{
"Uploads": "アップロード"
"Uploads": "アップロード",
"EnterPassword": "パスワードをご入力ください",
"HideInput": "隠す",
"Ready": "完了",
"UploadAndConvert": "ファイルをアップロードして、変換する"
}

View File

@ -23,8 +23,11 @@
*
*/
using System.Text.Json.Serialization;
namespace ASC.Files.Core.Security
{
{
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum FileShare
{
None,

View File

@ -693,6 +693,7 @@ namespace ASC.Files.Helpers
var aceCollection = new AceCollection<T>
{
Files = new List<T> { fileId },
Folders = new List<T>(0),
Aces = list
};
FileStorageService.SetAceObject(aceCollection, false);

View File

@ -0,0 +1,5 @@
{
"GoodMorning": "Guten Morgeng, {{displayName}}!",
"GoodAfternoon": "Guten Tag, {{displayName}}!",
"GoodEvening": "Guten Abend, {{displayName}}!"
}

View File

@ -0,0 +1,5 @@
{
"GoodMorning": "¡Buenos días, {{displayName}}!",
"GoodAfternoon": "¡Buenas tardes, {{displayName}}!",
"GoodEvening": "¡Buenas noches, {{displayName}}!"
}

View File

@ -0,0 +1,5 @@
{
"GoodMorning": "Bonjour, {{displayName}}!",
"GoodAfternoon": "Bon après-midi, {{displayName}}!",
"GoodEvening": "Bonsoir, {{displayName}}!"
}

View File

@ -0,0 +1,5 @@
{
"GoodMorning": "Buongiorno, {{displayName}}!",
"GoodAfternoon": "Buon pomeriggio, {{displayName}}!",
"GoodEvening": "Buonasera, {{displayName}}!"
}

View File

@ -0,0 +1,5 @@
{
"GoodMorning": "{{displayName}}!さん、おはようございます",
"GoodAfternoon": "こんにちは{{displayName}}!さん",
"GoodEvening": "こんばんは{{displayName}}!さん"
}

View File

@ -0,0 +1,5 @@
{
"GoodMorning": "Bună dimineața, {{displayName}}!",
"GoodAfternoon": "Bună ziua, {{displayName}}!",
"GoodEvening": "Bună seara, {{displayName}}!"
}

View File

@ -0,0 +1,5 @@
{
"GoodMorning": "早上好, {{displayName}}!",
"GoodAfternoon": "下午好, {{displayName}}!",
"GoodEvening": "晚上好, {{displayName}}!"
}

View File

@ -49,7 +49,7 @@ const Header = styled.header`
!props.isPersonal &&
css`
@media ${tablet} {
padding-left: 4px;
display: none;
}
`}
}