mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-22 09:35:00 +02:00
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
//
|
|
// Copyright © 2025 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.
|
|
//
|
|
|
|
import { addLocation, type IntlString, type Plugin, plugin } from '@hcengineering/platform'
|
|
|
|
export const uiNextId = 'ui-next' as Plugin
|
|
|
|
export const uiNext = plugin(uiNextId, {
|
|
string: {
|
|
Added: '' as IntlString,
|
|
All: '' as IntlString,
|
|
Attach: '' as IntlString,
|
|
Cancel: '' as IntlString,
|
|
Edit: '' as IntlString,
|
|
Edited: '' as IntlString,
|
|
Emoji: '' as IntlString,
|
|
HoursAgo: '' as IntlString,
|
|
JustNow: '' as IntlString,
|
|
LastReply: '' as IntlString,
|
|
Mention: '' as IntlString,
|
|
MinutesAgo: '' as IntlString,
|
|
MonthAt: '' as IntlString,
|
|
New: '' as IntlString,
|
|
Removed: '' as IntlString,
|
|
RepliesCount: '' as IntlString,
|
|
Reply: '' as IntlString,
|
|
Send: '' as IntlString,
|
|
Set: '' as IntlString,
|
|
ShowFormatting: '' as IntlString,
|
|
To: '' as IntlString,
|
|
Today: '' as IntlString,
|
|
Unset: '' as IntlString,
|
|
WeekdayAt: '' as IntlString,
|
|
YearAt: '' as IntlString,
|
|
Yesterday: '' as IntlString,
|
|
YesterdayAt: '' as IntlString,
|
|
AndMore: '' as IntlString,
|
|
IsTyping: '' as IntlString,
|
|
Loading: '' as IntlString,
|
|
MessageIn: '' as IntlString
|
|
}
|
|
})
|
|
|
|
addLocation(uiNextId, async () => ({ default: async () => ({}) }))
|
|
|
|
export default uiNext
|