mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-21 20:02:22 +02:00
* Show payment error notifications Signed-off-by: Artem Savchenko <armisav@gmail.com> * Fix year in copyright Signed-off-by: Artem Savchenko <armisav@gmail.com> * Fix duplicated ids Signed-off-by: Artem Savchenko <armisav@gmail.com> --------- Signed-off-by: Artem Savchenko <armisav@gmail.com>
60 lines
2.2 KiB
TypeScript
60 lines
2.2 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 billing, { billingId } from '@hcengineering/billing'
|
|
import { type IntlString, mergeIds } from '@hcengineering/platform'
|
|
|
|
export default mergeIds(billingId, billing, {
|
|
string: {
|
|
AllPlans: '' as IntlString,
|
|
ActivePlan: '' as IntlString,
|
|
ResourceUsage: '' as IntlString,
|
|
Subscriptions: '' as IntlString,
|
|
UnlimitedUsers: '' as IntlString,
|
|
UnlimitedObjects: '' as IntlString,
|
|
ChangePlan: '' as IntlString,
|
|
Subscribe: '' as IntlString,
|
|
Monthly: '' as IntlString,
|
|
Active: '' as IntlString,
|
|
NoActivePlan: '' as IntlString,
|
|
SelectPlanToBegin: '' as IntlString,
|
|
SubscriptionEnds: '' as IntlString,
|
|
SubscriptionRenews: '' as IntlString,
|
|
SubscriptionValidUntil: '' as IntlString,
|
|
ProcessingPayment: '' as IntlString,
|
|
Downgrade: '' as IntlString,
|
|
CancelSubscription: '' as IntlString,
|
|
ConfirmUpgrade: '' as IntlString,
|
|
ConfirmDowngrade: '' as IntlString,
|
|
ConfirmCancel: '' as IntlString,
|
|
UpgradeDescription: '' as IntlString,
|
|
DowngradeDescription: '' as IntlString,
|
|
CancelDescription: '' as IntlString,
|
|
UncancelSubscription: '' as IntlString,
|
|
ConfirmUncancel: '' as IntlString,
|
|
UncancelDescription: '' as IntlString,
|
|
PriceDifference: '' as IntlString,
|
|
DialogCancel: '' as IntlString,
|
|
DialogConfirm: '' as IntlString,
|
|
StorageUsage: '' as IntlString,
|
|
TrafficUsage: '' as IntlString,
|
|
Usage: '' as IntlString,
|
|
Of: '' as IntlString,
|
|
RestrictedPlans: '' as IntlString,
|
|
SubscriptionOperationFailed: '' as IntlString,
|
|
SubscriptionErrorMessage: '' as IntlString
|
|
}
|
|
})
|