Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MOSIP-36240, MOSIP-36238]: bug fixes #812

Merged
merged 1 commit into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pmp-reactjs-ui/public/i18n/ara.json
Original file line number Diff line number Diff line change
Expand Up @@ -696,6 +696,7 @@
"KER-PCM-015": "الشهادة الموقعة ذاتيًا غير مسموح بها كشريك.",
"KER-PCM-004": "تاريخ الشهادة غير صالح.",
"KER-KMS-013": "خطأ في تحليل الشهادة. تم تجاوز التجاوز، البايتات = 917",
"KER-KMS-015": "لن يُسمح بتحميل الشهادة لتحديث شهادة المجال الأخرى.",
"PMS_AUT_001": "لم يتم العثور على جهاز تسجيل رمز النوع الفرعي للجهاز المسجل في قائمة أنواع USB",
"PMS_PV_005": "معلمة إدخال غير صالحة - رمز الخطأ في بيانات السياسة",
"PMS_PRT_053": "هذه السياسة معلقة بالفعل للموافقة عليها مقابل معرف الشريك الخاص بك.",
Expand Down
1 change: 1 addition & 0 deletions pmp-reactjs-ui/public/i18n/eng.json
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,7 @@
"KER-PCM-015": "Self Signed Certificate not allowed as partner.",
"KER-PCM-004": "Certificate Date is not valid.",
"KER-KMS-013": "Certificate Parsing Error.signed overrun, bytes = 917",
"KER-KMS-015": "Upload of certificate will not be allowed to update other domain certificate.",
"PMS_AUT_001": "Reg Device Sub Type Code not found in the list of Reg Device Sub Types",
"PMS_PV_005": "Invalid input parameter - errorCode in policy data",
"PMS_PRT_053": "This policy is already pending for approval against your partner ID.",
Expand Down
1 change: 1 addition & 0 deletions pmp-reactjs-ui/public/i18n/fra.json
Original file line number Diff line number Diff line change
Expand Up @@ -696,6 +696,7 @@
"KER-PCM-015": "Certificat auto-signé non autorisé en tant que partenaire.",
"KER-PCM-004": "La date du certificat n'est pas valide.",
"KER-KMS-013": "Erreur d'analyse du certificat. dépassement de signature, octets = 917",
"KER-KMS-015": "Le téléchargement du certificat ne sera pas autorisé pour mettre à jour un autre certificat de domaine.",
"PMS_AUT_001": "Code de sous-type de périphérique Reg introuvable dans la liste des sous-types de périphérique Reg",
"PMS_PV_005": "Paramètre d'entrée non valide - errorCode dans les données de stratégie",
"PMS_PRT_053": "Cette politique est déjà en attente d'approbation par rapport à votre identifiant de partenaire.",
Expand Down
4 changes: 2 additions & 2 deletions pmp-reactjs-ui/src/pages/certificates/UploadCertificate.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ function UploadCertificate({ closePopup, popupData, request }) {
)}
{!uploading && fileName === '' && (
<div id='upload_certificate_card' className={`flex flex-col items-center justify-center w-full min-h-36 cursor-pointer`}>
<label htmlFor="fileInput" className="flex flex-col items-center w-full min-h-36 justify-center cursor-pointer">
<img src={fileUploadImg} alt="" className="mb-2 w-10 h-10" tabIndex="0" />
<label htmlFor="fileInput" tabIndex={0} onKeyPress={(e) => (e.key === 'Enter' || e.key === ' ') && document.getElementById('fileInput').click()} className="flex flex-col items-center w-full min-h-36 justify-center cursor-pointer">
<img src={fileUploadImg} alt="" className="mb-2 w-10 h-10"/>
<h5 className="text-charcoal-gray text-base font-normal">
{t('uploadCertificate.selectCertificate')}
</h5>
Expand Down
Loading