@undp/carbon-library 1.0.286 → 1.0.287
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1410 -685
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/Components/Company/CompanyDetails/companyDetailsComponent.d.ts +3 -0
- package/dist/cjs/types/Definitions/Definitions/ndcDetails.definitions.d.ts +1 -0
- package/dist/cjs/types/Definitions/Enums/instrument.enum.d.ts +3 -0
- package/dist/cjs/types/Definitions/Enums/payback.enum.d.ts +8 -0
- package/dist/esm/index.js +1412 -687
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/Components/Company/CompanyDetails/companyDetailsComponent.d.ts +3 -0
- package/dist/esm/types/Definitions/Definitions/ndcDetails.definitions.d.ts +1 -0
- package/dist/esm/types/Definitions/Enums/instrument.enum.d.ts +3 -0
- package/dist/esm/types/Definitions/Enums/payback.enum.d.ts +8 -0
- package/dist/index.d.ts +3 -0
- package/dist/locales/i18n/companyDetails/en.json +19 -0
- package/dist/locales/i18n/companyDetails/es.json +16 -0
- package/dist/locales/i18n/companyDetails/fr.json +16 -0
- package/dist/locales/i18n/companyProfile/en.json +1 -18
- package/dist/locales/i18n/companyProfile/es.json +0 -14
- package/dist/locales/i18n/companyProfile/fr.json +0 -13
- package/dist/locales/i18n/ghgInventory/en.json +3 -1
- package/dist/locales/i18n/login/en.json +1 -0
- package/dist/locales/i18n/ndc/en.json +2 -0
- package/dist/locales/i18n/programme/en.json +9 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"organisationDetailsHeading": "Organisation Details",
|
3
|
+
"name" : "Name",
|
4
|
+
"taxId" : "VAT Registration #",
|
5
|
+
"paymentId" : "Registration Payment ID",
|
6
|
+
"companyRole": "Role",
|
7
|
+
"email" : "Email",
|
8
|
+
"phoneNo" : "Phone",
|
9
|
+
"website" : "Website",
|
10
|
+
"address" : "Address",
|
11
|
+
"creditBalance":"Credit Balance",
|
12
|
+
"programmeCount":"Number of Projects",
|
13
|
+
"remarks": "Remarks",
|
14
|
+
"region": "Region",
|
15
|
+
"ministerName": "Name of the Minister",
|
16
|
+
"sectoralScope": "Sectoral Scope",
|
17
|
+
"nationalSopValue": "National Share of Proceeds",
|
18
|
+
"omgePercentage":"Overall Mitigation in Global Emissions (OMGE) Account"
|
19
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
{
|
2
|
+
"organisationDetailsHeading": "Detalles de la Organización",
|
3
|
+
"name": "Nombre",
|
4
|
+
"taxId": "ID Fiscal",
|
5
|
+
"paymentId": "ID de Pago de Registro",
|
6
|
+
"companyRole": "Rol",
|
7
|
+
"email": "Correo Electrónico",
|
8
|
+
"phoneNo": "Teléfono",
|
9
|
+
"website": "Sitio Web",
|
10
|
+
"address": "Dirección",
|
11
|
+
"creditBalance": "Saldo de Créditos",
|
12
|
+
"programmeCount": "Número de Programas",
|
13
|
+
"remarks": "Observaciones",
|
14
|
+
"ministerName": "Nombre del Ministro",
|
15
|
+
"sectoralScope": "Ámbito Sectorial"
|
16
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
{
|
2
|
+
"organisationDetailsHeading": "Détails de l'Organisation",
|
3
|
+
"name": "Nom",
|
4
|
+
"taxId": "Identifiant Fiscal",
|
5
|
+
"paymentId": "ID de Paiement d'Inscription",
|
6
|
+
"companyRole": "Rôle",
|
7
|
+
"email": "E-mail",
|
8
|
+
"phoneNo": "Téléphone",
|
9
|
+
"website": "Site Web",
|
10
|
+
"address": "Adresse",
|
11
|
+
"creditBalance": "Solde de Crédits",
|
12
|
+
"programmeCount": "Nombre de Programmes",
|
13
|
+
"remarks": "Remarques",
|
14
|
+
"ministerName": "Nom du Ministre",
|
15
|
+
"sectoralScope": "Portée Sectorielle"
|
16
|
+
}
|
@@ -5,31 +5,16 @@
|
|
5
5
|
"reActivate": "REACTIVATE",
|
6
6
|
"approve": "APPROVE",
|
7
7
|
"reject": "REJECT",
|
8
|
-
"organisationDetailsHeading": "Organisation Details",
|
9
|
-
"name" : "Name",
|
10
|
-
"taxId" : "VAT Registration #",
|
11
|
-
"paymentId" : "Registration Payment ID",
|
12
|
-
"companyRole": "Role",
|
13
|
-
"email" : "Email",
|
14
|
-
"phoneNo" : "Phone",
|
15
|
-
"website" : "Website",
|
16
|
-
"address" : "Address",
|
17
|
-
"creditBalance":"Credit Balance",
|
18
|
-
"programmeCount":"Number of Projects",
|
19
8
|
"deauthoriseConfirmHeaderText": "Are you sure you want to deactivate this organisation?",
|
20
9
|
"deauthoriseConfirmText":"Organisation will still be visible but no further action will be able to take place.\n Note: all users associated with the organisation will also be deactivated.",
|
21
10
|
"activeStatus": "Active",
|
22
11
|
"deauthorisedStatus": "Deactivated",
|
23
12
|
"pendingStatus": "Pending",
|
24
13
|
"rejectedStatus": "Rejected",
|
25
|
-
"remarks": "Remarks",
|
26
14
|
"deauthorisationSuccess": "Company deactivated successfully!",
|
27
15
|
"reActivateConfirmHeaderText": "Are you sure you want to reactivate this organisation?",
|
28
16
|
"reActivateConfirmText": "Note: all users associated with the organisation will also be reactivated.",
|
29
17
|
"reactivationSuccess": "Company reactivated successfully!",
|
30
|
-
"region": "Region",
|
31
|
-
"ministerName": "Name of the Minister",
|
32
|
-
"sectoralScope": "Sectoral Scope",
|
33
18
|
"approveConfirmHeaderText": "Are you sure you want to authorise this organisation?",
|
34
19
|
"approveConfirmText": "You can't undo this action",
|
35
20
|
"approvedSuccessfully": "The Organisation was approved successfully",
|
@@ -39,7 +24,5 @@
|
|
39
24
|
"adminDetailsHeading": "Organisation Admin Details",
|
40
25
|
"adminName": "Name",
|
41
26
|
"adminEmail": "Email",
|
42
|
-
"adminPhone": "Phone"
|
43
|
-
"nationalSopValue": "National Share of Proceeds",
|
44
|
-
"omgePercentage":"Overall Mitigation in Global Emissions (OMGE) Account"
|
27
|
+
"adminPhone": "Phone"
|
45
28
|
}
|
@@ -5,30 +5,16 @@
|
|
5
5
|
"reActivate": "REACTIVAR",
|
6
6
|
"approve": "APROBAR",
|
7
7
|
"reject": "RECHAZAR",
|
8
|
-
"organisationDetailsHeading": "Detalles de la Organización",
|
9
|
-
"name": "Nombre",
|
10
|
-
"taxId": "ID Fiscal",
|
11
|
-
"paymentId": "ID de Pago de Registro",
|
12
|
-
"companyRole": "Rol",
|
13
|
-
"email": "Correo Electrónico",
|
14
|
-
"phoneNo": "Teléfono",
|
15
|
-
"website": "Sitio Web",
|
16
|
-
"address": "Dirección",
|
17
|
-
"creditBalance": "Saldo de Créditos",
|
18
|
-
"programmeCount": "Número de Programas",
|
19
8
|
"deauthoriseConfirmHeaderText": "¿Está seguro de que desea desactivar esta organización?",
|
20
9
|
"deauthoriseConfirmText": "La organización seguirá siendo visible, pero no se podrá realizar ninguna acción adicional.\nNota: todos los usuarios asociados con la organización también serán desactivados.",
|
21
10
|
"activeStatus": "Activo",
|
22
11
|
"deauthorisedStatus": "Desactivado",
|
23
12
|
"pendingStatus": "Pendiente",
|
24
13
|
"rejectedStatus": "Rechazado",
|
25
|
-
"remarks": "Observaciones",
|
26
14
|
"deauthorisationSuccess": "¡Organización desactivada con éxito!",
|
27
15
|
"reActivateConfirmHeaderText": "¿Está seguro de que desea reactivar esta organización?",
|
28
16
|
"reActivateConfirmText": "Nota: todos los usuarios asociados con la organización también serán reactivados.",
|
29
17
|
"reactivationSuccess": "¡Organización reactivada con éxito!",
|
30
|
-
"ministerName": "Nombre del Ministro",
|
31
|
-
"sectoralScope": "Ámbito Sectorial",
|
32
18
|
"approveConfirmHeaderText": "¿Está seguro de que desea autorizar esta organización?",
|
33
19
|
"approveConfirmText": "No puede deshacer esta acción",
|
34
20
|
"approvedSuccessfully": "La organización fue aprobada con éxito",
|
@@ -5,17 +5,6 @@
|
|
5
5
|
"reActivate": "RÉACTIVER",
|
6
6
|
"approve": "APPROUVER",
|
7
7
|
"reject": "REJETER",
|
8
|
-
"organisationDetailsHeading": "Détails de l'Organisation",
|
9
|
-
"name": "Nom",
|
10
|
-
"taxId": "Identifiant Fiscal",
|
11
|
-
"paymentId": "ID de Paiement d'Inscription",
|
12
|
-
"companyRole": "Rôle",
|
13
|
-
"email": "E-mail",
|
14
|
-
"phoneNo": "Téléphone",
|
15
|
-
"website": "Site Web",
|
16
|
-
"address": "Adresse",
|
17
|
-
"creditBalance": "Solde de Crédits",
|
18
|
-
"programmeCount": "Nombre de Programmes",
|
19
8
|
"deauthoriseConfirmHeaderText": "Êtes-vous sûr de vouloir désactiver cette organisation ?",
|
20
9
|
"deauthoriseConfirmText": "L'organisation restera visible mais aucune action supplémentaire ne pourra être effectuée.\nNote : tous les utilisateurs associés à l'organisation seront également désactivés.",
|
21
10
|
"activeStatus": "Actif",
|
@@ -27,8 +16,6 @@
|
|
27
16
|
"reActivateConfirmHeaderText": "Êtes-vous sûr de vouloir réactiver cette organisation ?",
|
28
17
|
"reActivateConfirmText": "Note : tous les utilisateurs associés à l'organisation seront également réactivés.",
|
29
18
|
"reactivationSuccess": "Organisation réactivée avec succès !",
|
30
|
-
"ministerName": "Nom du Ministre",
|
31
|
-
"sectoralScope": "Portée Sectorielle",
|
32
19
|
"approveConfirmHeaderText": "Êtes-vous sûr de vouloir autoriser cette organisation ?",
|
33
20
|
"approveConfirmText": "Vous ne pouvez pas annuler cette action",
|
34
21
|
"approvedSuccessfully": "L'Organisation a été approuvée avec succès",
|
@@ -74,6 +74,8 @@
|
|
74
74
|
"emissionsComparisonTitle": "GHG Emission Comparison",
|
75
75
|
"emissionsComparisonTT": "Emissions projected and actual projections for each year under each type during the specified period",
|
76
76
|
"remarks": "Remarks",
|
77
|
-
"finalize": "Finalise"
|
77
|
+
"finalize": "Finalise",
|
78
|
+
"noEmissions": "No Emissions",
|
79
|
+
"noProjections": "No Projections"
|
78
80
|
}
|
79
81
|
|
@@ -5,6 +5,7 @@
|
|
5
5
|
"ndcColumnsEndDate": "End Date",
|
6
6
|
"ndcColumnsNationalPlanObj": "Programmes",
|
7
7
|
"ndcColumnsKpi": "KPI",
|
8
|
+
"ndcColumnsKpiUnit": "KPI Unit",
|
8
9
|
"rangeAlreadyExists": "One or more of the selected year(s) already exists",
|
9
10
|
"addNdcAction": "+ Add NDC Action",
|
10
11
|
"enterNewPlanTxt": "Please add the Programmes",
|
@@ -23,6 +24,7 @@
|
|
23
24
|
"finalizeErrorText": "Cannot finalise the period due to pending Sub NDC Actions",
|
24
25
|
"nationalPlanObjectivePlaceHolder": "Enter Programmes",
|
25
26
|
"kpiPlaceHolder": "Enter Kpi",
|
27
|
+
"kpiUnitPlaceHolder": "Enter Kpi Unit",
|
26
28
|
"isRequired": "is required!",
|
27
29
|
"finalizeNdcEmptyErrorText":"Cannot finalise an empty period",
|
28
30
|
"approveSuccessMsg": "Sub NDC Action has been approved successfully",
|
@@ -83,5 +83,13 @@
|
|
83
83
|
"addSupport": "Add Support",
|
84
84
|
"addSupportBtnText": "ADD SUPPORT",
|
85
85
|
"addSupportSub": "Add Support to a project in the Transparency System",
|
86
|
-
"programmeExistsWithAssessmentRegId": "Project already exist with the given environmental assessment registration number"
|
86
|
+
"programmeExistsWithAssessmentRegId": "Project already exist with the given environmental assessment registration number",
|
87
|
+
"period":"Period",
|
88
|
+
"payback":"Payback",
|
89
|
+
"loanPeriod":"Loan Period",
|
90
|
+
"startOfPayback":"Start of Payback",
|
91
|
+
"LumpSum":"LUMP SUM",
|
92
|
+
"Upfront":"UPFRONT",
|
93
|
+
"Annual":"ANNUAL"
|
94
|
+
|
87
95
|
}
|