2021-12-30 09:13:16 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2022-09-21 08:08:25 +00:00
|
|
|
import { IntlString, mergeIds } from '@hcengineering/platform'
|
2021-12-30 09:13:16 +00:00
|
|
|
|
2022-09-21 08:08:25 +00:00
|
|
|
import gmail, { gmailId } from '@hcengineering/gmail'
|
2021-12-30 09:13:16 +00:00
|
|
|
|
|
|
|
export default mergeIds(gmailId, gmail, {
|
|
|
|
string: {
|
|
|
|
From: '' as IntlString,
|
|
|
|
To: '' as IntlString,
|
|
|
|
Copy: '' as IntlString,
|
|
|
|
MessagesSelected: '' as IntlString,
|
|
|
|
PublishSelected: '' as IntlString,
|
|
|
|
YouAnd: '' as IntlString,
|
|
|
|
CreateMessage: '' as IntlString,
|
|
|
|
ShareMessages: '' as IntlString,
|
|
|
|
Connect: '' as IntlString,
|
|
|
|
RedirectGoogle: '' as IntlString,
|
|
|
|
ConnectGmai: '' as IntlString,
|
|
|
|
Reply: '' as IntlString,
|
|
|
|
Subject: '' as IntlString,
|
|
|
|
Send: '' as IntlString,
|
2022-05-05 08:29:46 +00:00
|
|
|
NewMessage: '' as IntlString,
|
2022-01-12 09:18:50 +00:00
|
|
|
NewMessageTo: '' as IntlString,
|
2022-01-19 09:09:08 +00:00
|
|
|
Cancel: '' as IntlString,
|
|
|
|
SubjectPlaceholder: '' as IntlString,
|
|
|
|
CopyPlaceholder: '' as IntlString
|
2021-12-30 09:13:16 +00:00
|
|
|
}
|
|
|
|
})
|