MOBILE-4368 lang: Fix missing lang files on gulp lang override

main
Pau Ferrer Ocaña 2023-11-06 11:07:18 +01:00
parent dafce79355
commit 6a6189ec78
8 changed files with 11 additions and 11 deletions

View File

@ -52,7 +52,7 @@ class OverrideLangTask {
plainid = exp.join('.'); plainid = exp.join('.');
} }
const component_slashes = component.replace('_', '/'); const component_slashes = component.replace(/_/g, '/');
switch (type) { switch (type) {
case 'core': case 'core':
@ -82,15 +82,15 @@ class OverrideLangTask {
} }
const paths = Object.keys(files); const paths = Object.keys(files);
gulp.src(paths, { allowEmpty: true }) gulp.src(paths)
.pipe(slash()) .pipe(slash())
.pipe(through(function(destFile) { .pipe(through(function (destFile) {
const oldContents = self.readFile(destFile); const oldContents = self.readFile(destFile);
destFile.contents = self.jsonFile(oldContents, files[destFile.path]); destFile.contents = self.jsonFile(oldContents, files[destFile.path]);
this.emit('data', destFile); this.emit('data', destFile);
})) }))
.pipe(gulp.dest((data) => data.base, { overwrite: true})) .pipe(gulp.dest((data) => data.base, { overwrite: true }))
.on('end', done); .on('end', done);
} }

View File

@ -1,3 +1,3 @@
{ {
"pluginname": "Feedback comments" "pluginname": "Feedback comments"
} }

View File

@ -1,3 +1,3 @@
{ {
"pluginname": "Annotate PDF" "pluginname": "Annotate PDF"
} }

View File

@ -1,3 +1,3 @@
{ {
"pluginname": "File feedback" "pluginname": "File feedback"
} }

View File

@ -1,3 +1,3 @@
{ {
"pluginname": "Submission comments" "pluginname": "Submission comments"
} }

View File

@ -1,3 +1,3 @@
{ {
"pluginname": "File submissions" "pluginname": "File submissions"
} }

View File

@ -1,4 +1,4 @@
{ {
"pluginname": "Online text submissions", "pluginname": "Online text submissions",
"wordlimitexceeded": "The word limit for this assignment is {{$a.limit}} words and you are attempting to submit {{$a.count}} words. Please review your submission and try again." "wordlimitexceeded": "The word limit for this assignment is {{$a.limit}} words and you are attempting to submit {{$a.count}} words. Please review your submission and try again."
} }

View File

@ -1,4 +1,4 @@
{ {
"dimensionnumber": "Criterion {{$a}}", "dimensionnumber": "Criterion {{$a}}",
"mustchooseone": "You have to select one of these items" "mustchooseone": "You have to select one of these items"
} }