Skip to content

Commit 1f7cf0f

Browse files
committed
rewording III
1 parent af384c6 commit 1f7cf0f

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

services/static-webserver/client/source/class/osparc/info/MergedLarge.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ qx.Class.define("osparc.info.MergedLarge", {
415415
qx.event.message.Bus.getInstance().dispatchByName("updateStudy", studyData);
416416
})
417417
.catch(err => {
418-
const msg = this.tr("There was an issue while updating the information.");
418+
const msg = this.tr("An issue occurred while updating the information.");
419419
osparc.FlashMessenger.logError(err, msg);
420420
});
421421
}

services/static-webserver/client/source/class/osparc/info/ServiceLarge.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ qx.Class.define("osparc.info.ServiceLarge", {
575575
this.fireDataEvent("updateService", this.getService());
576576
})
577577
.catch(err => {
578-
const msg = this.tr("There was an issue while updating the information.");
578+
const msg = this.tr("An issue occurred while updating the information.");
579579
osparc.FlashMessenger.logError(err, msg);
580580
})
581581
.finally(() => this.setEnabled(true));

services/static-webserver/client/source/class/osparc/info/StudyLarge.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ qx.Class.define("osparc.info.StudyLarge", {
316316
}
317317
})
318318
.catch(err => {
319-
const msg = this.tr("There was an issue while updating the information.");
319+
const msg = this.tr("An issue occurred while updating the information.");
320320
osparc.FlashMessenger.logError(err, msg);
321321
});
322322
}

