feat(ui): enhance user experience with new features including QR code display, improved toast messages, and localized strings for various components
Some checks failed
CI / test-backend (push) Successful in 3s
CI / build-frontend (push) Successful in 1m48s
CI / test-backend (pull_request) Successful in 18s
CI / test-lang (push) Successful in 2m5s
Build and Publish Docker Image / build (pull_request) Has been skipped
CI / test-lang (pull_request) Successful in 1m14s
OSV-Scanner PR Scan / scan-pr (pull_request) Successful in 29s
CI / build-frontend (pull_request) Successful in 9m43s
CI / lint (push) Successful in 9m53s
CI / lint (pull_request) Successful in 9m49s
Build Test / Build and Test (pull_request) Successful in 12m57s
Tests / test (push) Successful in 14m2s
Benchmarks / benchmark (push) Successful in 14m29s
Build and Publish Docker Image / build-dev (pull_request) Successful in 19m25s
Tests / test (pull_request) Failing after 23m6s
Benchmarks / benchmark (pull_request) Successful in 29m13s
Build Test / Build and Test (push) Successful in 45m58s

This commit is contained in:
2026-01-05 19:22:25 -06:00
parent 33cbe07750
commit 7d7cd7d487
41 changed files with 2481 additions and 526 deletions

View File

@@ -217,7 +217,7 @@ export default {
});
} catch (e) {
console.error("Failed to load audio:", e);
ToastUtils.error("Failed to load audio for editing");
ToastUtils.error(this.$t("call.failed_load_audio_edit"));
this.$emit("close");
} finally {
this.loading = false;
@@ -418,12 +418,12 @@ export default {
headers: { "Content-Type": "multipart/form-data" },
});
ToastUtils.success("Ringtone saved successfully");
ToastUtils.success(this.$t("call.ringtone_saved"));
this.$emit("saved");
this.$emit("close");
} catch (e) {
console.error("Failed to save ringtone:", e);
ToastUtils.error("Failed to save edited ringtone");
ToastUtils.error(this.$t("call.failed_save_ringtone"));
} finally {
this.saving = false;
}