production-evyos-systems-an.../ServicesWeb/customer/src/languages/mutual/menu/english.ts

177 lines
5.9 KiB
TypeScript

// const menuTranslationEn = {
// "/definitions/identifications/people": "People",
// "/definitions/identifications/users": "Users",
// "/definitions/building/parts": "Build Parts",
// "/definitions/building/areas": "Building Areas",
// "/building/accounts/managment/accounts": "Management Accounts",
// "/building/accounts/managment/budgets": "Management Budgets",
// "/building/accounts/parts/accounts": "Parts Accounts",
// "/building/accounts/parts/budgets": "Parts Budgets",
// "/building/meetings/regular/actions": "Regular Meeting Actions",
// "/building/meetings/regular/accounts": "Regular Meeting Accounts",
// "/building/meetings/ergunt/actions": "Ergunt Meeting Actions",
// "/building/meetings/ergunt/accounts": "Ergunt Meeting Accounts",
// "/building/meetings/invited/attendance": "Meeting Invited Attendance",
// };
const menuTranslationEn = {
// New menu
"/dashboard": [
{ value: "Dashboard", key: "dashboard" },
{ value: "Dashboard", key: "dashboard" },
{ value: "Dashboard", key: "dashboard" },
],
"/individual": [
{ value: "Individual", key: "individual" },
{ value: "Individual", key: "individual" },
{ value: "Individual", key: "individual" },
],
"/user": [
{ value: "User", key: "user" },
{ value: "User", key: "user" },
{ value: "User", key: "user" },
],
"/build": [
{ value: "Build", key: "build" },
{ value: "Build", key: "build" },
{ value: "Build", key: "build" },
],
"/build/parts": [
{ value: "Build", key: "build" },
{ value: "Parts", key: "parts" },
{ value: "Build", key: "build" },
],
"/management/budget/actions": [
{ value: "Management", key: "management" },
{ value: "Budget", key: "budget" },
{ value: "Actions", key: "actions" },
],
"/management/budget": [
{ value: "Management", key: "management" },
{ value: "Budget", key: "budget" },
{ value: "Budget", key: "budget" },
],
"/annual/meeting/close": [
{ value: "Annual", key: "annual" },
{ value: "Meeting", key: "meeting" },
{ value: "Close", key: "close" },
],
"/emergency/meeting": [
{ value: "Emergency", key: "emergency" },
{ value: "Meeting", key: "meeting" },
{ value: "Meeting", key: "meeting" },
],
"/emergency/meeting/close": [
{ value: "Emergency", key: "emergency" },
{ value: "Meeting", key: "meeting" },
{ value: "Close", key: "close" },
],
"/tenant/accounting": [
{ value: "Tenant", key: "tenant" },
{ value: "Accounting", key: "accounting" },
{ value: "Accounting", key: "accounting" },
],
"/meeting/participation": [
{ value: "Meeting", key: "meeting" },
{ value: "Participation", key: "participation" },
{ value: "Participation", key: "participation" },
],
"/tenant/messageToBM": [
{ value: "Tenant", key: "tenant" },
{ value: "Message To BM", key: "messageToBM" },
{ value: "Message To BM", key: "messageToBM" },
],
"/tenant/messageToOwner": [
{ value: "Tenant", key: "tenant" },
{ value: "Message To Owner", key: "messageToOwner" },
{ value: "Message To Owner", key: "messageToOwner" },
],
"/management/accounting": [
{ value: "Management", key: "management" },
{ value: "Accounting", key: "accounting" },
{ value: "Accounting", key: "accounting" },
],
"/build/area": [
{ value: "Build", key: "build" },
{ value: "Area", key: "area" },
{ value: "Area", key: "area" },
],
"/management/budget/status": [
{ value: "Management", key: "management" },
{ value: "Budget", key: "budget" },
{ value: "Status", key: "status" },
],
// Early menu
"/definitions/identifications/people": [
{ value: "Definitions", key: "definitions" },
{ value: "Identifications", key: "identifications" },
{ value: "People", key: "people" },
],
"/definitions/identifications/users": [
{ value: "Definitions", key: "definitions" },
{ value: "Identifications", key: "identifications" },
{ value: "Users", key: "users" },
],
"/definitions/building/parts": [
{ value: "Definitions", key: "definitions" },
{ value: "Building", key: "building" },
{ value: "Parts", key: "parts" },
],
"/definitions/building/areas": [
{ value: "Definitions", key: "definitions" },
{ value: "Building", key: "building" },
{ value: "Areas", key: "areas" },
],
"/building/accounts/managment/accounts": [
{ value: "Building", key: "building" },
{ value: "Accounts", key: "accounts" },
{ value: "Managment", key: "managment" },
],
"/building/accounts/managment/budgets": [
{ value: "Building", key: "building" },
{ value: "Accounts", key: "accounts" },
{ value: "Managment", key: "managment" },
],
"/building/accounts/parts/accounts": [
{ value: "Building", key: "building" },
{ value: "Accounts", key: "accounts" },
{ value: "Parts", key: "parts" },
],
"/building/accounts/parts/budgets": [
{ value: "Building", key: "building" },
{ value: "Accounts", key: "accounts" },
{ value: "Parts", key: "parts" },
],
"/building/meetings/regular/actions": [
{ value: "Building", key: "building" },
{ value: "Meetings", key: "meetings" },
{ value: "Regular", key: "regular" },
],
"/building/meetings/regular/accounts": [
{ value: "Building", key: "building" },
{ value: "Meetings", key: "meetings" },
{ value: "Regular", key: "regular" },
],
"/building/meetings/ergunt/actions": [
{ value: "Building", key: "building" },
{ value: "Meetings", key: "meetings" },
{ value: "Ergunt", key: "ergunt" },
],
"/building/meetings/ergunt/accounts": [
{ value: "Building", key: "building" },
{ value: "Meetings", key: "meetings" },
{ value: "Ergunt", key: "ergunt" },
],
"/building/meetings/invited/attendance": [
{ value: "Building", key: "building" },
{ value: "Meetings", key: "meetings" },
{ value: "Invited", key: "invited" },
],
};
export { menuTranslationEn };