2021-12-06 10:07:08 +00:00
|
|
|
//
|
2022-01-14 09:20:31 +00:00
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021, 2022 Hardcore Engineering Inc.
|
|
|
|
//
|
2021-11-18 12:48:05 +00:00
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
2022-01-14 09:20:31 +00:00
|
|
|
//
|
2021-11-18 12:48:05 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
2022-01-14 09:20:31 +00:00
|
|
|
//
|
2021-11-18 12:48:05 +00:00
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2021-12-06 10:07:08 +00:00
|
|
|
//
|
2021-11-18 12:48:05 +00:00
|
|
|
|
2021-12-06 10:07:08 +00:00
|
|
|
import { mergeIds } from '@anticrm/platform'
|
|
|
|
import type { IntlString } from '@anticrm/platform'
|
2021-11-18 12:48:05 +00:00
|
|
|
|
2021-12-06 10:07:08 +00:00
|
|
|
import attachment, { attachmentId } from '@anticrm/attachment'
|
2021-11-18 12:48:05 +00:00
|
|
|
|
2021-12-06 10:07:08 +00:00
|
|
|
export default mergeIds(attachmentId, attachment, {
|
|
|
|
string: {
|
|
|
|
NoAttachments: '' as IntlString,
|
2022-01-12 09:18:50 +00:00
|
|
|
UploadDropFilesHere: '' as IntlString,
|
2022-01-14 09:20:31 +00:00
|
|
|
Attachments: '' as IntlString,
|
2022-04-23 02:40:38 +00:00
|
|
|
Photos: '' as IntlString,
|
|
|
|
FileBrowser: '' as IntlString,
|
|
|
|
FileBrowserFileCounter: '' as IntlString,
|
|
|
|
FileBrowserFilterFrom: '' as IntlString,
|
|
|
|
FileBrowserFilterIn: '' as IntlString,
|
|
|
|
FileBrowserFilterDate: '' as IntlString,
|
|
|
|
FileBrowserFilterFileType: '' as IntlString,
|
|
|
|
FileBrowserSortNewest: '' as IntlString,
|
|
|
|
FileBrowserSortOldest: '' as IntlString,
|
|
|
|
FileBrowserSortAZ: '' as IntlString,
|
|
|
|
FileBrowserSortZA: '' as IntlString,
|
|
|
|
FileBrowserDateFilterAny: '' as IntlString,
|
|
|
|
FileBrowserDateFilterToday: '' as IntlString,
|
|
|
|
FileBrowserDateFilterYesterday: '' as IntlString,
|
|
|
|
FileBrowserDateFilter7Days: '' as IntlString,
|
|
|
|
FileBrowserDateFilter30Days: '' as IntlString,
|
|
|
|
FileBrowserDateFilter3Months: '' as IntlString,
|
|
|
|
FileBrowserDateFilter12Months: '' as IntlString,
|
|
|
|
FileBrowserTypeFilterAny: '' as IntlString,
|
|
|
|
FileBrowserTypeFilterImages: '' as IntlString,
|
|
|
|
FileBrowserTypeFilterAudio: '' as IntlString,
|
|
|
|
FileBrowserTypeFilterVideos: '' as IntlString,
|
|
|
|
FileBrowserTypeFilterPDFs: '' as IntlString
|
2021-12-06 10:07:08 +00:00
|
|
|
}
|
|
|
|
})
|