services/static-webserver/client/source/class/osparc/metadata/ServicesInStudyUpdate.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ qx.Class.define("osparc.metadata.ServicesInStudyUpdate", {
3434
versionLabel.set({
3535
textColor: "text-on-warning", // because the background is always yellow
3636
backgroundColor: osparc.service.StatusUI.getColor("deprecated"),
37-
toolTipText: qx.locale.Manager.tr("Service deprecated, please update")
37+
toolTipText: qx.locale.Manager.tr("This service is deprecated. Please update.")
3838
});
3939
} else if (isRetired) {
4040
versionLabel.set({
4141
textColor: "text-on-warning", // because the background is always red
4242
backgroundColor: osparc.service.StatusUI.getColor("retired"),
43-
toolTipText: qx.locale.Manager.tr("Service retired, please update")
43+
toolTipText: qx.locale.Manager.tr("This service has been retired. Please update.")
4444
});
4545
}
4646
}
@@ -66,16 +66,16 @@ qx.Class.define("osparc.metadata.ServicesInStudyUpdate", {
6666
.then(resp => {
6767
const services = resp["services"];
6868
if (osparc.study.Utils.getCantExecuteServices(services).length) {
69-
msg += this.tr("Some services are not accessible. Please contact service owner:");
69+
msg += this.tr("Some services are inaccessible. Please contact the service owner:");
7070
msg += "<br><br>";
7171
}
7272
if (osparc.study.Utils.anyServiceRetired(services)) {
73-
msg += this.tr("Services marked in red are retired: you cannot use them anymore.");
73+
msg += this.tr("Services marked in red are retired and can no longer be used.");
7474
if (canIWrite) {
7575
msg += "<br>" + this.tr("If the Update button is disabled, they might require manual intervention to be updated:");
7676
msg += "<br>- " + this.tr("Open the study");
7777
msg += "<br>- " + this.tr("Click on the retired service, download the data");
78-
msg += "<br>- " + this.tr("Upload the data to an updated version");
78+
msg += "<br>- " + this.tr("Upload the data to a newer version");
7979
}
8080
msg += "<br><br>";
8181
}
@@ -91,7 +91,7 @@ qx.Class.define("osparc.metadata.ServicesInStudyUpdate", {
9191
msg += this.tr("All services are up to date to their latest compatible version.");
9292
msg += "<br>";
9393
} else if (canIWrite) {
94-
msg += this.tr("Use the Update buttons to bring the services to their latest compatible version.");
94+
msg += this.tr("Click Update to upgrade services to the latest compatible version.");
9595
msg += "<br>";
9696
} else {
9797
msg += this.tr("Some services are not up to date.");

services/static-webserver/client/source/class/osparc/store/Services.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ qx.Class.define("osparc.store.Services", {
268268
},
269269

270270
getInaccessibleServicesMsg: function(inaccessibleServices, workbench) {
271-
let msg = qx.locale.Manager.tr("Some services are not accessible:<br>");
271+
let msg = qx.locale.Manager.tr("Some services are inaccessible:<br>");
272272
Object.values(workbench).forEach(node => {
273273
const inaccessibleService = inaccessibleServices.find(srv => srv.key === node.key && srv.version === node.version);
274274
if (inaccessibleService) {

services/static-webserver/client/source/class/osparc/study/BillingSettings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ qx.Class.define("osparc.study.BillingSettings", {
192192
if (myWallets.find(wllt => wllt === wallet)) {
193193
// It's my wallet
194194
this._createChildControlImpl("debt-explanation").set({
195-
value: this.tr("Top up the Credit Account:<br>Purchase additional credits to bring the Credit Account balance back to a positive value.")
195+
value: this.tr("Top up the Credit Account:<br>Purchase additional credits to restore a positive balance.")
196196
});
197197
const buyCreditsButton = this._createChildControlImpl("buy-credits-button");
198198
buyCreditsButton.addListener("execute", () => this.__openBuyCreditsWindow(), this);

services/static-webserver/client/source/translation/en.po

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ msgid "Unable to fetch Services"
14351435
msgstr ""
14361436

14371437
#: osparc/store/Services.js
1438-
msgid "Some services are not accessible:<br>"
1438+
msgid "Some services are inaccessible:<br>"
14391439
msgstr ""
14401440

14411441
#: osparc/dashboard/StudyBrowser.js
@@ -2063,7 +2063,7 @@ msgid "Edit Description"
20632063
msgstr ""
20642064

20652065
#: osparc/info/MergedLarge.js
2066-
msgid "There was an issue while updating the information."
2066+
msgid "An issue occurred while updating the information."
20672067
msgstr ""
20682068

20692069
#: osparc/info/StudyLarge.js
@@ -2139,7 +2139,7 @@ msgid "You don't have access to the last used Credit Account"
21392139
msgstr ""
21402140

21412141
#: osparc/study/BillingSettings.js
2142-
msgid "Top up the Credit Account:<br>Purchase additional credits to bring the Credit Account balance back to a positive value."
2142+
msgid "Top up the Credit Account:<br>Purchase additional credits to restore a positive balance."
21432143
msgstr ""
21442144

21452145
#: osparc/study/BillingSettings.js
@@ -2279,19 +2279,19 @@ msgid "New Tag"
22792279
msgstr ""
22802280

22812281
#: osparc/metadata/ServicesInStudyUpdate.js
2282-
msgid "Service deprecated, please update"
2282+
msgid "This service is deprecated. Please update."
22832283
msgstr ""
22842284

22852285
#: osparc/metadata/ServicesInStudyUpdate.js
2286-
msgid "Service retired, please update"
2286+
msgid "This service has been retired. Please update."
22872287
msgstr ""
22882288

22892289
#: osparc/metadata/ServicesInStudyUpdate.js
2290-
msgid "Some services are not accessible. Please contact service owner:"
2290+
msgid "Some services are inaccessible. Please contact the service owner:"
22912291
msgstr ""
22922292

22932293
#: osparc/metadata/ServicesInStudyUpdate.js
2294-
msgid "Services marked in red are retired: you cannot use them anymore."
2294+
msgid "Services marked in red are retired and can no longer be used."
22952295
msgstr ""
22962296

22972297
#: osparc/metadata/ServicesInStudyUpdate.js
@@ -2307,7 +2307,7 @@ msgid "Click on the retired service, download the data"
23072307
msgstr ""
23082308

23092309
#: osparc/metadata/ServicesInStudyUpdate.js
2310-
msgid "Upload the data to an updated version"
2310+
msgid "Upload the data to a newer version"
23112311
msgstr ""
23122312

23132313
#: osparc/metadata/ServicesInStudyUpdate.js
@@ -2323,7 +2323,7 @@ msgid "All services are up to date to their latest compatible version."
23232323
msgstr ""
23242324

23252325
#: osparc/metadata/ServicesInStudyUpdate.js
2326-
msgid "Use the Update buttons to bring the services to their latest compatible version."
2326+
msgid "Click Update to upgrade services to the latest compatible version."
23272327
msgstr ""
23282328

23292329
#: osparc/metadata/ServicesInStudyUpdate.js

0 commit comments

Comments
 (0)