Skip to content

Commit

Permalink
feat: new blocking progress bar, fixes #18
Browse files Browse the repository at this point in the history
feat: change cloud icon to history, fixes #15
fix: action search items overlap, fixes #16
feat: show tooltips immediately
  • Loading branch information
Theaninova committed Nov 14, 2023
1 parent e19a57e commit ebf7d73
Show file tree
Hide file tree
Showing 27 changed files with 790 additions and 268 deletions.
2 changes: 2 additions & 0 deletions icons.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ const config: IconsConfig = {
"navigate_next",
"print",
"restore_from_trash",
"history",
"history_toggle_off",
],
codePoints: {
speed: "e9e4",
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@
"@sveltejs/vite-plugin-svelte": "^2.4.5",
"@tauri-apps/api": "^1.4.0",
"@tauri-apps/cli": "^1.4.0",
"@tiptap/core": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"@theaninova/prettier-config": "^1.0.0",
"@types/dom-view-transitions": "^1.0.1",
"@types/flexsearch": "^0.7.3",
Expand Down Expand Up @@ -84,4 +81,4 @@
"vitest": "^0.34.4"
},
"type": "module"
}
}
31 changes: 25 additions & 6 deletions src/i18n/de/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ const de = {
APPLY: "Anwenden",
SAVE: "Änderungen auf das Gerät schreiben",
},
sync: {
TITLE_READ: "Neueste Änderungen werden abgerufen",
TITLE_WRITE: "Änderungen werden gebrannt",
DISCLAIMER_WRITE:
"Das Brennen von Änderungen ist nur für Layouts und Einstellungen erforderlich wenn diese Neustarts überdauern sollen. Bei Akkorden passiert das brennen automatisch beim anwenden.",
},
backup: {
TITLE: "Sicherungskopie",
DISCLAIMER:
Expand All @@ -28,9 +34,13 @@ const de = {
},
},
share: {
TITLE: "Teilen",
URL_COPIED: "Teilbare URL kopiert!",
EXTRA_DOWNLOAD: "Als Datei herunterladen",
},
print: {
TITLE: "Drucken",
},
profile: {
TITLE: "Profil",
LANGUAGE: "Sprache",
Expand Down Expand Up @@ -67,12 +77,21 @@ const de = {
DOWNLOAD_APP: "Desktop-app herunterladen",
},
changes: {
TITLE: "Änderungen anwenden",
CHORD_ADD: "{0} Akkord{{|e}} hinzugefügt",
CHORD_EDIT: "{0} Akkord{{|e}} bearbeitet",
CHORD_DELETE: "{0} Akkord{{|e}} entfernt",
SETTING_CHANGE: "{0} Einstellung{{|en}} geändert",
LAYOUT_CHANGE: "{0} Layout-belegung{{|en}} geändert",
TITLE: "Änderungen importieren",
ALL_CHANGES: "Alle Änderungen",
layout: {
TITLE: "{0} veränderte Belegung{{:|en}}",
LAYER: "{changes} Belegung{{changes:|en}} in Ebene {layer} ändern",
},
settings: {
TITLE: "{0} Einstellung{{|en}} anpassen",
},
chords: {
TITLE: "{0} Akkorde",
NEW_CHORDS: "{0} neue Akkord{{|e}} hinzufügen",
CHANGED_CHORDS: "{0} Akkord{{|e}} ersetzen",
DELETED_CHORDS: "{0} Akkord{{|e}} zum löschen markieren",
},
},
configure: {
chords: {
Expand Down
33 changes: 26 additions & 7 deletions src/i18n/en/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@ const en = {
UNDO: "Undo (hold <kbd class='icon'>shift</kbd> to undo all changes)",
REDO: "Redo",
APPLY: "Apply",
SAVE: "Write changes to your device",
SAVE: "Burn changes to your device",
},
backup: {
TITLE: "Local Backup",
DISCLAIMER: "Backups remain on your computer and are never shared with us or uploaded to our servers.",
DOWNLOAD: "Download Backup",
RESTORE: "Restore",
},
sync: {
TITLE_READ: "Reading latest changes",
TITLE_WRITE: "Burning changes to device",
DISCLAIMER_WRITE:
"Burning is only necessary if you want your layout or settings to persist across reboots. Chords always persist automatically on apply.",
},
modal: {
CLOSE: "Close",
},
Expand All @@ -27,9 +33,13 @@ const en = {
},
},
share: {
TITLE: "Share",
URL_COPIED: "Sharable URL copied!",
EXTRA_DOWNLOAD: "Download as file",
},
print: {
TITLE: "Print",
},
profile: {
TITLE: "Profile",
LANGUAGE: "Language",
Expand Down Expand Up @@ -65,12 +75,21 @@ const en = {
DOWNLOAD_APP: "Download the desktop app",
},
changes: {
TITLE: "Apply changes",
CHORD_ADD: "{0} chord{{|s}} added",
CHORD_EDIT: "{0} chord{{|s}} edited",
CHORD_DELETE: "{0} chord{{|s}} deleted",
SETTING_CHANGE: "{0} setting{{|s}} changed",
LAYOUT_CHANGE: "{0} layout key{{|s}} changed",
TITLE: "Import changes",
ALL_CHANGES: "All changes",
layout: {
TITLE: "{0} layout change{{|s}}",
LAYER: "Update {changes} key{{changes:|s}} in layer {layer}",
},
settings: {
TITLE: "Update {0} setting{{|s}}",
},
chords: {
TITLE: "{0} chords",
NEW_CHORDS: "Add {0} new chord{{|s}}",
CHANGED_CHORDS: "Replace {0} chord{{|s}}",
DELETED_CHORDS: "Mark {0} chord{{|s}} for deletion",
},
},
configure: {
chords: {
Expand Down
Loading

0 comments on commit ebf7d73

Please sign in to comment.