updated welsh translations

This commit is contained in:
2023-05-23 10:38:03 +01:00
parent dc43d7f2b4
commit 275258562e
45 changed files with 677 additions and 7698 deletions
+12 -12
View File
@@ -422,7 +422,7 @@ export const downloadProgressFile = async (
const downloaded = await streamToBuffer(downloadedBlob.readableStreamBody);
console.log("Downloaded blob content:", downloaded.toString());
//console.log("Downloaded blob content:", downloaded.toString());
return JSON.parse(downloaded.toString());
};
@@ -578,17 +578,17 @@ export const getProgressBlobs = async (containerName, caseReference) => {
blobCount++;
}
console.log(
"this is the casefolder and blobcount:",
caseReference,
blobCount
);
// console.log(
// "this is the casefolder and blobcount:",
// caseReference,
// blobCount
// );
let blobObj = [];
for await (const blob of containerClient.listBlobsFlat({
prefix: caseReference + "/" + caseReference + "_appeal.json",
})) {
console.log("getProgressBlobs in here");
//console.log("getProgressBlobs in here");
blobObj.push({
"name": blob.name.split("/")[1],
"path": blob.name,
@@ -680,11 +680,11 @@ export const getRepslobs = async (containerName, caseReference) => {
blobCount++;
}
console.log(
"this is the casefolder and blobcount:",
caseReference,
blobCount
);
// console.log(
// "this is the casefolder and blobcount:",
// caseReference,
// blobCount
// );
let blobObj = [];
for await (const blob of containerClient.findBlobsByTags(
+3 -2
View File
@@ -1264,7 +1264,7 @@ export const uploadFiles = async (
for (let i = 0; i < files.length; i++) {
for (let j = 0; j < files[i].length; j++) {
console.log(files[i][j].name);
console.log("upload files:", files[i][j].name);
formData.append(files[i][j].name, files[i][j]);
}
}
@@ -1308,7 +1308,7 @@ export const uploadRepFiles = async (
for (let i = 0; i < files.length; i++) {
for (let j = 0; j < files[i].length; j++) {
console.log(files[i][j].name);
console.log("upload rep files:", files[i][j].name);
formData.append(files[i][j].name, files[i][j]);
}
}
@@ -1335,6 +1335,7 @@ export const uploadRepFiles = async (
export const getFilesFromBlob = (containerName, casefolderID) => {
console.log(
" get files from blob",
BASE_URL +
"/api/file/getbloblist?container=" +
containerName +