15 lines
568 B
TypeScript
15 lines
568 B
TypeScript
import type { PluginDefaultTranslationsObject, PluginLanguage } from '../types.js'
|
|
|
|
export const hyTranslations: PluginDefaultTranslationsObject = {
|
|
'plugin-multi-tenant': {
|
|
'confirm-tenant-switch--body':
|
|
'Դուք պատրաստ եք փոխել գերեցդիմատնին ընկերությունը <0>{{fromTenant}}</0>-ից <0>{{toTenant}}</0>-ին',
|
|
'confirm-tenant-switch--heading': 'Հաստատեք {{tenantLabel}} փոփոխությունը',
|
|
},
|
|
}
|
|
|
|
export const hy: PluginLanguage = {
|
|
dateFNSKey: 'hy-AM',
|
|
translations: hyTranslations,
|
|
}
|