Remove my name from repo and fix some translations
All checks were successful
Deploy Spot / deploy (push) Successful in 40s

This commit is contained in:
2026-06-11 13:26:50 +02:00
parent 36a5900118
commit 9718713eb4
9 changed files with 199 additions and 153 deletions

View File

@@ -72,7 +72,7 @@ export default {
});
this.uppy.on('upload-error', (file, error, response) => {
const message = response?.body?.error || error?.message || this.lang.get('error');
const message = response?.body?.error || error?.message || this.lang.get('upload.error');
this.logs.push(message);
});
@@ -104,7 +104,7 @@ export default {
'longitude': position.coords.longitude,
'timestamp': Math.round(position.timestamp / 1000)
})
.then((asData) => {this.logs.push(this.lang.get('success'));})
.then((asData) => {this.logs.push(this.lang.get('upload.success', [this.lang.get('upload.position.new')]));})
.catch((sMsgId) => {this.logs.push(this.lang.get(sMsgId));});
},
(error) => {