@undp/carbon-library 1.0.175-CARBON-339.0 → 1.0.175-CARBON-363.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +508 -539
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/Components/Common/AntComponents/antTableComponents.d.ts +7 -6
- package/dist/cjs/types/Definitions/Definitions/ndcDetails.definitions.d.ts +42 -0
- package/dist/esm/index.js +510 -541
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/Components/Common/AntComponents/antTableComponents.d.ts +7 -6
- package/dist/esm/types/Definitions/Definitions/ndcDetails.definitions.d.ts +42 -0
- package/package.json +1 -3
- package/dist/locales/i18n/addCompany/en.json +0 -38
- package/dist/locales/i18n/addCompany/es.json +0 -36
- package/dist/locales/i18n/addCompany/fr.json +0 -36
- package/dist/locales/i18n/addProgramme/en.json +0 -45
- package/dist/locales/i18n/addUser/en.json +0 -24
- package/dist/locales/i18n/addUser/es.json +0 -24
- package/dist/locales/i18n/addUser/fr.json +0 -24
- package/dist/locales/i18n/coBenifits/en.json +0 -39
- package/dist/locales/i18n/common/en.json +0 -22
- package/dist/locales/i18n/common/es.json +0 -21
- package/dist/locales/i18n/common/fr.json +0 -21
- package/dist/locales/i18n/company/en.json +0 -23
- package/dist/locales/i18n/company/es.json +0 -23
- package/dist/locales/i18n/company/fr.json +0 -23
- package/dist/locales/i18n/companyProfile/en.json +0 -44
- package/dist/locales/i18n/companyProfile/es.json +0 -42
- package/dist/locales/i18n/companyProfile/fr.json +0 -42
- package/dist/locales/i18n/creditTransfer/en.json +0 -34
- package/dist/locales/i18n/creditTransfer/es.json +0 -34
- package/dist/locales/i18n/creditTransfer/fr.json +0 -34
- package/dist/locales/i18n/dashboard/en.json +0 -94
- package/dist/locales/i18n/dashboard/es.json +0 -71
- package/dist/locales/i18n/dashboard/fr.json +0 -71
- package/dist/locales/i18n/economic/en.json +0 -35
- package/dist/locales/i18n/environment/en.json +0 -41
- package/dist/locales/i18n/forgotPassword/en.json +0 -9
- package/dist/locales/i18n/forgotPassword/es.json +0 -9
- package/dist/locales/i18n/forgotPassword/fr.json +0 -9
- package/dist/locales/i18n/genderParity/en.json +0 -14
- package/dist/locales/i18n/homepage/en.json +0 -33
- package/dist/locales/i18n/homepage/es.json +0 -30
- package/dist/locales/i18n/homepage/fr.json +0 -30
- package/dist/locales/i18n/login/en.json +0 -11
- package/dist/locales/i18n/login/es.json +0 -10
- package/dist/locales/i18n/login/fr.json +0 -10
- package/dist/locales/i18n/mrvdashboard/en.json +0 -29
- package/dist/locales/i18n/mrvdashboard/es.json +0 -0
- package/dist/locales/i18n/mrvdashboard/fr.json +0 -0
- package/dist/locales/i18n/nav/en.json +0 -15
- package/dist/locales/i18n/nav/es.json +0 -9
- package/dist/locales/i18n/nav/fr.json +0 -9
- package/dist/locales/i18n/ndc/en.json +0 -12
- package/dist/locales/i18n/ndcAction/en.json +0 -89
- package/dist/locales/i18n/passwordReset/en.json +0 -10
- package/dist/locales/i18n/passwordReset/es.json +0 -10
- package/dist/locales/i18n/passwordReset/fr.json +0 -10
- package/dist/locales/i18n/programme/en.json +0 -87
- package/dist/locales/i18n/programme/es.json +0 -17
- package/dist/locales/i18n/programme/fr.json +0 -17
- package/dist/locales/i18n/resetPassword/en.json +0 -8
- package/dist/locales/i18n/resetPassword/es.json +0 -8
- package/dist/locales/i18n/resetPassword/fr.json +0 -8
- package/dist/locales/i18n/safeguards/en.json +0 -73
- package/dist/locales/i18n/social/en.json +0 -41
- package/dist/locales/i18n/user/en.json +0 -16
- package/dist/locales/i18n/user/es.json +0 -16
- package/dist/locales/i18n/user/fr.json +0 -16
- package/dist/locales/i18n/userProfile/en.json +0 -34
- package/dist/locales/i18n/userProfile/es.json +0 -34
- package/dist/locales/i18n/userProfile/fr.json +0 -34
- package/dist/locales/i18n/view/en.json +0 -144
- package/dist/locales/i18n/view/es.json +0 -128
- package/dist/locales/i18n/view/fr.json +0 -128
@@ -9,13 +9,14 @@ interface EditableRowProps {
|
|
9
9
|
index: number;
|
10
10
|
}
|
11
11
|
export declare const EditableRow: React.FC<EditableRowProps>;
|
12
|
-
interface EditableCellProps {
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
12
|
+
interface EditableCellProps extends React.HTMLAttributes<HTMLElement> {
|
13
|
+
editing: boolean;
|
14
|
+
dataIndex: string;
|
15
|
+
title: any;
|
16
|
+
inputType: "number" | "text";
|
17
17
|
record: Item;
|
18
|
-
|
18
|
+
index: number;
|
19
|
+
children: React.ReactNode;
|
19
20
|
}
|
20
21
|
export declare const EditableCell: React.FC<EditableCellProps>;
|
21
22
|
export {};
|
@@ -0,0 +1,42 @@
|
|
1
|
+
export type Period = {
|
2
|
+
key: string;
|
3
|
+
label: string;
|
4
|
+
startYear: number;
|
5
|
+
endYear: number;
|
6
|
+
finalized: boolean;
|
7
|
+
deleted: boolean;
|
8
|
+
};
|
9
|
+
export type NdcDetail = {
|
10
|
+
id: number;
|
11
|
+
actionType: NdcDetailsActionType;
|
12
|
+
nationalPlanObjective: string;
|
13
|
+
kpi: number | string;
|
14
|
+
ministryName: string;
|
15
|
+
periodId?: number;
|
16
|
+
status: NdcDetailsActionStatus;
|
17
|
+
parentActionId?: number;
|
18
|
+
};
|
19
|
+
export type DateRange = {
|
20
|
+
startYear: number;
|
21
|
+
endYear: number;
|
22
|
+
};
|
23
|
+
export declare enum NdcDetailsActionType {
|
24
|
+
MainAction = "MainAction",
|
25
|
+
SubAction = "SubAction"
|
26
|
+
}
|
27
|
+
export declare enum NdcDetailsActionStatus {
|
28
|
+
New = "New",
|
29
|
+
Pending = "Pending",
|
30
|
+
Approved = "Approved",
|
31
|
+
Rejected = "Rejected"
|
32
|
+
}
|
33
|
+
export declare const getNdcActionStatusEnumVal: (value: string) => string;
|
34
|
+
export declare const getNdcActionStatusTagType: (status: NdcDetailsActionStatus) => "error" | "processing" | "default" | "success";
|
35
|
+
export type PopupInfo = {
|
36
|
+
title: string;
|
37
|
+
icon: any;
|
38
|
+
actionBtnText: string;
|
39
|
+
okAction: any;
|
40
|
+
type: "primary" | "danger";
|
41
|
+
remarkRequired: boolean;
|
42
|
+
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@undp/carbon-library",
|
3
|
-
"version": "1.0.175-CARBON-
|
3
|
+
"version": "1.0.175-CARBON-363.0",
|
4
4
|
"description": "Shared Library of tools for Carbon Credits applications ecosystem for ExO and and HQ/GEF",
|
5
5
|
"type": "module",
|
6
6
|
"scripts": {
|
@@ -13,7 +13,6 @@
|
|
13
13
|
"license": "ISC",
|
14
14
|
"dependencies": {
|
15
15
|
"@rollup/plugin-commonjs": "^25.0.0",
|
16
|
-
"@rollup/plugin-json": "^6.0.1",
|
17
16
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
18
17
|
"@rollup/plugin-typescript": "^11.1.1",
|
19
18
|
"@undp/carbon-credit-calculator": "^1.1.1",
|
@@ -21,7 +20,6 @@
|
|
21
20
|
"postcss": "^8.4.23",
|
22
21
|
"react-circle-flags": "^0.0.19",
|
23
22
|
"rollup": "^3.22.0",
|
24
|
-
"rollup-plugin-copy": "^3.5.0",
|
25
23
|
"rollup-plugin-dts": "^5.3.0",
|
26
24
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
27
25
|
"rollup-plugin-postcss": "^4.0.2",
|
@@ -1,38 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"editCompany": "Edit Organisation",
|
3
|
-
"addNewCompany": "Add New Organisation",
|
4
|
-
"editCompanySub": "Edit Organisation information",
|
5
|
-
"addCompanySub": "Add a new organisation to the Carbon Registry",
|
6
|
-
"name": "Name",
|
7
|
-
"email": "Email",
|
8
|
-
"taxId": "VAT Registration #",
|
9
|
-
"website": "Website",
|
10
|
-
"companyLogo": "Organisation Logo",
|
11
|
-
"companyLogoWithType": "Organisation Logo (File Type : JPEG , PNG , SVG )",
|
12
|
-
"unsupportedFormat": "Unsupported file format!",
|
13
|
-
"maxUploadSize": "Maximum upload file size is 5MB!",
|
14
|
-
"role": "Role",
|
15
|
-
"certifier": "Certifier",
|
16
|
-
"programmeDeveleper": "Programme Develeoper",
|
17
|
-
"viewer": "Viewer",
|
18
|
-
"viewerToolTip": "Permitted to certify and revoke certifications of programmes",
|
19
|
-
"programmeDeveleperToolTip": "Permitted to own programmes and transfer carbon credits",
|
20
|
-
"phoneNo": "Phone Number",
|
21
|
-
"addresss": "Address",
|
22
|
-
"isRequired": "is required!",
|
23
|
-
"isInvalid": "is invalid!",
|
24
|
-
"next": "NEXT",
|
25
|
-
"back": "BACK",
|
26
|
-
"update": "UPDATE",
|
27
|
-
"submit": "SUBMIT",
|
28
|
-
"companyDetailsTitle": "Organisation Details",
|
29
|
-
"companyAdminDetailsTitle": "Organisation Admin Details",
|
30
|
-
"cancel": "CANCEL",
|
31
|
-
"companyAddedSuccess": "The organisation has been created successfully",
|
32
|
-
"companyUpdatedSuccess": "The organisation has been updated successfully ",
|
33
|
-
"companyRegisteredSuccess": "User registration request has been sent",
|
34
|
-
"errorInAddUser": "Error in adding user!",
|
35
|
-
"errorInUpdatingCompany": "Error in updating company!",
|
36
|
-
"region": "Region",
|
37
|
-
"national": "National"
|
38
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"editCompany": "Editar Organización",
|
3
|
-
"addNewCompany": "Agregar Nueva Organización",
|
4
|
-
"editCompanySub": "Editar información de la Organización",
|
5
|
-
"addCompanySub": "Agregar una nueva organización al Registro de Carbono",
|
6
|
-
"name": "Nombre",
|
7
|
-
"email": "Correo Electrónico",
|
8
|
-
"taxId": "Número de Identificación Fiscal",
|
9
|
-
"website": "Sitio Web",
|
10
|
-
"companyLogo": "Logo de la Organización",
|
11
|
-
"companyLogoWithType": "Logo de la Organización (Tipo de Archivo: JPEG, PNG, SVG)",
|
12
|
-
"unsupportedFormat": "Formato de archivo no compatible!",
|
13
|
-
"maxUploadSize": "El tamaño máximo de carga de archivo es de 5 MB!",
|
14
|
-
"role": "Rol",
|
15
|
-
"certifier": "Certificador",
|
16
|
-
"programmeDeveleper": "Desarrollador de Programas",
|
17
|
-
"viewer": "Visualizador",
|
18
|
-
"viewerToolTip": "Autorizado para certificar y revocar certificaciones de programas",
|
19
|
-
"programmeDeveleperToolTip": "Autorizado para poseer programas y transferir créditos de carbono",
|
20
|
-
"phoneNo": "Número de Teléfono",
|
21
|
-
"addresss": "Dirección",
|
22
|
-
"isRequired": "es obligatorio!",
|
23
|
-
"isInvalid": "es inválido!",
|
24
|
-
"next": "SIGUIENTE",
|
25
|
-
"back": "ATRÁS",
|
26
|
-
"update": "ACTUALIZAR",
|
27
|
-
"submit": "ENVIAR",
|
28
|
-
"companyDetailsTitle": "Detalles de la Organización",
|
29
|
-
"companyAdminDetailsTitle": "Detalles del Administrador de la Organización",
|
30
|
-
"cancel": "CANCELAR",
|
31
|
-
"companyAddedSuccess": "La organización se ha creado con éxito",
|
32
|
-
"companyUpdatedSuccess": "La organización se ha actualizado con éxito",
|
33
|
-
"companyRegisteredSuccess": "La solicitud de registro de usuario ha sido enviada",
|
34
|
-
"errorInAddUser": "Error al agregar usuario!",
|
35
|
-
"errorInUpdatingCompany": "Error al actualizar la empresa!"
|
36
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"editCompany": "Modifier l'Organisation",
|
3
|
-
"addNewCompany": "Ajouter une Nouvelle Organisation",
|
4
|
-
"editCompanySub": "Modifier les Informations de l'Organisation",
|
5
|
-
"addCompanySub": "Ajouter une nouvelle organisation au Registre Carbone",
|
6
|
-
"name": "Nom",
|
7
|
-
"email": "Email",
|
8
|
-
"taxId": "Identifiant Fiscal",
|
9
|
-
"website": "Site Web",
|
10
|
-
"companyLogo": "Logo de l'Organisation",
|
11
|
-
"companyLogoWithType": "Logo de l'Organisation (Type de Fichier : JPEG, PNG, SVG)",
|
12
|
-
"unsupportedFormat": "Format de fichier non pris en charge !",
|
13
|
-
"maxUploadSize": "La taille maximale de téléchargement de fichier est de 5 Mo !",
|
14
|
-
"role": "Rôle",
|
15
|
-
"certifier": "Certificateur",
|
16
|
-
"programmeDeveleper": "Développeur de Programme",
|
17
|
-
"viewer": "Observateur",
|
18
|
-
"viewerToolTip": "Autorisé à certifier et révoquer les certifications de programmes",
|
19
|
-
"programmeDeveleperToolTip": "Autorisé à posséder des programmes et à transférer des crédits carbone",
|
20
|
-
"phoneNo": "Numéro de Téléphone",
|
21
|
-
"addresss": "Adresse",
|
22
|
-
"isRequired": "est requis !",
|
23
|
-
"isInvalid": "est invalide !",
|
24
|
-
"next": "SUIVANT",
|
25
|
-
"back": "RETOUR",
|
26
|
-
"update": "METTRE À JOUR",
|
27
|
-
"submit": "SOUMETTRE",
|
28
|
-
"companyDetailsTitle": "Détails de l'Organisation",
|
29
|
-
"companyAdminDetailsTitle": "Détails de l'Administrateur de l'Organisation",
|
30
|
-
"cancel": "ANNULER",
|
31
|
-
"companyAddedSuccess": "L'organisation a été créée avec succès",
|
32
|
-
"companyUpdatedSuccess": "L'organisation a été mise à jour avec succès",
|
33
|
-
"companyRegisteredSuccess": "La demande d'inscription d'utilisateur a été envoyée",
|
34
|
-
"errorInAddUser": "Erreur lors de l'ajout de l'utilisateur !",
|
35
|
-
"errorInUpdatingCompany": "Erreur lors de la mise à jour de l'entreprise !"
|
36
|
-
}
|
@@ -1,45 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"addProgramme": "Add New Programme",
|
3
|
-
"addProgrammeSub": "Add New Programmes to the Transparency System",
|
4
|
-
"addProgramme1": "Programme Details",
|
5
|
-
"addProgramme2": "Programme Financing Sought",
|
6
|
-
"addProgramme3": "NDC Action Details",
|
7
|
-
"addProgramme4": "Co-Benefits",
|
8
|
-
"inNDC": "Included in NDC",
|
9
|
-
"inNDCToolTip": "Nationally Determined Contributions (NDC)",
|
10
|
-
"inNAP": "Included in NAP",
|
11
|
-
"inNAPToolTip": "National Adaptation Plan (NAP)",
|
12
|
-
"yes": "YES",
|
13
|
-
"no": "NO",
|
14
|
-
"proponentPercentValidation": "Total Organisation Percentage is invalid",
|
15
|
-
"programmeCreationSuccess": "The programme has been created successfully",
|
16
|
-
"title": "Title",
|
17
|
-
"externalId": "External ID",
|
18
|
-
"ghgCovered": "GHGs Covered",
|
19
|
-
"sector": "Sector",
|
20
|
-
"startTime": "Programme Start Date",
|
21
|
-
"designDoc": "Design Document",
|
22
|
-
"designDocTooltip": "Design a Project Document with the UNFCCC CDM Mechanism Tool Prototype",
|
23
|
-
"buyerCountryEligibility": "Buyer Country Eligibility",
|
24
|
-
"company": "Organisation",
|
25
|
-
"proponentPercentage": "Ownership Percentage",
|
26
|
-
"sectoralScope": "Sectoral Scope",
|
27
|
-
"endTime": "Programme End Date",
|
28
|
-
"ndcScope": "NDC Scope",
|
29
|
-
"geographicalLocation": "Geographical Location",
|
30
|
-
"next": "NEXT",
|
31
|
-
"estimatedProgrammeCostUSD": "Estimated Programme Cost (USD)",
|
32
|
-
"minViableCarbonPrice": "Minimum Carbon Price: USD per ton (assuming no other revenue)",
|
33
|
-
"creditEst": "Estimated Credits",
|
34
|
-
"sumbit": "SUBMIT",
|
35
|
-
"addAction": "ADD ACTION",
|
36
|
-
"back": "BACK",
|
37
|
-
"conditional": "CONDITIONAL",
|
38
|
-
"unConditional": "UNCONDITIONAL",
|
39
|
-
"endTimeVal": "End date cannot be earlier than the start date",
|
40
|
-
"invalidFileFormat": "Unsupported file format",
|
41
|
-
"duplicateOrg": "This organisation is already selected!",
|
42
|
-
"isRequired": "is required!",
|
43
|
-
"environmentalImpactAssessment": "Environmental Impact Assessment",
|
44
|
-
"environmentalAssessmentRegistrationNo": "Environmental Assessment Registration Number"
|
45
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"editUser": "Edit User",
|
3
|
-
"addNewUser": "Add New User",
|
4
|
-
"editUserSub": "Edit the user information",
|
5
|
-
"addUserSub": "Add new users to the Carbon Registry for your organisation",
|
6
|
-
"name": "Name",
|
7
|
-
"email": "Email",
|
8
|
-
"role": "Role",
|
9
|
-
"admin": "Admin",
|
10
|
-
"manager": "Manager",
|
11
|
-
"viewer": "Viewer",
|
12
|
-
"phoneNo": "Phone Number",
|
13
|
-
"isRequired": "is required!",
|
14
|
-
"isInvalid": "is invalid!",
|
15
|
-
"update": "UPDATE",
|
16
|
-
"submit": "SUBMIT",
|
17
|
-
"addUserSuccess": "The user has been created successfully",
|
18
|
-
"addUserError": "Error in adding user!",
|
19
|
-
"updateUserSuccess": "The user account has been updated successfully",
|
20
|
-
"updateUserError": "Error in updating user!",
|
21
|
-
"adminToolTip": "Full access to all permitted functions",
|
22
|
-
"managerToolTip": "Access to all permitted functions except user management",
|
23
|
-
"viewerToolTip": "Read-only access to all permitted functionalities"
|
24
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"editUser": "Editar Usuario",
|
3
|
-
"addNewUser": "Agregar Nuevo Usuario",
|
4
|
-
"editUserSub": "Editar la información del usuario",
|
5
|
-
"addUserSub": "Agregar nuevos usuarios al Registro de Carbono de su organización",
|
6
|
-
"name": "Nombre",
|
7
|
-
"email": "Correo Electrónico",
|
8
|
-
"role": "Rol",
|
9
|
-
"admin": "Admin",
|
10
|
-
"manager": "Gerente",
|
11
|
-
"viewer": "Visualizador",
|
12
|
-
"phoneNo": "Número de Teléfono",
|
13
|
-
"isRequired": "es obligatorio!",
|
14
|
-
"isInvalid": "es inválido!",
|
15
|
-
"update": "ACTUALIZAR",
|
16
|
-
"submit": "ENVIAR",
|
17
|
-
"addUserSuccess": "El usuario se ha creado con éxito",
|
18
|
-
"addUserError": "¡Error al agregar usuario!",
|
19
|
-
"updateUserSuccess": "La cuenta de usuario se ha actualizado con éxito",
|
20
|
-
"updateUserError": "¡Error al actualizar usuario!",
|
21
|
-
"adminToolTip": "Acceso completo a todas las funciones permitidas",
|
22
|
-
"managerToolTip": "Acceso a todas las funciones permitidas excepto la gestión de usuarios",
|
23
|
-
"viewerToolTip": "Acceso de solo lectura a todas las funcionalidades permitidas"
|
24
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"editUser": "Modifier l'utilisateur",
|
3
|
-
"addNewUser": "Ajouter un nouvel utilisateur",
|
4
|
-
"editUserSub": "Modifier les informations de l'utilisateur",
|
5
|
-
"addUserSub": "Ajouter de nouveaux utilisateurs au registre carbone de votre organisation",
|
6
|
-
"name": "Nom",
|
7
|
-
"email": "Email",
|
8
|
-
"role": "Rôle",
|
9
|
-
"admin": "Admin",
|
10
|
-
"manager": "Gestionnaire",
|
11
|
-
"viewer": "Observateur",
|
12
|
-
"phoneNo": "Numéro de téléphone",
|
13
|
-
"isRequired": "est requis!",
|
14
|
-
"isInvalid": "est invalide!",
|
15
|
-
"update": "METTRE À JOUR",
|
16
|
-
"submit": "SOUMETTRE",
|
17
|
-
"addUserSuccess": "L'utilisateur a été créé avec succès",
|
18
|
-
"addUserError": "Erreur lors de l'ajout de l'utilisateur!",
|
19
|
-
"updateUserSuccess": "Le compte utilisateur a été mis à jour avec succès",
|
20
|
-
"updateUserError": "Erreur lors de la mise à jour de l'utilisateur!",
|
21
|
-
"adminToolTip": "Accès complet à toutes les fonctions autorisées",
|
22
|
-
"managerToolTip": "Accès à toutes les fonctions autorisées sauf la gestion des utilisateurs",
|
23
|
-
"viewerToolTip": "Accès en lecture seule à toutes les fonctionnalités autorisées"
|
24
|
-
}
|
@@ -1,39 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"sdgGoals": "SDG Goals",
|
3
|
-
"genderPart": "Gender Parity",
|
4
|
-
"safeguards": "Safeguards",
|
5
|
-
"environmental": "Environmental",
|
6
|
-
"social": "Social",
|
7
|
-
"economic": "Economic",
|
8
|
-
"assessment": "Assessment",
|
9
|
-
"assessmentIsThirdPartyVerified": "Has an independent third party (environmental auditor, voluntary standards organization, designated operational entity etc.) verified the statements made in the SD description you are about to submit?",
|
10
|
-
"assesmentIsWillingToVerified": "Are you willing to have an independent third party verify the statements made in the SD description you are about to submit?",
|
11
|
-
"assesmentIsThePersonListed": "Are you the person listed in the latest version of the form Modalities of Communication statement (F-CDM-MOC) for this project?",
|
12
|
-
"assessmentTitle": "Title",
|
13
|
-
"assessmentFirstName": "First Name",
|
14
|
-
"assessmentLastName": "Last Name",
|
15
|
-
"assessmentOrganisation": "Organisation",
|
16
|
-
"assessmentTelephone": "Telephone Number",
|
17
|
-
"assessmentEmail": "Email Address",
|
18
|
-
"assessmentAffiliationCDM": "Affiliation to CDM",
|
19
|
-
"assessmentStudyName": "Study Name",
|
20
|
-
"assessmentFunder": "Funder",
|
21
|
-
"assessmentDocuments": "Documents",
|
22
|
-
"isRequired": "is required",
|
23
|
-
"n/a": "N/A",
|
24
|
-
"yes": "YES",
|
25
|
-
"no": "NO",
|
26
|
-
"back":"BACK",
|
27
|
-
"submit":"SUBMIT",
|
28
|
-
"verifyingOrgNamelbl":"Name or type of verifying organisation or any other relevant information",
|
29
|
-
"information":"information",
|
30
|
-
"verifyingDetailslbl":"Details",
|
31
|
-
"specify":"Specify",
|
32
|
-
"contactInformation":"Contact Information",
|
33
|
-
"feasibilityReport":"Feasibility Report",
|
34
|
-
"invalidFileFormat": "Unsupported file format",
|
35
|
-
"email": "Email",
|
36
|
-
"isInvalid": "is invalid!"
|
37
|
-
}
|
38
|
-
|
39
|
-
|
@@ -1,22 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"submit": "Submit",
|
3
|
-
"name": "Name",
|
4
|
-
"email": "Email",
|
5
|
-
"pwd": "Password",
|
6
|
-
"login": "Sign In",
|
7
|
-
"signUp": "Sign Up",
|
8
|
-
"language": "Language",
|
9
|
-
"company": "Organisations",
|
10
|
-
"edit": "EDIT",
|
11
|
-
"isRequired": "is required!",
|
12
|
-
"isInvalid": "is invalid!",
|
13
|
-
"sessionExpiredErrorMsg": "Your session has expired, Please log in again to continue working.",
|
14
|
-
"backto": "Back to",
|
15
|
-
"signIn": "Sign In",
|
16
|
-
"loginFailed": "Login failed",
|
17
|
-
"networkError": "Network error. Please check your internet connection and try again.",
|
18
|
-
"systemError": "Something went wrong. Please try again.",
|
19
|
-
"maxSizeVal": "Maximum upload file size is 5MB",
|
20
|
-
"approve": "APPROVE",
|
21
|
-
"reject": "REJECT"
|
22
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"submit": "Enviar",
|
3
|
-
"name": "Nombre",
|
4
|
-
"email": "Correo Electrónico",
|
5
|
-
"pwd": "Contraseña",
|
6
|
-
"login": "Iniciar Sesión",
|
7
|
-
"signUp": "Registrarse",
|
8
|
-
"language": "Idioma",
|
9
|
-
"company": "Organizaciones",
|
10
|
-
"edit": "EDITAR",
|
11
|
-
"isRequired": "es obligatorio!",
|
12
|
-
"isInvalid": "es inválido!",
|
13
|
-
"sessionExpiredErrorMsg": "Su sesión ha caducado. Por favor, inicie sesión nuevamente para continuar trabajando.",
|
14
|
-
"backto": "Volver a",
|
15
|
-
"signIn": "Iniciar Sesión",
|
16
|
-
"loginFailed": "Inicio de sesión fallido",
|
17
|
-
"networkError": "Error de red. Por favor, verifique su conexión a internet y vuelva a intentarlo.",
|
18
|
-
"systemError": "Algo salió mal. Por favor, inténtelo de nuevo.",
|
19
|
-
"approve": "APROBAR",
|
20
|
-
"reject": "RECHAZAR"
|
21
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"submit": "Soumettre",
|
3
|
-
"name": "Nom",
|
4
|
-
"email": "E-mail",
|
5
|
-
"pwd": "Mot de passe",
|
6
|
-
"login": "Se Connecter",
|
7
|
-
"signUp": "S'Inscrire",
|
8
|
-
"language": "Langue",
|
9
|
-
"company": "Organisations",
|
10
|
-
"edit": "ÉDITER",
|
11
|
-
"isRequired": "est requis !",
|
12
|
-
"isInvalid": "est invalide !",
|
13
|
-
"sessionExpiredErrorMsg": "Votre session a expiré. Veuillez vous connecter à nouveau pour continuer à travailler.",
|
14
|
-
"backto": "Retour à",
|
15
|
-
"signIn": "Se Connecter",
|
16
|
-
"loginFailed": "Échec de la Connexion",
|
17
|
-
"networkError": "Erreur réseau. Veuillez vérifier votre connexion Internet et réessayer.",
|
18
|
-
"systemError": "Quelque chose s'est mal passé. Veuillez réessayer.",
|
19
|
-
"approve": "APPROUVER",
|
20
|
-
"reject": "REJETER"
|
21
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"developer": "Developer",
|
3
|
-
"name": "ORGANISATION NAME",
|
4
|
-
"taxId": "TAX ID",
|
5
|
-
"filterByOrgType": "Filter by Organisation Type",
|
6
|
-
"companyRole": "ORGANISATION TYPE",
|
7
|
-
"companyState": "STATUS",
|
8
|
-
"viewCompanies": "View Organisations",
|
9
|
-
"viewDesc": "View all the visible organisations in the system based on your permissions",
|
10
|
-
"addCompany": "Add organisation",
|
11
|
-
"numberOfProgrammes": "NUMBER OF PROGRAMMES",
|
12
|
-
"creditBalance": "CREDIT BALANCE",
|
13
|
-
"date": "Date",
|
14
|
-
"getCompanyError": "Error in getting company",
|
15
|
-
"filterByCompany": "Filter by Organisation Type",
|
16
|
-
"gov": "Government",
|
17
|
-
"certifier": "Certifier",
|
18
|
-
"all": "All",
|
19
|
-
"searchMail": "Search by email",
|
20
|
-
"searchName": "Search by name",
|
21
|
-
"min": "Ministry",
|
22
|
-
"nationalSopValue": "National Share of Proceeds"
|
23
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"developer": "Desarrollador",
|
3
|
-
"name": "NOMBRE DE LA ORGANIZACIÓN",
|
4
|
-
"taxId": "ID FISCAL",
|
5
|
-
"filterByOrgType": "Filtrar por Tipo de Organización",
|
6
|
-
"companyRole": "TIPO DE ORGANIZACIÓN",
|
7
|
-
"companyState": "ESTADO",
|
8
|
-
"viewCompanies": "Ver Organizaciones",
|
9
|
-
"viewDesc": "Ver todas las organizaciones visibles en el sistema basadas en sus permisos",
|
10
|
-
"addCompany": "Agregar organización",
|
11
|
-
"numberOfProgrammes": "NÚMERO DE PROGRAMAS",
|
12
|
-
"creditBalance": "SALDO DE CRÉDITO",
|
13
|
-
"date": "Fecha",
|
14
|
-
"getCompanyError": "Error al obtener la empresa",
|
15
|
-
"filterByCompany": "Filtrar por Tipo de Organización",
|
16
|
-
"gov": "Gobierno",
|
17
|
-
"certifier": "Certificador",
|
18
|
-
"all": "Todos",
|
19
|
-
"searchMail": "Buscar por correo electrónico",
|
20
|
-
"searchName": "Buscar por nombre",
|
21
|
-
"min": "Ministerio",
|
22
|
-
"nationalSopValue": "Participación Nacional en los Ingresos"
|
23
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"developer": "Développeur",
|
3
|
-
"name": "NOM DE L'ORGANISATION",
|
4
|
-
"taxId": "IDENTIFIANT FISCAL",
|
5
|
-
"filterByOrgType": "Filtrer par Type d'Organisation",
|
6
|
-
"companyRole": "TYPE D'ORGANISATION",
|
7
|
-
"companyState": "STATUT",
|
8
|
-
"viewCompanies": "Voir les Organisations",
|
9
|
-
"viewDesc": "Voir toutes les organisations visibles dans le système en fonction de vos permissions",
|
10
|
-
"addCompany": "Ajouter une organisation",
|
11
|
-
"numberOfProgrammes": "NOMBRE DE PROGRAMMES",
|
12
|
-
"creditBalance": "SOLDE DE CRÉDITS",
|
13
|
-
"date": "Date",
|
14
|
-
"getCompanyError": "Erreur lors de l'obtention de l'entreprise",
|
15
|
-
"filterByCompany": "Filtrer par Type d'Organisation",
|
16
|
-
"gov": "Gouvernement",
|
17
|
-
"certifier": "Certifieur",
|
18
|
-
"all": "Tous",
|
19
|
-
"searchMail": "Rechercher par e-mail",
|
20
|
-
"searchName": "Rechercher par nom",
|
21
|
-
"min": "Ministère",
|
22
|
-
"nationalSopValue": "Part Nationale des Revenus"
|
23
|
-
}
|
@@ -1,44 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"title": "Organisation Details",
|
3
|
-
"subTitle": "View the details of the selected organisation",
|
4
|
-
"deauthorise": "DEACTIVATE",
|
5
|
-
"reActivate": "REACTIVATE",
|
6
|
-
"approve": "APPROVE",
|
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 Programmes",
|
19
|
-
"deauthoriseConfirmHeaderText": "Are you sure you want to deactivate this organisation?",
|
20
|
-
"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
|
-
"activeStatus": "Active",
|
22
|
-
"deauthorisedStatus": "Deactivated",
|
23
|
-
"pendingStatus": "Pending",
|
24
|
-
"rejectedStatus": "Rejected",
|
25
|
-
"remarks": "Remarks",
|
26
|
-
"deauthorisationSuccess": "Company deactivated successfully!",
|
27
|
-
"reActivateConfirmHeaderText": "Are you sure you want to reactivate this organisation?",
|
28
|
-
"reActivateConfirmText": "Note: all users associated with the organisation will also be reactivated.",
|
29
|
-
"reactivationSuccess": "Company reactivated successfully!",
|
30
|
-
"region": "Region",
|
31
|
-
"ministerName": "Name of the Minister",
|
32
|
-
"sectoralScope": "Sectoral Scope",
|
33
|
-
"approveConfirmHeaderText": "Are you sure you want to authorise this organisation?",
|
34
|
-
"approveConfirmText": "You can't undo this action",
|
35
|
-
"approvedSuccessfully": "The Organisation was approved successfully",
|
36
|
-
"rejectConfirmHeaderText": "Are you sure you want to reject this organisation?",
|
37
|
-
"rejectConfirmText": "You can't undo this action",
|
38
|
-
"rejectedSuccessfully": "The Organisation was rejected successfully",
|
39
|
-
"adminDetailsHeading": "Organisation Admin Details",
|
40
|
-
"adminName": "Name",
|
41
|
-
"adminEmail": "Email",
|
42
|
-
"adminPhone": "Phone",
|
43
|
-
"nationalSopValue": "National Share of Proceeds"
|
44
|
-
}
|
@@ -1,42 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"title": "Detalles de la Organización",
|
3
|
-
"subTitle": "Ver los detalles de la organización seleccionada",
|
4
|
-
"deauthorise": "DESACTIVAR",
|
5
|
-
"reActivate": "REACTIVAR",
|
6
|
-
"approve": "APROBAR",
|
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
|
-
"deauthoriseConfirmHeaderText": "¿Está seguro de que desea desactivar esta organización?",
|
20
|
-
"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
|
-
"activeStatus": "Activo",
|
22
|
-
"deauthorisedStatus": "Desactivado",
|
23
|
-
"pendingStatus": "Pendiente",
|
24
|
-
"rejectedStatus": "Rechazado",
|
25
|
-
"remarks": "Observaciones",
|
26
|
-
"deauthorisationSuccess": "¡Organización desactivada con éxito!",
|
27
|
-
"reActivateConfirmHeaderText": "¿Está seguro de que desea reactivar esta organización?",
|
28
|
-
"reActivateConfirmText": "Nota: todos los usuarios asociados con la organización también serán reactivados.",
|
29
|
-
"reactivationSuccess": "¡Organización reactivada con éxito!",
|
30
|
-
"ministerName": "Nombre del Ministro",
|
31
|
-
"sectoralScope": "Ámbito Sectorial",
|
32
|
-
"approveConfirmHeaderText": "¿Está seguro de que desea autorizar esta organización?",
|
33
|
-
"approveConfirmText": "No puede deshacer esta acción",
|
34
|
-
"approvedSuccessfully": "La organización fue aprobada con éxito",
|
35
|
-
"rejectConfirmHeaderText": "¿Está seguro de que desea rechazar esta organización?",
|
36
|
-
"rejectConfirmText": "No puede deshacer esta acción",
|
37
|
-
"rejectedSuccessfully": "La organización fue rechazada con éxito",
|
38
|
-
"adminDetailsHeading": "Detalles del Administrador de la Organización",
|
39
|
-
"adminName": "Nombre",
|
40
|
-
"adminEmail": "Correo Electrónico",
|
41
|
-
"adminPhone": "Teléfono"
|
42
|
-
}
|
@@ -1,42 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"title": "Détails de l'Organisation",
|
3
|
-
"subTitle": "Voir les détails de l'organisation sélectionnée",
|
4
|
-
"deauthorise": "DÉSACTIVER",
|
5
|
-
"reActivate": "RÉACTIVER",
|
6
|
-
"approve": "APPROUVER",
|
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
|
-
"deauthoriseConfirmHeaderText": "Êtes-vous sûr de vouloir désactiver cette organisation ?",
|
20
|
-
"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
|
-
"activeStatus": "Actif",
|
22
|
-
"deauthorisedStatus": "Désactivé",
|
23
|
-
"pendingStatus": "En Attente",
|
24
|
-
"rejectedStatus": "Rejeté",
|
25
|
-
"remarks": "Remarques",
|
26
|
-
"deauthorisationSuccess": "Organisation désactivée avec succès !",
|
27
|
-
"reActivateConfirmHeaderText": "Êtes-vous sûr de vouloir réactiver cette organisation ?",
|
28
|
-
"reActivateConfirmText": "Note : tous les utilisateurs associés à l'organisation seront également réactivés.",
|
29
|
-
"reactivationSuccess": "Organisation réactivée avec succès !",
|
30
|
-
"ministerName": "Nom du Ministre",
|
31
|
-
"sectoralScope": "Portée Sectorielle",
|
32
|
-
"approveConfirmHeaderText": "Êtes-vous sûr de vouloir autoriser cette organisation ?",
|
33
|
-
"approveConfirmText": "Vous ne pouvez pas annuler cette action",
|
34
|
-
"approvedSuccessfully": "L'Organisation a été approuvée avec succès",
|
35
|
-
"rejectConfirmHeaderText": "Êtes-vous sûr de vouloir rejeter cette organisation ?",
|
36
|
-
"rejectConfirmText": "Vous ne pouvez pas annuler cette action",
|
37
|
-
"rejectedSuccessfully": "L'Organisation a été rejetée avec succès",
|
38
|
-
"adminDetailsHeading": "Détails de l'Administrateur de l'Organisation",
|
39
|
-
"adminName": "Nom",
|
40
|
-
"adminEmail": "E-mail",
|
41
|
-
"adminPhone": "Téléphone"
|
42
|
-
}
|