Tonya
e4d8bb2ada
chore: use example.com for example
...
better safe than sorry
2025-12-20 21:50:44 +00:00
Katos
3becf046e6
Merge pull request #1147 from sysadminsmedia/katos/docs-variable
...
Update max file upload environment variable
2025-12-20 16:01:04 +00:00
Katos
a21b3257d4
Update max file upload environment variable
2025-12-20 15:57:14 +00:00
Robert Eggl
5f9ab577bb
fix: request camera permission in ScannerModal ( #1113 )
...
* feat: request camera permission in ScannerModal
* chore: simplify source code
2025-12-19 21:47:37 +00:00
Robert Eggl
0a969bb64d
fix(sidebar): prevent dropdown menu layout shift on hover ( #1116 )
2025-12-19 21:38:06 +00:00
Sarun Nuntaviriyakul
2d1d3d927b
Update log level options in configuration documentation ( #1127 )
2025-12-12 13:33:12 -05:00
Matthew Kilgore
540028a22e
fix: broken docker.io attestation
2025-12-11 22:24:11 -05:00
Nelson Cabete
14b0d51894
Update docs to reference disable_https instead of disableSsl on Storage Configuration page ( #1124 )
...
Co-authored-by: Nelson Cabete <me@ncabete.com >
2025-12-09 20:56:05 -05:00
Matt
4334f926c0
Fix postgres nullable password migration to be at end
2025-12-09 14:44:53 -05:00
Robert Eggl
1088972ff0
docs: add missing barcode spider env var ( #1114 )
2025-12-08 20:17:45 -05:00
Matthew Kilgore
55e247ac71
Fix missing postgres OIDC migration
2025-12-08 20:10:36 -05:00
Matthew Kilgore
05a2700718
Merge remote-tracking branch 'origin/main'
2025-12-06 18:14:12 -05:00
Matthew Kilgore
06c11cdcd5
Ensure options are up to date in docs
2025-12-06 18:14:06 -05:00
Logan Miller
cc66330a74
feat: Add item templates feature ( #435 ) ( #1099 )
...
* feat: Add item templates feature (#435 )
Add ability to create and manage item templates for quick item creation.
Templates store default values and custom fields that can be applied
when creating new items.
Backend changes:
- New ItemTemplate and TemplateField Ent schemas
- Template CRUD API endpoints
- Create item from template endpoint
Frontend changes:
- Templates management page with create/edit/delete
- Template selector in item creation modal
- 'Use as Template' action on item detail page
- Templates link in navigation menu
* refactor: Improve template item creation with a single query
- Add `CreateFromTemplate` method to ItemsRepository that creates items with all template data (including custom fields) in a single atomic transaction, replacing the previous two-phase create-then-update pattern
- Fix `GetOne` to require group ID parameter so templates can only be accessed by users in the owning group (security fix)
- Simplify `HandleItemTemplatesCreateItem` handler using the new transactional method
* Refactor item template types and formatting
Updated type annotations in CreateModal.vue to use specific ItemTemplate types instead of 'any'. Improved code formatting for template fields and manufacturer display. Also refactored warranty field logic in item details page for better readability. This resolves the linter issues as well that the bot in github keeps nagging at.
* Add 'id' property to template fields
Introduces an 'id' property to each field object in CreateModal.vue and item details page to support unique identification of fields. This change prepares the codebase for future enhancements that may require field-level identification.
* Removed redundant SQL migrations.
Removed redundant SQL migrations per @tankerkiller125's findings.
* Updates to PR #1099 .
Regarding pull #1099 . Fixed an issue causing some conflict with GUIDs and old rows in the migration files.
* Add new fields and location edge to ItemTemplate
Addresses recommendations from @tonyaellie.
* Relocated add template button
* Added more default fields to the template
* Added translation of all strings (think so?)
* Make oval buttons round
* Added duplicate button to the template (this required a rewrite of the migration files, I made sure only 1 exists per DB type)
* Added a Save as template button to a item detail view (this creates a template with all the current data of that item)
* Changed all occurrences of space to gap and flex where applicable.
* Made template selection persistent after item created.
* Collapsible template info on creation view.
* Updates to translation and fix for labels/locations
I also added a test in here because I keep missing small function tests. That should prevent that from happening again.
* Linted
* Bring up to date with main, fix some lint/type check issues
* In theory fix playwright tests
* Fix defaults being unable to be nullable/empty (and thus limiting flexibility)
* Last few fixes I think
* Forgot to fix the golang tests
---------
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
2025-12-06 16:21:43 -05:00
Matthew Kilgore
3671ba2ba1
Fix merge digest for other docker images
2025-12-06 16:00:31 -05:00
Matthew Kilgore
8898dd03f7
Try to fix merge digest
2025-12-06 15:33:16 -05:00
Matthew Kilgore
bd8708ce38
Try max provenance?
2025-12-06 15:02:04 -05:00
Matthew Kilgore
a0589b7629
Use our own builkit and binfmt clones
2025-12-06 14:49:26 -05:00
Matthew Kilgore
0f4a686041
Forgot syft needs
2025-12-06 14:28:20 -05:00
Matthew Kilgore
848b444aef
Fix postgres migration, and attempt new provenance publishing
2025-12-06 14:22:46 -05:00
Matthew Kilgore
e6e6056897
Update dependencies
2025-12-06 10:23:23 -05:00
Jeff Rescignano
f36756d98e
Add support for SSO / OpenID Connect (OIDC) ( #996 )
...
* ent re-generation
* add oidc integration
* document oidc integration
* go fmt
* address backend linter findings
* run prettier on index.vue
* State cookie domain can mismatch when Hostname override is used (breaks CSRF check). Add SameSite.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Delete state cookie with matching domain and MaxAge; add SameSite.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Fix endpoint path in comments and error to include /api/v1.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Also use request context when verifying the ID token.
* Do not return raw auth errors to clients (user-enumeration risk).
* consistently set cookie the same way across function
* remove baseURL after declaration
* only enable OIDC routes if OIDC is enabled
* swagger doc for failure
* Only block when provider=local; move the check after parsing provider
* fix extended session comment
* reduce pii logging
* futher reduce pii logging
* remove unused DiscoveryDocument
* remove unused offline_access from default oidc scopes
* remove offline access from AuthCodeURL
* support host from X-Forwarded-Host
* set sane default claim names if unset
* error strings should not be capitalized
* Revert "run prettier on index.vue"
This reverts commit aa22330a23 .
* Add timeout to provider discovery
* Split scopes robustly
* refactor hostname calculation
* address frontend prettier findings
* add property oidc on type APISummary
* LoginOIDC: Normalize inputs, only create if not found
* add oidc email verification
* oidc handleCallback: clear state cookie before each return
* add support for oidc nonce parameter
* Harden first-login race: handle concurrent creates gracefully and fix log key.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* support email verified claim as bool or string
* fail fast on empty email
* PKCE verifier
* fix: add timing delay to attachment test to resolve CI race condition
The attachment test was failing intermittently in CI due to a race condition
between attachment creation and retrieval. Adding a small 100ms delay after
attachment creation ensures the file system and database operations complete
before the test attempts to verify the attachment exists.
* Revert "fix: add timing delay to attachment test to resolve CI race condition"
This reverts commit 4aa8b2a0d829753e8d2dd1ba76f4b1e04e28c45e.
* oidc error state, use ref
* rename oidc.force to oidc.authRedirect
* remove hardcoded oidc error timeout
* feat: sub/iss based identity matching and userinfo endpoint collection
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
2025-12-06 10:16:05 -05:00
Matthew Kilgore
bfc5ffa76b
Add gitattributes to maybe cut down on terrible Github review pages
2025-11-29 23:16:17 -05:00
Matthew Kilgore
1625354a70
Add gitlab CI/CD runner file
2025-11-29 17:02:59 -05:00
Matthew Kilgore
d1016845a9
Add gitlab CI/CD runner file
2025-11-29 17:02:02 -05:00
Matthew Kilgore
54ce340ac4
Add gitlab CI/CD runner file
2025-11-29 16:58:53 -05:00
dependabot[bot]
8c04ad7fe8
Bump the npm_and_yarn group across 2 directories with 1 update ( #1097 )
...
Bumps the npm_and_yarn group with 1 update in the / directory: [node-forge](https://github.com/digitalbazaar/forge ).
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [node-forge](https://github.com/digitalbazaar/forge ).
Updates `node-forge` from 1.3.1 to 1.3.2
- [Changelog](https://github.com/digitalbazaar/forge/blob/main/CHANGELOG.md )
- [Commits](https://github.com/digitalbazaar/forge/compare/v1.3.1...v1.3.2 )
Updates `node-forge` from 1.3.1 to 1.3.2
- [Changelog](https://github.com/digitalbazaar/forge/blob/main/CHANGELOG.md )
- [Commits](https://github.com/digitalbazaar/forge/compare/v1.3.1...v1.3.2 )
---
updated-dependencies:
- dependency-name: node-forge
dependency-version: 1.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: node-forge
dependency-version: 1.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-27 11:18:10 -05:00
Tonya
78d05bb155
disable sort (via table) on item page ( #1087 )
...
* fix: disable sort on item page
* fix: type issue
2025-11-24 01:34:37 +00:00
dependabot[bot]
3a648aa279
Bump golang.org/x/crypto ( #1088 )
...
Bumps the go_modules group with 1 update in the /backend directory: [golang.org/x/crypto](https://github.com/golang/crypto ).
Updates `golang.org/x/crypto` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/crypto/compare/v0.44.0...v0.45.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/crypto
dependency-version: 0.45.0
dependency-type: direct:production
dependency-group: go_modules
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-20 07:09:27 -05:00
Alan Mooiman
35a83c29af
Fix auto-zoom on iOS devices ( #1029 )
...
* Remove text-sm from inputs
* Update frontend/components/ui/command/CommandInput.vue
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Update frontend/components/ui/tags-input/TagsInputInput.vue
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Update frontend/components/ui/select/SelectTrigger.vue
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Respond to coderrabitai
* Another coderrabbit comment
* More coderrabbit responses
* Fix formatting
* Apply suggestion from @coderabbitai[bot]
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Update frontend/components/ui/input/Input.vue
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Correct Coderrabbit's messy suggestion that I was too trigger-happy on
* Accessible changes aOnly use accessible font sizing on mobile
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-11-18 22:40:21 +00:00
dependabot[bot]
6697738342
Bump glob in the npm_and_yarn group across 1 directory ( #1085 )
...
Bumps the npm_and_yarn group with 1 update in the / directory: [glob](https://github.com/isaacs/node-glob ).
Updates `glob` from 10.4.5 to 10.5.0
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/node-glob/compare/v10.4.5...v10.5.0 )
---
updated-dependencies:
- dependency-name: glob
dependency-version: 10.5.0
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 09:36:30 -05:00
Matthew Kilgore
a379e7c1ab
Fix goreleaser
2025-11-16 17:11:10 -05:00
Matthew Kilgore
e501d769da
Upgrade frontend and doc dependencies
2025-11-16 16:51:16 -05:00
Matthew Kilgore
7d0e05dc5d
Update go dependencies
2025-11-16 16:48:38 -05:00
Matt
81233e2999
Attempt to revert NodeJS so ARM 32bit builds work again ( #1081 )
...
* Attempt to revert NodeJS so ARM 32bit builds work again
* Rollback even further
2025-11-16 16:05:15 -05:00
tonyaellie
415c3238ae
fix: android image capture for item create
2025-11-01 15:25:42 +00:00
Tonya
b3153cc971
Revert "Set single connection pool for sqlite3 ( #1039 )" ( #1061 )
...
This reverts commit 8a90b9c133 .
2025-10-22 17:32:00 +00:00
Tonya
0801df9961
fix: use tx for duplicate ( #1059 )
2025-10-21 20:58:06 +01:00
Benjamin Wolff
2bdd085289
Item search query parameter modernisation ( #1040 )
...
* await labels and locations properly
* update query params with every search
* don't persist default settings in query params
* conceptualize optional parameters
* add run script for development
* lint
* consider typescript
* remove run.sh
* capitalize QueryParamValue
* make query parameter updates predictable
This reverts commit 5c0c48cea5 .
* capitalize typename again
---------
Co-authored-by: Benji <benji@DG-SM-7059.local >
Co-authored-by: Benji <benji@mac.home.internal >
Co-authored-by: Benji <benji@dg-sm-7059.home.internal >
2025-10-21 19:40:46 +01:00
zebrapurring
c30cac4489
chore: update icon for button to duplicate items ( #1050 )
...
Co-authored-by: zebrapurring <>
2025-10-21 17:20:35 +00:00
Copilot
397a1c6f3e
Fix: Return error to UI when attachment upload fails due to storage misconfiguration ( #1045 )
...
* Initial plan
* Fix attachment upload error handling to return errors to UI
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
* Final verification: All tests pass and code builds successfully
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
2025-10-11 08:55:15 -04:00
Copilot
05a392346f
Fix item deletion to properly clean up attachment files from storage ( #1046 )
...
* Initial plan
* Fix item deletion to properly clean up attachment files
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
2025-10-11 08:55:02 -04:00
Tonya
28c3e102a2
feat: add a markdown preview for description and notes ( #1043 )
...
* feat: add a markdown preview for description and notes
* feat: add char count for md
2025-10-10 12:37:57 +00:00
zebrapurring
116e39531b
Fix failing tests ( #1009 )
...
* chore: ignore all .data directories
* fix: date locale for unit tests
* test: disable parallelism to prevent database locks
* chore: fix lint errors
* chore: remove unused function
---------
Co-authored-by: zebrapurring <>
Co-authored-by: Tonya <tonya@tokia.dev >
2025-10-09 11:51:51 +00:00
rienkim
8a90b9c133
Set single connection pool for sqlite3 ( #1039 )
2025-10-08 14:58:29 -04:00
rienkim
ef52009f57
Feat/Added label maker custom font ( #1038 )
...
* Add label maker font config
* Add document for label maker font config
* Add test for custom font
* Fix custom font setup documentation
- Fallback font is gofont which don't support CJK characters
* Fix golangci-lint error
* Update custom-font-setup.md
* Fix typo
2025-10-08 14:49:22 -04:00
dependabot[bot]
76154263e0
Bump the npm_and_yarn group across 2 directories with 1 update ( #1032 )
...
Bumps the npm_and_yarn group with 1 update in the / directory: [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt ).
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt ).
Updates `nuxt` from 4.0.3 to 4.1.0
- [Release notes](https://github.com/nuxt/nuxt/releases )
- [Commits](https://github.com/nuxt/nuxt/commits/v4.1.0/packages/nuxt )
Updates `nuxt` from 4.0.3 to 4.1.0
- [Release notes](https://github.com/nuxt/nuxt/releases )
- [Commits](https://github.com/nuxt/nuxt/commits/v4.1.0/packages/nuxt )
---
updated-dependencies:
- dependency-name: nuxt
dependency-version: 4.1.0
dependency-type: direct:production
dependency-group: npm_and_yarn
- dependency-name: nuxt
dependency-version: 4.1.0
dependency-type: direct:development
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-30 20:20:18 -04:00
Matthew Kilgore
108194e7fd
Merge remote-tracking branch 'origin/main'
2025-09-29 19:21:19 -04:00
Matthew Kilgore
bf845ae0f7
Update bounty page
2025-09-29 19:21:05 -04:00
dependabot[bot]
9be6a8c888
Bump the npm_and_yarn group across 2 directories with 1 update ( #1001 )
...
Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ).
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ).
Updates `vite` from 5.4.18 to 5.4.20
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.20/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.20/packages/vite )
Updates `vite` from 7.1.3 to 7.1.5
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.20/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.20/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 5.4.20
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: vite
dependency-version: 7.1.5
dependency-type: direct:production
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 12:07:33 -04:00
Alan Mooiman
38a987676e
Fix frontend CI ( #1028 )
2025-09-29 08:18:43 -04:00
Matthew Kilgore
1f746efe27
Hide try it again (other issues)
2025-09-26 21:58:17 -04:00
Matthew Kilgore
d57bf8834b
Fix CSP header
2025-09-26 21:45:57 -04:00
Matthew Kilgore
cb2c58c3f4
Merge remote-tracking branch 'origin/main'
2025-09-26 21:34:45 -04:00
Matthew Kilgore
7b3cf0453e
Support TryIt Function in API Docs
2025-09-26 21:34:34 -04:00
Matt
825e72bceb
Add funding information for contributors
2025-09-24 20:03:58 -04:00
Matt
8547fb9bb3
Add database type selection to bug report template
...
Added a dropdown for selecting the database type in the bug report template.
2025-09-24 11:28:11 -04:00
Tonya
f66624774e
Change Item Card to use object contain by default for images ( #1020 )
...
* feat: add legacy image fit preference and adjustable image display in card component
* feat: add blurred bg image when object contain
* fix: add alt text for image and improve objectContain
2025-09-24 16:09:15 +01:00
Guy Taggar
33ec0c4aff
Fix typo ( #1019 )
...
* Fix typo
* Change to plural
2025-09-24 09:48:44 -04:00
Tonya
6cd9e2779f
Use Tanstack table for Selectable Table, quick actions ( #998 )
...
* feat: implement example of data table
* feat: load item data into table
* chore: begin switching dialogs
* feat: implement old dialog for controlling headers and page size
* feat: get table into relatively usable state
* feat: enhance dropdown actions for multi-selection and CSV download
* feat: enhance table cell and dropdown button styles for better usability
* feat: json download for table
* feat: add expanded row component for item details in data table
* chore: add translation support
* feat: restore table on home page
* fix: oops need ids
* feat: move card view to use tanstack to allow for pagination
* feat: switch the items search to use ItemViewSelectable
* fix: update pagination handling and improve button click logic
* feat: improve selectable table
* feat: add indeterminate to checkbox
* feat: overhaul maintenance dialog to use new system and add maintenance options to table
* feat: add label ids and location id to item patch api
* feat: change location and labels in table view
* feat: add quick actions preference and enable toggle in table settings
* fix: lint
* fix: remove sized 1 pages
* fix: attempt to fix type error
* fix: various issues
* fix: remove
* fix: refactor item fetching logic to use useAsyncData for improved reactivity and improve use confirm
* fix: sort backend issues
* fix: enhance CSV export functionality by escaping fields to prevent formula injection
* fix: put aria sort on th not button
* chore: update api types
2025-09-24 02:37:38 +01:00
Matthew Kilgore
a5d63ac4e1
In theory SLSA provenience for binary builds
2025-09-23 21:05:22 -04:00
Matt
ba45203ea3
beautify the readme a bit ( #1014 )
...
* beautify the readme a bit
* Revert CSS updates, Github filters them out
* Enhance README with Lemmy badge and description update
2025-09-23 13:20:50 -04:00
Matt
609b7a606b
Generate OpenAPI 3 schemas from the swagger 2.0 generation ( #1017 )
...
* Generate OpenAPI 3 schemas from the swagger 2.0 generation
* Update API description URL in index.md
2025-09-23 12:14:37 -04:00
Katos
b56505452f
Merge pull request #1006 from sysadminsmedia/update-currencies
...
Update currencies.json
2025-09-14 15:54:48 +01:00
katosdev
118bce4441
chore: update currencies.json
2025-09-14 14:52:41 +00:00
Katos
b535cdeb96
Refactor update-currencies workflow with enhancements
...
Update currencies workflow to fix errors and introduce improvements
2025-09-14 15:52:17 +01:00
Katos
3b0e986f01
Refactor update-currencies workflow file
2025-09-13 18:57:10 +01:00
Choong Jun Jin
8f8dbf4a3a
Fea: add decimal support to currency system with ISO 4217 data integration ( #976 )
...
* feat: add decimal support to currency system with ISO 4217 data integration
* Harden currency formatting: add decimal bounds, input validation, and robust error handling
* Fixed issues raised by coderrabitai
* Fixed linting issue
2025-09-13 11:51:54 -04:00
Weblate
3183b38114
Translated using Weblate (French)
...
Currently translated at 100.0% (518 of 518 strings)
Translated using Weblate (French)
Currently translated at 100.0% (518 of 518 strings)
Translated using Weblate (French)
Currently translated at 100.0% (518 of 518 strings)
Translated using Weblate (French)
Currently translated at 100.0% (518 of 518 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (518 of 518 strings)
Translated using Weblate (Romanian)
Currently translated at 60.1% (311 of 517 strings)
Translated using Weblate (Romanian)
Currently translated at 60.1% (311 of 517 strings)
Translated using Weblate (Romanian)
Currently translated at 60.1% (311 of 517 strings)
Translated using Weblate (Romanian)
Currently translated at 60.1% (311 of 517 strings)
Translated using Weblate (Polish)
Currently translated at 97.8% (506 of 517 strings)
Translated using Weblate (Italian)
Currently translated at 82.5% (427 of 517 strings)
Translated using Weblate (Italian)
Currently translated at 82.5% (427 of 517 strings)
Translated using Weblate (German)
Currently translated at 99.8% (516 of 517 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (517 of 517 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (517 of 517 strings)
Translated using Weblate (German)
Currently translated at 98.4% (509 of 517 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (517 of 517 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (517 of 517 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (517 of 517 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (506 of 506 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (506 of 506 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: Erwin van Londen <translate.sysadminsm.treachery437@passmail.net >
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Philipp Walter <philipp.walter@scodex.de >
Co-authored-by: Saverio Salatino <saverio.salatino@gmail.com >
Co-authored-by: Supertriton <tristan.marie@laposte.net >
Co-authored-by: The Frog <frog@blackbox.net >
Co-authored-by: Weblate <noreply-mt-weblate@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: vizu <bogdan.vizureanu@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ro/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-09-08 09:42:46 +00:00
confiks
0408b1c03b
Use CatmullRom instead of ApproxBiLinear for thumbnail generation ( #964 )
2025-09-05 11:19:46 -04:00
Copilot
a2e108eac4
Make attachment storage paths relative in database with cross-platform support ( #967 )
2025-09-05 11:12:51 -04:00
James Droste
227b81c6af
Set default postgres sql_mode to require ( #986 )
...
fixes #985 . libpq does not support the current default (prefer). This
sets the default sql_mode to match libpq's default which is require
2025-09-05 08:39:11 -04:00
Choong Jun Jin
3ef25d6463
Fix: add focus-triggered preloading to ItemSelector ( #980 )
...
* fix: add focus-triggered preloading to ItemSelector with proper error handling and complete localization
* Removed machine translated files
---------
Co-authored-by: Tonya <tonya@tokia.dev >
2025-09-04 16:29:34 +01:00
Tonya
d4e28e6f3b
Upgrade frontend deps, including nuxt ( #982 )
...
* feat: begin upgrading deps, still very buggy
* feat: progress
* feat: sort all type issues
* fix: sort type issues
* fix: import sonner styles
* fix: nuxt is the enemy
* fix: try sorting issue with workflows
* fix: update vitest config for dynamic import of path and defineConfig
* fix: add missing import
* fix: add time out to try and fix issues
* fix: add ui:ci:preview task for frontend build in CI mode
* fix: i was silly
* feat: add go:ci:with-frontend task for CI mode and remove ui:ci:preview from e2e workflow
* fix: update baseURL in Playwright config for local testing to use port 7745
* fix: update E2E_BASE_URL and remove wait for timeout in login test for smoother execution
2025-09-04 09:00:25 +01:00
Matthieu Evrin
790352da34
fix(item): remove line break in Items label in location view ( #975 )
...
fix: prevent items word wrapped in firefox
Signed-off-by: lekaf974 <matthieu.evrin@gmail.com >
2025-09-01 22:52:14 +01:00
tonyaellie
52a6a31098
fix: import close dialog
2025-08-27 19:28:28 +00:00
Katos
1d02285b0d
Merge pull request #962 from sysadminsmedia/katos/screenshots
...
Migrate Screenshots from Imgur to Github
2025-08-24 17:19:22 +01:00
Katos
19563d8b38
Update readme to point to new screenshots folder
2025-08-24 17:16:37 +01:00
Katos
282977e82c
Upload example screenshots
...
Upload screenshots to Github repository
2025-08-24 17:15:46 +01:00
Katos
769d5c5b95
Create screenshots folder and readme
2025-08-24 17:15:07 +01:00
rapidcow
b8f7ce7eb2
doc fix: match configure option names with help message ( #959 )
...
* doc fix: match configure option names with help message (1/2)
This is a first commit in an attempt to reconcile the differences
between the /en/configure/index doc page and the automatically
generated help message. This addresses typos including, though not
limited to, Discussion #954 , titled "[doc] apparent typo in the
documentation of GitHub release check option".
This commit fixes the CLI help command, preserving the original
order, while manually matching the option names with the help
message generated by the backend api executable.
Options are only checked for spelling correctness and existence.
In particular, the following are removed because i could not
find them in the help message.
* --swagger-host/$HBOX_SWAGGER_HOST <string> (default: localhost:7745)
* --swagger-scheme/$HBOX_SWAGGER_SCHEME <string> (default: http)
The following default values have also been updated:
* --storage-conn-string/$HBOX_STORAGE_CONN_STRING
(a slash is added to the URI path)
* --database-sqlite-path/$HBOX_DATABASE_SQLITE_PATH
(a query param '&_time_format=sqlite' is added)
* --database-ssl-mode/$HBOX_DATABASE_SSL_MODE
(default 'prefer' added)
* doc fix: match configure option names with help message (2/2)
This is a second commit in an attempt to reconcile the differences
between the /en/configure/index doc page and the automatically
generated help message. See the previous commit for details.
This commit fixes the Markdown table.
Options are only checked for spelling correctness and existence.
The following rows are deleted in particular:
* HBOX_SWAGGER_HOST
* HBOX_SWAGGER_SCHEME
The following default values are updated:
* HBOX_STORAGE_CONN_STRING
(a slash is added to the URI path)
* HBOX_DATABASE_SQLITE_PATH
(a query param '&_time_format=sqlite' is added)
* HBOX_DATABASE_SSL_MODE
(default 'prefer' added)
2025-08-23 21:17:26 -04:00
Matthew Kilgore
62ed3fabc2
Fix broken test version of binary build
2025-08-23 17:29:21 -04:00
Matthew Kilgore
304fc7f11f
Fix YAML maybe
2025-08-23 17:24:10 -04:00
Matthew Kilgore
1b7a7a1999
Fix YAML maybe
2025-08-23 17:22:29 -04:00
Matthew Kilgore
a63f08ad87
Fix YAML maybe
2025-08-23 17:21:21 -04:00
Matthew Kilgore
9cb1a3f83c
Fix YAML maybe
2025-08-23 17:21:01 -04:00
Matthew Kilgore
f86d38412b
Fix YAML maybe
2025-08-23 17:20:16 -04:00
Matthew Kilgore
cbbe056d01
Let us test binary builds without publishing new tags
2025-08-23 17:17:10 -04:00
Katos
5f6b1a0805
Update binaries-publish.yaml
...
Add COSIGN_PWD and COSIGN_YES to workflow to rectify issues with binaries building on Action
2025-08-23 20:07:12 +01:00
Tonya
27e9eb2277
improve dialogs, option to open image dialog in edit then delete ( #951 )
...
* fix: change Content-Disposition to inline for proper document display in attachments
* feat: overhaul how dialog system works, add delete to image dialog and add button to open image dialog on edit page
* chore: remove unneeded console log
* fix: ensure cleanup of dialog callbacks on unmount in BarcodeModal, CreateModal, and ImageDialog components
2025-08-23 18:22:33 +00:00
tonyaellie
6fcd10d796
feat: move theme picker to its own component and improve contrast on login screen
2025-08-23 18:05:00 +00:00
Michael Manganiello
377c6c6e0d
fix: Remove log.Fatal in favor of returning errors ( #953 )
...
* fix: Remove log.Fatal in favor of returning errors
This change is useful for including error tracking, which needs the
application to not terminate immediately, and instead give the tracer
time to capture and flush errors.
* Fix CodeRabbit issues
---------
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
2025-08-23 13:09:40 -04:00
Matt
7980e8e90a
Create hardened docker image ( #955 )
...
* Create hardened docker image
* Remove healthcheck that can't work
* Pin action dependencies
* Further cleanup and hardening
* Fix broken hardened build
* Enhance Dockerfile with healthcheck and optimizations
Added healthcheck helper using a small Go file module and improved Dockerfile structure for readability.
---------
Co-authored-by: Katos <7927609+katosdev@users.noreply.github.com >
2025-08-23 12:57:51 -04:00
Tonya
788d0b1c7e
feat: improved duplicate ( #927 )
...
* feat: improved duplicate
* feat: enhance item duplication process with transaction handling and error logging for attachments and fields
* feat: add error logging during transaction rollback in item duplication process for better debugging
* feat: don't try and rollback is the commit succeeded
* feat: add customizable duplication options for items, including prefix and field copying settings in API and UI
* fix: simplify duplication checks for custom fields, attachments, and maintenance entries in ItemsRepository duplication method
* refactor: import DuplicateSettings type from composables and sort import issues
2025-08-23 16:17:15 +01:00
Weblate
8b711eda99
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 96.6% (489 of 506 strings)
Translated using Weblate (Slovak)
Currently translated at 97.2% (492 of 506 strings)
Translated using Weblate (Ukrainian)
Currently translated at 64.0% (324 of 506 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.4% (503 of 506 strings)
Translated using Weblate (Polish)
Currently translated at 99.8% (505 of 506 strings)
Translated using Weblate (Catalan)
Currently translated at 54.5% (276 of 506 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 99.4% (503 of 506 strings)
Translated using Weblate (Spanish)
Currently translated at 99.4% (503 of 506 strings)
Translated using Weblate (Turkish)
Currently translated at 86.1% (436 of 506 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (506 of 506 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: Michael Manganiello <mike@fmanganiello.com.ar >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-08-22 04:53:59 +00:00
Weblate
bba0d26480
Merge branch 'origin/main' into Weblate.
2025-08-21 23:23:32 +00:00
Matthew Kilgore
789e27e67b
Merge remote-tracking branch 'origin/main'
2025-08-21 19:22:49 -04:00
Weblate
1828eae2c3
Translated using Weblate (French)
...
Currently translated at 96.8% (490 of 506 strings)
Translated using Weblate (English)
Currently translated at 100.0% (506 of 506 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-08-21 19:20:28 -04:00
Natalí Paura
8c87cda9ab
Fix label name length ( #822 )
...
* Fix label name length
The labels name were shortened to the max length of 20 characters and not taking advantage of extra space. And it was difficult to distinguish between labels with the same prefix.
* run task ui:fix
* fix label selector when creating an item
* feat: sort styles for line wrapping
---------
Co-authored-by: Tonya <tonya@tokia.dev >
2025-08-21 18:52:10 +00:00
Tonya
900604661b
fix: change Content-Disposition to inline for proper document display in attachments ( #950 )
2025-08-21 14:59:13 +00:00
Michael Manganiello
8af1e8fcba
fix: Allow up to 1000 characters for label description ( #948 )
...
The database schema already supports 1,000 characters for label
description, so this seems just like an oversight.
2025-08-20 15:29:49 -04:00
Weblate
ed7c3dd3f5
Translated using Weblate (French)
...
Currently translated at 96.8% (490 of 506 strings)
Translated using Weblate (English)
Currently translated at 100.0% (506 of 506 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-08-19 21:58:40 +00:00
Matthew Kilgore
e810571bf1
Merge Bugged Translation Commits
2025-08-19 10:44:22 -04:00
Weblate
1bce1905b6
Translated using Weblate (Japanese)
...
Currently translated at 97.6% (494 of 506 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 07:18:08 +00:00
Weblate
607507ad20
Translated using Weblate (Japanese)
...
Currently translated at 97.6% (494 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 97.6% (494 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:58:53 +00:00
Weblate
ed1b1a2765
Translated using Weblate (Japanese)
...
Currently translated at 95.4% (483 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 95.4% (483 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:41:30 +00:00
Weblate
5f140b34e6
Translated using Weblate (Japanese)
...
Currently translated at 95.4% (483 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 95.4% (483 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:39:32 +00:00
Weblate
3fbf154589
Translated using Weblate (Japanese)
...
Currently translated at 95.4% (483 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 95.4% (483 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:37:59 +00:00
Weblate
2bfd612971
Translated using Weblate (Japanese)
...
Currently translated at 95.4% (483 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:36:34 +00:00
Weblate
fe37c5acc7
Translated using Weblate (Japanese)
...
Currently translated at 95.4% (483 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:34:33 +00:00
Weblate
6be9c18f68
Translated using Weblate (Japanese)
...
Currently translated at 95.4% (483 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 95.4% (483 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:33:36 +00:00
Weblate
7d5d4e7dc7
Translated using Weblate (Japanese)
...
Currently translated at 95.0% (481 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:30:41 +00:00
Weblate
ec7051672f
Translated using Weblate (Japanese)
...
Currently translated at 95.0% (481 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 95.0% (481 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:30:14 +00:00
Weblate
008725b300
Translated using Weblate (Japanese)
...
Currently translated at 94.0% (476 of 506 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:18:16 +00:00
Weblate
3fb828ee1a
Translated using Weblate (Japanese)
...
Currently translated at 93.4% (473 of 506 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:03:16 +00:00
Weblate
0adebeaf8d
Translated using Weblate (Japanese)
...
Currently translated at 93.2% (472 of 506 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 06:00:52 +00:00
Weblate
c1a944411c
Translated using Weblate (Japanese)
...
Currently translated at 91.6% (464 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 05:00:23 +00:00
Weblate
1aaab56045
Translated using Weblate (Japanese)
...
Currently translated at 91.6% (464 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:58:45 +00:00
Weblate
87ecb217fb
Translated using Weblate (Japanese)
...
Currently translated at 91.6% (464 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 91.6% (464 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:58:33 +00:00
Weblate
91e4df652d
Translated using Weblate (Japanese)
...
Currently translated at 91.5% (463 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:58:27 +00:00
Weblate
40ee154508
Translated using Weblate (Japanese)
...
Currently translated at 91.3% (462 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:56:40 +00:00
Weblate
1925167407
Translated using Weblate (Japanese)
...
Currently translated at 90.7% (459 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:56:18 +00:00
Weblate
b8bdf23d05
Translated using Weblate (Japanese)
...
Currently translated at 90.7% (459 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 90.7% (459 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:56:10 +00:00
Weblate
ca49a4cd82
Translated using Weblate (Japanese)
...
Currently translated at 90.5% (458 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 90.5% (458 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:55:42 +00:00
Weblate
c8c1a4f573
Translated using Weblate (Japanese)
...
Currently translated at 90.1% (456 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 90.1% (456 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:54:59 +00:00
Weblate
9f5fb82c47
Translated using Weblate (Japanese)
...
Currently translated at 89.9% (455 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 89.9% (455 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:54:45 +00:00
Weblate
d87c46a464
Translated using Weblate (Japanese)
...
Currently translated at 89.7% (454 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 89.7% (454 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:54:26 +00:00
Weblate
7e5567bd2f
Translated using Weblate (Japanese)
...
Currently translated at 89.5% (453 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 89.5% (453 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:54:15 +00:00
Weblate
5589301c9d
Translated using Weblate (Japanese)
...
Currently translated at 89.3% (452 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 89.3% (452 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:54:06 +00:00
Weblate
b489593e62
Translated using Weblate (Japanese)
...
Currently translated at 89.1% (451 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 89.1% (451 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:53:51 +00:00
Weblate
38413ddef4
Translated using Weblate (Japanese)
...
Currently translated at 88.9% (450 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 88.9% (450 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:53:38 +00:00
Weblate
273520fd96
Translated using Weblate (Japanese)
...
Currently translated at 88.7% (449 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 88.7% (449 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:52:35 +00:00
Weblate
4704b42b6d
Translated using Weblate (Japanese)
...
Currently translated at 88.5% (448 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 88.5% (448 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:52:21 +00:00
Weblate
29c84e3071
Translated using Weblate (Japanese)
...
Currently translated at 88.3% (447 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 88.3% (447 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:52:06 +00:00
Weblate
6d3967383e
Translated using Weblate (Japanese)
...
Currently translated at 88.1% (446 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 88.1% (446 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:51:48 +00:00
Weblate
c7af7720ea
Translated using Weblate (Japanese)
...
Currently translated at 87.9% (445 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 87.9% (445 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:51:25 +00:00
Weblate
44ea3aef1b
Translated using Weblate (Japanese)
...
Currently translated at 87.7% (444 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:48:40 +00:00
Weblate
414599503f
Translated using Weblate (Japanese)
...
Currently translated at 87.7% (444 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:47:50 +00:00
Weblate
5eda237014
Translated using Weblate (Japanese)
...
Currently translated at 87.5% (443 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 87.5% (443 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:47:41 +00:00
Weblate
6e2b0f2d32
Translated using Weblate (Japanese)
...
Currently translated at 87.1% (441 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 87.1% (441 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:44:58 +00:00
Weblate
2fc9d40419
Translated using Weblate (Japanese)
...
Currently translated at 86.9% (440 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 86.9% (440 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:40:27 +00:00
Weblate
5ed5d69d34
Translated using Weblate (Japanese)
...
Currently translated at 86.7% (439 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 86.7% (439 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:40:16 +00:00
Weblate
19605bc242
Translated using Weblate (Japanese)
...
Currently translated at 86.5% (438 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 86.5% (438 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:40:04 +00:00
Weblate
523c3af677
Translated using Weblate (Japanese)
...
Currently translated at 86.3% (437 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 86.3% (437 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:39:55 +00:00
Weblate
c2d64388b2
Translated using Weblate (Japanese)
...
Currently translated at 86.1% (436 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 86.1% (436 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:39:47 +00:00
Weblate
2c8bc77aaa
Translated using Weblate (Japanese)
...
Currently translated at 85.9% (435 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 85.9% (435 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:39:37 +00:00
Weblate
284e38c92c
Translated using Weblate (Japanese)
...
Currently translated at 85.7% (434 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 85.7% (434 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:36:53 +00:00
Weblate
85fc35a382
Translated using Weblate (Japanese)
...
Currently translated at 85.1% (431 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 85.1% (431 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:35:55 +00:00
Weblate
9ffe8ec399
Translated using Weblate (Japanese)
...
Currently translated at 84.7% (429 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 84.7% (429 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:34:37 +00:00
Weblate
1e4902d8ae
Translated using Weblate (Japanese)
...
Currently translated at 84.5% (428 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 84.5% (428 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:33:43 +00:00
Weblate
6585a271f6
Translated using Weblate (Japanese)
...
Currently translated at 83.3% (422 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 83.3% (422 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:32:55 +00:00
Weblate
faa9e09efe
Translated using Weblate (Japanese)
...
Currently translated at 83.2% (421 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 83.2% (421 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:32:13 +00:00
Weblate
55b73418b8
Translated using Weblate (Japanese)
...
Currently translated at 83.0% (420 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 83.0% (420 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:31:35 +00:00
Weblate
8be61d9e36
Translated using Weblate (Japanese)
...
Currently translated at 82.8% (419 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 82.8% (419 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:30:50 +00:00
Weblate
174286b701
Translated using Weblate (Japanese)
...
Currently translated at 82.2% (416 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 82.2% (416 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:30:33 +00:00
Weblate
385baf1068
Translated using Weblate (Japanese)
...
Currently translated at 82.0% (415 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 82.0% (415 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:30:17 +00:00
Weblate
25104465ca
Translated using Weblate (Japanese)
...
Currently translated at 81.8% (414 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 81.8% (414 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:29:58 +00:00
Weblate
dbdc9f6531
Translated using Weblate (Japanese)
...
Currently translated at 81.4% (412 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:29:36 +00:00
Weblate
2fe3cd9041
Translated using Weblate (Japanese)
...
Currently translated at 81.2% (411 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 81.2% (411 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:29:25 +00:00
Weblate
9c8a9d32b6
Translated using Weblate (Japanese)
...
Currently translated at 81.0% (410 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 81.0% (410 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:29:09 +00:00
Weblate
4b68162b1d
Translated using Weblate (Japanese)
...
Currently translated at 80.8% (409 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 80.8% (409 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:29:02 +00:00
Weblate
3fa0ff5214
Translated using Weblate (Japanese)
...
Currently translated at 80.4% (407 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 80.4% (407 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:28:50 +00:00
Weblate
59c2074343
Translated using Weblate (Japanese)
...
Currently translated at 80.2% (406 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 80.2% (406 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:28:36 +00:00
Weblate
2c7d7b9d53
Translated using Weblate (Japanese)
...
Currently translated at 80.0% (405 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 80.0% (405 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:28:07 +00:00
Weblate
741baeb7fb
Translated using Weblate (Japanese)
...
Currently translated at 79.8% (404 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 79.8% (404 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:27:43 +00:00
Weblate
65c1d20f17
Translated using Weblate (Japanese)
...
Currently translated at 79.6% (403 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 79.6% (403 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:27:34 +00:00
Weblate
23eec20e97
Translated using Weblate (Japanese)
...
Currently translated at 79.4% (402 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 79.4% (402 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:27:14 +00:00
Weblate
e9e0ccca99
Translated using Weblate (Japanese)
...
Currently translated at 79.2% (401 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 79.2% (401 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:26:56 +00:00
Weblate
00a1efce1d
Translated using Weblate (Japanese)
...
Currently translated at 78.6% (398 of 506 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:17:46 +00:00
Weblate
de7345f326
Translated using Weblate (Japanese)
...
Currently translated at 78.6% (398 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 78.6% (398 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:17:20 +00:00
Weblate
10564bfc9f
Translated using Weblate (Japanese)
...
Currently translated at 78.4% (397 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 78.4% (397 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:17:00 +00:00
Weblate
508c5ee116
Translated using Weblate (Japanese)
...
Currently translated at 78.2% (396 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 78.2% (396 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:16:41 +00:00
Weblate
0dfc634d1b
Translated using Weblate (Japanese)
...
Currently translated at 78.0% (395 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 78.0% (395 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:16:20 +00:00
Weblate
e92eb80aec
Translated using Weblate (Japanese)
...
Currently translated at 77.8% (394 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 77.8% (394 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:16:09 +00:00
Weblate
5d84cc2899
Translated using Weblate (Japanese)
...
Currently translated at 77.6% (393 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 77.6% (393 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:15:51 +00:00
Weblate
19db9f5623
Translated using Weblate (Japanese)
...
Currently translated at 77.4% (392 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 77.4% (392 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:15:39 +00:00
Weblate
0f163e48e2
Translated using Weblate (Japanese)
...
Currently translated at 77.2% (391 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 77.2% (391 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 04:12:03 +00:00
Weblate
fb6df194d5
Translated using Weblate (Japanese)
...
Currently translated at 76.8% (389 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 76.8% (389 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:53:32 +00:00
Weblate
762a309e4b
Translated using Weblate (Japanese)
...
Currently translated at 76.8% (389 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 76.8% (389 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:51:53 +00:00
Weblate
cf7f703f69
Translated using Weblate (Japanese)
...
Currently translated at 76.6% (388 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 76.6% (388 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:51:12 +00:00
Weblate
0e71f59086
Translated using Weblate (Japanese)
...
Currently translated at 76.2% (386 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 76.2% (386 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:49:33 +00:00
Weblate
b0829b7f4d
Translated using Weblate (Japanese)
...
Currently translated at 75.8% (384 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 75.8% (384 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:48:12 +00:00
Weblate
305207fcd7
Translated using Weblate (Japanese)
...
Currently translated at 75.6% (383 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 75.6% (383 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:47:24 +00:00
Weblate
6deda72650
Translated using Weblate (Japanese)
...
Currently translated at 75.2% (381 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 75.2% (381 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:31:28 +00:00
Weblate
e8e6d6e81b
Translated using Weblate (Japanese)
...
Currently translated at 75.0% (380 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 75.0% (380 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:30:29 +00:00
Weblate
1e06a6e4e0
Translated using Weblate (Japanese)
...
Currently translated at 74.9% (379 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 74.9% (379 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:30:19 +00:00
Weblate
064c945d9c
Translated using Weblate (Japanese)
...
Currently translated at 74.7% (378 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 74.7% (378 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:30:01 +00:00
Weblate
8814d63655
Translated using Weblate (Japanese)
...
Currently translated at 74.3% (376 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:29:40 +00:00
Weblate
4954b79cbd
Translated using Weblate (Japanese)
...
Currently translated at 74.1% (375 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 74.1% (375 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:29:16 +00:00
Weblate
6fa331307a
Translated using Weblate (Japanese)
...
Currently translated at 73.3% (371 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 73.3% (371 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:28:28 +00:00
Weblate
1a95ff4854
Translated using Weblate (Japanese)
...
Currently translated at 72.7% (368 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:27:40 +00:00
Weblate
c77f2eb119
Translated using Weblate (Japanese)
...
Currently translated at 72.3% (366 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 72.3% (366 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 72.3% (366 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:27:21 +00:00
Weblate
79b04203b9
Translated using Weblate (Japanese)
...
Currently translated at 70.5% (357 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 70.5% (357 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:18:16 +00:00
Weblate
32258535a5
Translated using Weblate (Japanese)
...
Currently translated at 70.1% (355 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 70.1% (355 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:15:04 +00:00
Weblate
4fb61bc4a5
Translated using Weblate (Japanese)
...
Currently translated at 69.5% (352 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 69.5% (352 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:13:58 +00:00
Weblate
55fed18582
Translated using Weblate (Japanese)
...
Currently translated at 69.3% (351 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 69.3% (351 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:13:48 +00:00
Weblate
408391d31f
Translated using Weblate (Japanese)
...
Currently translated at 69.1% (350 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 69.1% (350 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:13:39 +00:00
Weblate
0087d810ae
Translated using Weblate (Japanese)
...
Currently translated at 68.5% (347 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:12:16 +00:00
Weblate
be907f72ff
Translated using Weblate (Japanese)
...
Currently translated at 68.3% (346 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 68.3% (346 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:12:00 +00:00
Weblate
669543989a
Translated using Weblate (Japanese)
...
Currently translated at 68.1% (345 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 68.1% (345 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:11:40 +00:00
Weblate
484744c0f9
Translated using Weblate (Japanese)
...
Currently translated at 67.9% (344 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 67.9% (344 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:11:16 +00:00
Weblate
912a11f27d
Translated using Weblate (Japanese)
...
Currently translated at 67.7% (343 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 67.7% (343 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:10:46 +00:00
Weblate
a49e6e4f92
Translated using Weblate (Japanese)
...
Currently translated at 67.5% (342 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 67.5% (342 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:10:33 +00:00
Weblate
f94167cb34
Translated using Weblate (Japanese)
...
Currently translated at 67.1% (340 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 67.1% (340 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:10:03 +00:00
Weblate
4aa6f12df4
Translated using Weblate (Japanese)
...
Currently translated at 66.9% (339 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 66.9% (339 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:08:54 +00:00
Weblate
2ac5c08f76
Translated using Weblate (Japanese)
...
Currently translated at 66.7% (338 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 66.7% (338 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:08:09 +00:00
Weblate
49f891f577
Translated using Weblate (Japanese)
...
Currently translated at 66.4% (336 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:05:58 +00:00
Weblate
25cf4ecc51
Translated using Weblate (Japanese)
...
Currently translated at 66.4% (336 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:05:48 +00:00
Weblate
e77f1dd68c
Translated using Weblate (Japanese)
...
Currently translated at 66.2% (335 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:05:31 +00:00
Weblate
4cfece1bf5
Translated using Weblate (Japanese)
...
Currently translated at 66.2% (335 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 66.2% (335 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:05:19 +00:00
Weblate
6e5b348d82
Translated using Weblate (Japanese)
...
Currently translated at 65.8% (333 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 65.8% (333 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:01:40 +00:00
Weblate
d53c643de0
Translated using Weblate (Japanese)
...
Currently translated at 65.4% (331 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 65.4% (331 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 03:00:57 +00:00
Weblate
8c53d76819
Translated using Weblate (Japanese)
...
Currently translated at 64.4% (326 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 64.4% (326 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:57:50 +00:00
Weblate
5364833afb
Translated using Weblate (Japanese)
...
Currently translated at 64.0% (324 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 64.0% (324 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:57:06 +00:00
Weblate
541585c0bb
Translated using Weblate (Japanese)
...
Currently translated at 63.6% (322 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 63.6% (322 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:56:29 +00:00
Weblate
350a35f7f4
Translated using Weblate (Japanese)
...
Currently translated at 63.2% (320 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 63.2% (320 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:55:03 +00:00
Weblate
856f2584b9
Translated using Weblate (Japanese)
...
Currently translated at 62.6% (317 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 62.6% (317 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 62.6% (317 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:49:52 +00:00
Weblate
c997f274cc
Translated using Weblate (Japanese)
...
Currently translated at 62.0% (314 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 62.0% (314 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:49:21 +00:00
Weblate
e9689b6b52
Translated using Weblate (Japanese)
...
Currently translated at 61.4% (311 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 61.4% (311 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:48:57 +00:00
Weblate
3713816576
Translated using Weblate (Japanese)
...
Currently translated at 61.2% (310 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 61.2% (310 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:48:46 +00:00
Weblate
3529a95ebe
Translated using Weblate (Japanese)
...
Currently translated at 60.6% (307 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 60.6% (307 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:46:56 +00:00
Weblate
fa066bc962
Translated using Weblate (Japanese)
...
Currently translated at 60.2% (305 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 60.2% (305 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:45:43 +00:00
Weblate
ba358790ea
Translated using Weblate (Japanese)
...
Currently translated at 59.4% (301 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 59.4% (301 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:37:47 +00:00
Weblate
3aff39cdaf
Translated using Weblate (Japanese)
...
Currently translated at 58.8% (298 of 506 strings)
Translated using Weblate (Japanese)
Currently translated at 58.8% (298 of 506 strings)
Translated using Weblate (English)
Currently translated at 100.0% (506 of 506 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-08-19 02:30:52 +00:00
Weblate
877bb2ddbf
Translated using Weblate (German)
...
Currently translated at 100.0% (506 of 506 strings)
Translated using Weblate (Italian)
Currently translated at 82.4% (417 of 506 strings)
Co-authored-by: Matteo Lombardi <matteolomba@protonmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-08-18 16:58:57 +00:00
Weblate
c8a48e4400
Translated using Weblate (Polish)
...
Currently translated at 100.0% (506 of 506 strings)
Translated using Weblate (German)
Currently translated at 99.8% (505 of 506 strings)
Translated using Weblate (German)
Currently translated at 99.8% (505 of 506 strings)
Translated using Weblate (Italian)
Currently translated at 82.4% (417 of 506 strings)
Translated using Weblate (Italian)
Currently translated at 82.4% (417 of 506 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (506 of 506 strings)
Co-authored-by: Krzysztof G. <mordret@o2.pl >
Co-authored-by: Mats <sysadminsmedia@mats-bueser.de >
Co-authored-by: Matteo Lombardi <matteolomba@protonmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: verhese <sean.verheyen1@telenet.be >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translation: Homebox/Frontend
2025-08-18 11:34:12 +00:00
Weblate
1211105eb4
Translated using Weblate (Polish)
...
Currently translated at 100.0% (506 of 506 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translation: Homebox/Frontend
2025-08-17 17:43:08 +00:00
Matthew Kilgore
28ce0d29a4
Default postgres ssl_mode to fix #943
2025-08-17 08:58:57 -04:00
Matthew Kilgore
dbf8322ec6
Update dependencies
2025-08-16 21:20:19 -04:00
Matthew Kilgore
9f34f80a60
Update dependencies
2025-08-16 17:43:02 -04:00
Matthew Kilgore
175b93a62e
Make sure all languages are part of core translations.
2025-08-16 17:40:16 -04:00
Matt
d41f313cff
Fix Windows Paths ( #917 )
...
* In theory this should fix the issue with Windows paths
* Fix Windows path handling in file storage connections for non-default
2025-08-16 17:08:24 -04:00
Weblate
1439e20d93
Translated using Weblate (Danish)
...
Currently translated at 99.4% (501 of 504 strings)
Translated using Weblate (Danish)
Currently translated at 99.4% (501 of 504 strings)
Co-authored-by: LovelessCodes <hello@loveless.codes >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translation: Homebox/Frontend
2025-08-11 23:58:41 +00:00
Weblate
17e3a6d0cf
Translated using Weblate (Turkish)
...
Currently translated at 86.7% (437 of 504 strings)
Co-authored-by: Can Dikyol <candikyol@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2025-08-10 21:58:40 +00:00
Weblate
1ed7734b2e
Translated using Weblate (German)
...
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: Katos <katos@creatorswave.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-08-10 14:47:35 +00:00
Matias Godoy
362c0bb3e6
Fix accent-insensitive search for Postgres databases ( #932 )
2025-08-04 20:35:22 -04:00
Weblate
0d3151ae5c
Translated using Weblate (Turkish)
...
Currently translated at 85.9% (433 of 504 strings)
Co-authored-by: Can Dikyol <candikyol@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2025-08-04 16:17:42 +00:00
Weblate
b4e679e321
Translated using Weblate (Turkish)
...
Currently translated at 67.6% (341 of 504 strings)
Co-authored-by: Can Dikyol <candikyol@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2025-08-04 12:43:43 +00:00
Weblate
de3b63639b
Translated using Weblate (Portuguese (Portugal))
...
Currently translated at 96.0% (484 of 504 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translation: Homebox/Frontend
2025-08-04 03:54:18 +00:00
Weblate
23ba40892a
Translated using Weblate (Korean)
...
Currently translated at 6.9% (35 of 504 strings)
Co-authored-by: HAN, Sang-uk <nouveau.monde.1987@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ko/
Translation: Homebox/Frontend
2025-08-03 19:49:16 +00:00
Ahmed Al Hafoudh
624c1763ac
Add external label service support to label maker ( #913 )
...
* Add external label service support to label maker
* Make external label service fetch to include user agent, limit response size and allow any image type
* Fix linting errors
* Fix "response body closed" closing the Body to soon
2025-08-01 12:02:40 -04:00
Weblate
75c2423fd5
Translated using Weblate (Italian)
...
Currently translated at 81.5% (411 of 504 strings)
Translated using Weblate (Italian)
Currently translated at 81.5% (411 of 504 strings)
Co-authored-by: Matteo Lombardi <matteolomba@protonmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-07-30 18:57:54 +00:00
Weblate
d4f2b52b6c
Translated using Weblate (Vietnamese)
...
Currently translated at 19.4% (98 of 504 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: Ngô Tạ Đình Phong <thichcarot@outlook.com >
Co-authored-by: askolock <askolock@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/vi/
Translation: Homebox/Frontend
2025-07-28 15:00:41 +00:00
Weblate
028b1382ad
Translated using Weblate (Russian)
...
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: akrstlv <zmilex@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2025-07-25 20:53:56 +00:00
Weblate
d8781950fa
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-07-24 15:00:41 +00:00
Weblate
8646360b8c
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Ricardo González <notorius28@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-07-23 07:00:43 +00:00
Weblate
6ce83ea04c
Translated using Weblate (German)
...
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (German)
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: Christoph Auer <Christoph.Auer@pilsheim.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-07-21 12:11:39 +00:00
Weblate
ad356acc73
Translated using Weblate (German)
...
Currently translated at 98.8% (498 of 504 strings)
Translated using Weblate (German)
Currently translated at 98.8% (498 of 504 strings)
Co-authored-by: Christoph Auer <Christoph.Auer@pilsheim.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-07-21 07:02:54 +00:00
Weblate
863b84355d
Translated using Weblate (German)
...
Currently translated at 98.4% (496 of 504 strings)
Translated using Weblate (German)
Currently translated at 98.4% (496 of 504 strings)
Co-authored-by: Christoph Auer <Christoph.Auer@pilsheim.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-07-21 07:02:19 +00:00
Weblate
959d9961f1
Translated using Weblate (German)
...
Currently translated at 97.6% (492 of 504 strings)
Translated using Weblate (German)
Currently translated at 97.6% (492 of 504 strings)
Co-authored-by: Christoph Auer <Christoph.Auer@pilsheim.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-07-21 07:01:42 +00:00
Weblate
c5b783bef7
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (German)
Currently translated at 97.4% (491 of 504 strings)
Translated using Weblate (German)
Currently translated at 97.4% (491 of 504 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Christoph Auer <Christoph.Auer@pilsheim.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-21 07:01:26 +00:00
Weblate
1d78b953dd
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-21 05:16:36 +00:00
Weblate
44f5aaec57
Translated using Weblate (Hungarian)
...
Currently translated at 99.4% (501 of 504 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.4% (501 of 504 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-21 05:15:55 +00:00
Weblate
4933446202
Translated using Weblate (Hungarian)
...
Currently translated at 99.2% (500 of 504 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.2% (500 of 504 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-21 05:15:30 +00:00
Weblate
e1fbb99203
Translated using Weblate (Hungarian)
...
Currently translated at 98.8% (498 of 504 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (504 of 504 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: WilliamStark <yujinghao007@163.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-21 05:14:55 +00:00
Weblate
4a9557fcb7
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 99.4% (501 of 504 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 99.4% (501 of 504 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: WilliamStark <yujinghao007@163.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-21 02:07:44 +00:00
Weblate
5766277c16
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 99.2% (500 of 504 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 99.2% (500 of 504 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: WilliamStark <yujinghao007@163.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-21 02:07:10 +00:00
Weblate
5374f31d69
Translated using Weblate (Vietnamese)
...
Currently translated at 14.8% (75 of 504 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (504 of 504 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 98.0% (494 of 504 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: Lucas Wilson <lucasws2020@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/vi/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-21 02:06:03 +00:00
Balki
e82f5084d4
Fix Windows build and re-apply unix socket support ( #906 )
...
* Reapply "Support listening on unix sockets and systemd sockets (#878 )"
This reverts commit 2f51ba419b .
* Fix windows build
Upgrade anyhttp to v0.5.2
2025-07-20 09:51:31 -04:00
Katos
bbd773fb3a
Merge pull request #818 from crumbowl/feat/barcode
...
Add product fetching using barcodes
2025-07-20 10:59:44 +01:00
Crumb Owl
7129650efa
ProductBarcode: properly check array boundaries
2025-07-19 23:06:44 +02:00
Crumb Owl
a57b83c52d
ProductBarcode: various fix requested by Tonya
...
- fix many missing translations
- properly reset QR scanner when reopening
- add error message on BarcodeModal when no item is found
- fix icon size in item CreateModal
- remove useless closeDialog
2025-07-19 23:06:44 +02:00
Crumb Owl
bb5e36f0c4
ProductBarcode: final linting
2025-07-19 23:06:44 +02:00
Crumb Owl
bd44b36666
ProductBarcode: BarcodeModal: improve erroring
2025-07-19 23:06:43 +02:00
Crumb Owl
895063fa36
ProductBarcode: improve readability on CreateModal
2025-07-19 23:06:43 +02:00
Crumb Owl
aa7658b0d4
ProductBarcode: fix barcode value not updated + fix search button not reset properly
2025-07-19 23:06:43 +02:00
Crumb Owl
68f97f24c7
ProductBarcode: fix various remarks from Tonya
2025-07-19 23:06:43 +02:00
Crumb Owl
6555c9277a
ProductBarcode: use json encoder from the project
2025-07-19 23:06:43 +02:00
Crumb Owl
b5d13380fe
ProductBarcode: BarcodeModal: launch search on "Return" key
2025-07-19 23:06:43 +02:00
Crumb Owl
9271cdae4b
ProductBarcode: architecture: move to strongly typed DialogID and parameters
2025-07-19 23:06:43 +02:00
Crumb Owl
18149a5c9a
ProductBarcode: apply linting and fixes on frontend
2025-07-19 23:06:43 +02:00
Crumb Owl
68b6d58ab4
ProductBarcode: BarcodeModal: many fixes catched by linter
2025-07-19 23:06:43 +02:00
Crumb Owl
6d516f6de6
ProductBarcode: backend: properly define max length of a barcode
2025-07-19 23:06:43 +02:00
Crumb Owl
36d5ae1466
ProductBarcode: backend: improve verbosity for user
2025-07-19 23:06:43 +02:00
Crumb Owl
f37f609dff
ProductBarcode: backend: prevent DoS with image download
2025-07-19 23:06:43 +02:00
Crumb Owl
a980d9f243
ProductBarcode: backend: remove API response verbosity
2025-07-19 23:06:43 +02:00
Crumb Owl
aac82c9236
ProductBarcode: backend: add timeout to external API calls
2025-07-19 23:06:43 +02:00
Crumb Owl
8dedfcca43
ProductBarcode: backend: fix error handling with http requests
2025-07-19 23:06:43 +02:00
Crumb Owl
f72fcb0800
ProductBarcode: backend: fix resource leak with defer
2025-07-19 23:06:43 +02:00
Crumb Owl
94e81809d3
ProductBarcode: backend: properly check barcodespider API response
2025-07-19 23:06:43 +02:00
Crumb Owl
e80e5744f7
ProductBarcode: backend: improve security of image fetching
2025-07-19 23:06:43 +02:00
Crumb Owl
402b8c429e
ProductBarcode: improve error handling in BarcodeModal
2025-07-19 23:06:43 +02:00
Crumb Owl
d2919de8e8
ProductBarcode: add barcode shortcuts in item/Createmodal.vue
2025-07-19 23:06:43 +02:00
Crumb Owl
8a60729153
ProductBarcode: clean code, add error handling
2025-07-19 23:06:43 +02:00
Crumb Owl
4a4bf9a175
ProductBarcode: rename API call from getproductfromean to products/search-from-barcode
2025-07-19 23:06:43 +02:00
Crumb Owl
24923f2a83
ProductBarcode: refactoring Go method
2025-07-19 23:06:43 +02:00
Crumb Owl
66c2de22ed
ProductBarcode: Go Linter fixing
2025-07-19 23:06:43 +02:00
Crumb Owl
c93fddae7f
ProductBarcode: move backend code in dedicated source file
2025-07-19 23:06:43 +02:00
Crumb Owl
fb17b56f09
ProductBarcode: create a dedicated dialog for product selection
2025-07-19 23:06:43 +02:00
Crumb Owl
a3c13a8a74
ProductBarcode: return an array of BarcodeProduct instead of one
2025-07-19 23:06:38 +02:00
Crumb Owl
09f29d82f4
ProductBarcode: properly use of language system in frontend/Scanner.vue
2025-07-19 22:51:48 +02:00
Crumb Owl
dd94fd43ee
ProductBarcode: improve UI of Barcode message in frontend/Scanner.vue
2025-07-19 22:51:48 +02:00
Crumb Owl
a85bdfef88
ProductBarcode: display barcode type in frontend/Scanner.vue
2025-07-19 22:51:48 +02:00
Crumb Owl
79baf6b5ef
ProductBarcode: define Barcodespider API key using env variables
2025-07-19 22:51:48 +02:00
Crumb Owl
d691e908a4
ProductBarcode: add image downloading from remote product database
...
- Backend download images from the database
- Frontend retrieve the image as base64, no architecture change needed
2025-07-19 22:51:48 +02:00
Crumb Owl
ec8320bc42
ProductBarcode: update UPCItemDB parsing
...
- JSON response seems to have changed
2025-07-19 22:51:48 +02:00
Crumb Owl
6dbb243ba5
ProductBarcode: return more fields from DB (brand, model...)
...
- backend: change data structure returned to frontend
2025-07-19 22:51:48 +02:00
Crumb Owl
7c56bfb4ab
ProductBarcode: fix error on pages/Scanner.vue when using a barcode
2025-07-19 22:51:48 +02:00
Crumb Owl
c3af4ac4ac
ProductBarcode: add barcode processing in frontend
2025-07-19 22:51:48 +02:00
Crumb Owl
fc88df0ff0
ProductBarcode: allow passing parameters to Dialog
2025-07-19 22:51:48 +02:00
Crumb Owl
0e1e5ae3f0
ProductBarcode: add frontend API call utils
2025-07-19 22:51:48 +02:00
Crumb Owl
0ed69b75a1
ProductBarcode: add first backend API implementation
2025-07-19 22:51:48 +02:00
Crumb Owl
c666a8a8c1
ProductBarcode: add barcode detection to ScannerModal.vue
2025-07-19 22:51:48 +02:00
Weblate
6ef7045f62
Translated using Weblate (Polish)
...
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Albanian)
Currently translated at 19.1% (94 of 492 strings)
Translated using Weblate (French)
Currently translated at 99.3% (489 of 492 strings)
Translated using Weblate (Swedish)
Currently translated at 68.2% (336 of 492 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 97.3% (479 of 492 strings)
Translated using Weblate (Catalan)
Currently translated at 56.0% (276 of 492 strings)
Co-authored-by: Krzysztof G. <mordret@o2.pl >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Thomas J. Mazon de Oliveira <thomas.mazon@gmail.com >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sq/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-07-19 09:00:42 +00:00
Weblate
98ce90636d
Translated using Weblate (Danish)
...
Currently translated at 99.7% (491 of 492 strings)
Translated using Weblate (Chinese (Simplified) (zh_MO))
Currently translated at 37.1% (183 of 492 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 72.5% (357 of 492 strings)
Translated using Weblate (German)
Currently translated at 99.3% (489 of 492 strings)
Translated using Weblate (Italian)
Currently translated at 81.9% (403 of 492 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: Thomas J. Mazon de Oliveira <thomas.mazon@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_MO/
Translation: Homebox/Frontend
2025-07-17 19:00:41 +00:00
Weblate
86721c9b9a
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-16 07:00:42 +00:00
Michael Manganiello
62f6121260
feat: Add plugin to set image sizes in Markdown ( #901 )
...
* feat: Add plugin to set image sizes in Markdown
Install the `@mdit/plugin-img-size` plugin [1] to allow setting image sizes
in Markdown content. This improves the image rendering capabilities for
Markdown blocks.
Before (no resizing possible):
```markdown

```
After (size specified):
```markdown

```
[1] https://mdit-plugins.github.io/img-size.html
* Update @types/markdown-it to match markdown-it version
2025-07-16 05:58:24 +00:00
Matt
90bb6ed1fe
Daily Analytics ( #896 )
...
* Send analytics daily
* Clean up error handling, add uptime to analytics
* Better analytics scheduling
* Even better logic for scheduling the analytics (hopefully)
* Some cleanup
* Switch to minutes for uptime, remove duplicate event on startup
2025-07-15 04:24:19 -04:00
Weblate
bd79ee3227
Translated using Weblate (Hungarian)
...
Currently translated at 99.5% (490 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.5% (490 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:45:22 +00:00
Weblate
c0e79cdb9e
Translated using Weblate (Hungarian)
...
Currently translated at 99.3% (489 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.3% (489 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:45:01 +00:00
Weblate
5156792319
Translated using Weblate (Hungarian)
...
Currently translated at 99.1% (488 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.1% (488 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:44:30 +00:00
Weblate
8bbc39e416
Translated using Weblate (Hungarian)
...
Currently translated at 98.5% (485 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 98.5% (485 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:43:15 +00:00
Weblate
0beb430704
Translated using Weblate (Hungarian)
...
Currently translated at 98.3% (484 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 98.3% (484 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:41:46 +00:00
Weblate
0f7107f86d
Translated using Weblate (Hungarian)
...
Currently translated at 97.7% (481 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 97.7% (481 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:36:35 +00:00
Weblate
115cda5c37
Translated using Weblate (Hungarian)
...
Currently translated at 97.1% (478 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 97.1% (478 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 97.1% (478 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:36:07 +00:00
Weblate
a6c1c8c652
Translated using Weblate (Hungarian)
...
Currently translated at 96.3% (474 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.3% (474 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:35:42 +00:00
Weblate
c69c6a1518
Translated using Weblate (Hungarian)
...
Currently translated at 96.1% (473 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.1% (473 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:34:55 +00:00
Weblate
adaffa5ca8
Translated using Weblate (Hungarian)
...
Currently translated at 95.9% (472 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 95.9% (472 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:32:21 +00:00
Weblate
b410642dc6
Translated using Weblate (Hungarian)
...
Currently translated at 95.7% (471 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 95.7% (471 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:29:52 +00:00
Weblate
4bed1a3158
Translated using Weblate (Hungarian)
...
Currently translated at 93.6% (461 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 93.6% (461 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:27:05 +00:00
Weblate
9ff39bb402
Translated using Weblate (Hungarian)
...
Currently translated at 93.4% (460 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 93.4% (460 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:26:15 +00:00
Weblate
3ab250a045
Translated using Weblate (Hungarian)
...
Currently translated at 93.2% (459 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 93.2% (459 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:24:16 +00:00
Weblate
4147cff1db
Translated using Weblate (Hungarian)
...
Currently translated at 92.6% (456 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 92.6% (456 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:21:24 +00:00
Weblate
dada2f0266
Translated using Weblate (Hungarian)
...
Currently translated at 92.2% (454 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 92.2% (454 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:21:01 +00:00
Weblate
e9e852c8a3
Translated using Weblate (Hungarian)
...
Currently translated at 92.0% (453 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 92.0% (453 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:20:50 +00:00
Weblate
7dda0f473a
Translated using Weblate (Hungarian)
...
Currently translated at 89.6% (441 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 89.6% (441 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:17:06 +00:00
Weblate
2006b8056a
Translated using Weblate (Hungarian)
...
Currently translated at 89.4% (440 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 89.4% (440 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:16:31 +00:00
Weblate
41f63456eb
Translated using Weblate (Hungarian)
...
Currently translated at 89.2% (439 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 89.2% (439 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:15:54 +00:00
Weblate
fe177deff4
Translated using Weblate (Hungarian)
...
Currently translated at 89.0% (438 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 89.0% (438 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:15:38 +00:00
Weblate
d729a74b34
Translated using Weblate (Hungarian)
...
Currently translated at 88.6% (436 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 88.6% (436 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:15:04 +00:00
Weblate
6ab51e4767
Translated using Weblate (Hungarian)
...
Currently translated at 88.2% (434 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 88.2% (434 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:13:09 +00:00
Weblate
e080817e1a
Translated using Weblate (Hungarian)
...
Currently translated at 87.3% (430 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 87.3% (430 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:12:49 +00:00
Weblate
31e6f0264d
Translated using Weblate (Hungarian)
...
Currently translated at 85.7% (422 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 85.7% (422 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:09:38 +00:00
Weblate
8e98ded03f
Translated using Weblate (Hungarian)
...
Currently translated at 85.5% (421 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 85.5% (421 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:09:26 +00:00
Weblate
8da030d415
Translated using Weblate (Hungarian)
...
Currently translated at 84.7% (417 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 84.7% (417 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:09:06 +00:00
Weblate
393342bc32
Translated using Weblate (Hungarian)
...
Currently translated at 84.5% (416 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 84.5% (416 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:08:45 +00:00
Weblate
9f331b87df
Translated using Weblate (Hungarian)
...
Currently translated at 84.1% (414 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 84.1% (414 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:08:21 +00:00
Weblate
27efa00ee2
Translated using Weblate (Hungarian)
...
Currently translated at 83.5% (411 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 83.5% (411 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:07:57 +00:00
Weblate
1224a6e516
Translated using Weblate (Hungarian)
...
Currently translated at 81.9% (403 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 81.9% (403 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-15 06:06:58 +00:00
Weblate
988f9eee8c
Translated using Weblate (Hungarian)
...
Currently translated at 80.8% (398 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-14 22:56:25 +00:00
Weblate
832b4a6484
Translated using Weblate (Hungarian)
...
Currently translated at 80.8% (398 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 80.8% (398 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-14 14:06:37 +00:00
Weblate
64298511ee
Translated using Weblate (Hungarian)
...
Currently translated at 79.4% (391 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 79.4% (391 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-14 14:06:01 +00:00
Weblate
f4ed929e4a
Translated using Weblate (Hungarian)
...
Currently translated at 78.4% (386 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 78.4% (386 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-14 14:04:13 +00:00
Weblate
b272c97694
Translated using Weblate (Hungarian)
...
Currently translated at 73.5% (362 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 73.5% (362 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-07-14 14:01:43 +00:00
Weblate
3004d376ab
Translated using Weblate (Slovak)
...
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 70.7% (348 of 492 strings)
Translated using Weblate (Hungarian)
Currently translated at 70.7% (348 of 492 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-07-14 13:59:12 +00:00
Matthew Kilgore
8f440e2a64
Fix setup directory for Windows binary
2025-07-12 22:21:38 -04:00
Matthew Kilgore
017b05452a
Merge remote-tracking branch 'origin/main'
2025-07-12 16:37:09 -04:00
Matthew Kilgore
6a1f2549df
Cleanup main file after revert, add freebsd build
2025-07-12 16:37:01 -04:00
Matthew Kilgore
2f51ba419b
Revert "Support listening on unix sockets and systemd sockets ( #878 )"
...
This reverts commit 850ed476
2025-07-12 16:33:29 -04:00
Matias Godoy
bcd77ee796
Make search accent-insensitive ( #887 )
...
* Make search accent-insensitive
* Efficiendy improvements and small fixes
* Fix tests to improve coverage
* Fix SQL compatibility issues
2025-07-12 16:16:55 -04:00
Matt
23cecfb2a5
Refactor main file, add support for postgres certificate authentication ( #897 )
...
* Refactor main file, add support for postgres certificate authentication
* Fix potential issues.
* Remove legacy linting ignore comment
* Minor cleanup, documentation update
2025-07-12 16:11:50 -04:00
Matthew Kilgore
f4c8dd5450
Prep docs for Cloudflare worker migration (Pages is apparently deprecated/no longer recommended)
2025-07-12 14:56:05 -04:00
Copilot
72033341b4
Fix photo display issue when adding additional attachments to items ( #895 )
...
* Initial plan
* Fix attachment display issue - prevent photo primary status loss when updating non-photo attachments
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
2025-07-12 13:36:21 -04:00
Copilot
c2cfa10336
Fix nil pointer dereference panic in thumbnail subscription during shutdown ( #892 )
...
* Initial plan
* Fix nil pointer dereference in thumbnail subscription handling
Add nil check for msg after subscription.Receive() returns error to prevent
panic when accessing msg.Metadata. When an error occurs or msg is nil,
continue to next iteration instead of trying to process the message.
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
2025-07-12 11:40:50 -04:00
Balki
850ed476d4
Support listening on unix sockets and systemd sockets ( #878 )
2025-07-12 09:58:16 -04:00
Ahmosys
adea83d421
fix(frontend/location): preserve parent location when using "Create and Add another" ( #879 )
...
* fix(frontend/location): preserve parent in "Create and Add another" modal flow
* fix: normalize line endings
* fix: preserve parent location state when modal closed
2025-07-12 00:08:41 +00:00
Ahmosys
d678c35c57
fix(frontend/scanner): close scanner modal after successful QR code scan ( #889 )
...
* fix(frontend/scanner): close scanner modal after successful QR code scan
* fix: linting errors
2025-07-10 17:00:08 -04:00
Matt
d3073b472d
Fix rootless
2025-07-10 16:58:23 -04:00
Matt
b274f81dbb
Fix broken docker actions
2025-07-10 16:56:50 -04:00
Matt
721e407600
Update docker-publish.yaml
2025-07-10 14:32:12 -04:00
Copilot
ca4aed7bd3
Fix GitHub Actions Docker workflow syntax errors for secrets access ( #882 )
...
* Initial plan
* Fix GitHub Actions Docker workflow syntax errors
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
* Fix GitHub Actions expression syntax for if conditions
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
2025-07-10 14:29:30 -04:00
Weblate
746bd50f24
Translated using Weblate (Slovenian)
...
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Murk <saso@workrum.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-07-10 13:52:06 +00:00
Weblate
945a768691
Translated using Weblate (Danish)
...
Currently translated at 99.7% (491 of 492 strings)
Co-authored-by: Heine Olsen <olsen10051988@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translation: Homebox/Frontend
2025-07-10 02:06:57 +00:00
Weblate
27237ae6d3
Translated using Weblate (Danish)
...
Currently translated at 95.9% (472 of 492 strings)
Co-authored-by: Heine Olsen <olsen10051988@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translation: Homebox/Frontend
2025-07-10 00:18:26 +00:00
Ahmed Al Hafoudh
4463867cf0
Pass label param to print command template ( #886 )
2025-07-09 12:11:16 -04:00
Weblate
95e2fb6a15
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 99.3% (489 of 492 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 99.3% (489 of 492 strings)
Co-authored-by: Anders Øyvind Urke-Sætre <andersoyvind@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translation: Homebox/Frontend
2025-07-09 12:35:25 +00:00
Copilot
e32dd0aaa5
Fix frontend duplicate tag creation in Label Selector ( #861 )
...
* Initial plan
* Fix frontend duplicate tag creation issue
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
2025-07-09 03:48:46 +00:00
Weblate
ee5c43dc29
Translated using Weblate (French)
...
Currently translated at 99.3% (489 of 492 strings)
Co-authored-by: buzz <buzz.eclair@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-07-08 20:00:40 +00:00
Matt
17c9685391
Better Copilot tooling
2025-07-07 11:46:41 -04:00
Copilot
fd41065250
Fix warranty section visibility when lifetime warranty is enabled ( #875 )
...
* Initial plan
* Fix warranty section visibility when lifetime warranty is enabled
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
2025-07-07 11:24:26 -04:00
Weblate
f9b1327507
Translated using Weblate (Slovak)
...
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-07-07 14:00:40 +00:00
mcarbonne
5ed0e5c000
fix ghcr repo + disable dockerhub if not provided ( #870 )
2025-07-06 21:43:07 -04:00
mcarbonne
ce1e58828a
Add migration for old sqlite timestamps ( #869 )
...
* add migration for old sqlite timestamps
* format python file + add support for negative timezones
2025-07-06 21:42:19 -04:00
Matt
d74508e214
Create .README FIRST.md
2025-07-06 08:26:40 -04:00
Weblate
178e676521
Update translation files
...
Updated by "Remove blank strings" add-on in Weblate.
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/
Translation: Homebox/Frontend
2025-07-06 12:14:50 +00:00
Weblate
c215373458
Translated using Weblate (Vietnamese)
...
Currently translated at 6.0% (30 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Ng. H. Duyên <huongduyen.work@gmail.com >
Co-authored-by: euforik <euforik22@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/vi/
Translation: Homebox/Frontend
2025-07-05 15:00:40 +00:00
Copilot
82bceb2185
Fix HBOX_LOG_LEVEL environment variable being ignored due to backwards logic ( #862 )
...
Co-authored-by: tankerkiller125 <3457368+tankerkiller125@users.noreply.github.com >
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
2025-07-04 23:44:20 -04:00
Matt
be1f3c0ad3
Use aspect ratio when making thumbnails and fix rotation ( #857 )
2025-07-04 11:44:08 -04:00
Weblate
518d13ccbb
Added translation using Weblate (Vietnamese)
...
Co-authored-by: Ng. H. Duyên <huongduyen.work@gmail.com >
2025-07-04 14:30:49 +00:00
Weblate
8bef7b236b
Translated using Weblate (Czech)
...
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-07-04 03:20:53 +00:00
Weblate
e774e57bee
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-03 01:16:22 +00:00
Weblate
d6d0d6dc56
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 94.7% (466 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 94.7% (466 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 23:53:49 +00:00
Weblate
7e0ea5fee5
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 94.3% (464 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 94.3% (464 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 23:50:20 +00:00
Weblate
10dcc1c01d
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 92.0% (453 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 92.0% (453 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 23:42:07 +00:00
Weblate
38c37111cf
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 86.5% (426 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 86.5% (426 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 23:21:29 +00:00
Weblate
bf27d147dd
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 77.8% (383 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 77.8% (383 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 23:01:12 +00:00
Weblate
000ccd6d38
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 76.4% (376 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 76.4% (376 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 22:58:12 +00:00
Weblate
f6fc30e218
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 76.0% (374 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 76.0% (374 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 22:57:51 +00:00
Weblate
b444774f9b
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 75.8% (373 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 22:57:31 +00:00
Weblate
91373dceb8
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 75.6% (372 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 75.6% (372 of 492 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: xdjohn99 <jh24cd@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-02 22:56:25 +00:00
Weblate
ceb1bf89a1
Translated using Weblate (Spanish)
...
Currently translated at 98.5% (485 of 492 strings)
Translated using Weblate (Spanish)
Currently translated at 98.5% (485 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-07-02 20:12:09 +00:00
Weblate
eb1428d3ac
Translated using Weblate (Spanish)
...
Currently translated at 98.3% (484 of 492 strings)
Translated using Weblate (Spanish)
Currently translated at 98.3% (484 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-07-02 20:11:48 +00:00
Weblate
e4ac7633a5
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 98.9% (487 of 492 strings)
Translated using Weblate (Spanish)
Currently translated at 97.9% (482 of 492 strings)
Translated using Weblate (Spanish)
Currently translated at 97.9% (482 of 492 strings)
Translated using Weblate (Swedish)
Currently translated at 68.0% (335 of 492 strings)
Translated using Weblate (Swedish)
Currently translated at 68.0% (335 of 492 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: networked47 <nic.walsh@gmail.com >
Co-authored-by: terhoy <terjeho@hotmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-07-02 20:10:53 +00:00
Matt
bd604f5867
Update .goreleaser.yaml
2025-07-01 20:36:33 -04:00
Matthew Kilgore
b6b939db40
Merge remote-tracking branch 'origin/main'
...
# Conflicts:
# frontend/locales/fr.json
# frontend/locales/sk-SK.json
# frontend/locales/sl.json
2025-07-01 19:14:07 -04:00
Matthew Kilgore
d3f56b1b95
Fix version links for all languages
2025-07-01 19:13:52 -04:00
Weblate
a258e1d2bc
Translated using Weblate (Slovak)
...
Currently translated at 99.1% (488 of 492 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (French)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: Telectroboy <telectroboy@hotmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-07-01 23:13:32 +00:00
Stanley Jochman
5ca671a4ab
fix: footer release link points to wrong link ( #830 )
2025-07-01 19:13:15 -04:00
Matthew Kilgore
ccdab8bac1
Fix attachments get method
2025-07-01 19:03:24 -04:00
Matt
0d2a6d6ac8
Revert weblate skipping
2025-07-01 10:09:40 -04:00
Matt
e159dd8a0b
Merge commit from fork
2025-07-01 09:56:34 -04:00
Matt
b311a5c9ed
Update CreateModal.vue
2025-07-01 08:53:12 -04:00
Matthew Kilgore
04c8e38ecf
Escape file name for content-disposition.
2025-06-30 20:55:11 -04:00
Matthew Kilgore
1fd2f42282
Hopefully fixed ARMv7 Rootless build
2025-06-30 20:44:20 -04:00
Matthew Kilgore
d3cff18cc6
Ignore weblate for builds
2025-06-30 20:21:53 -04:00
Weblate
3e27c24fbd
Translated using Weblate (Japanese)
...
Currently translated at 59.9% (295 of 492 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 96.5% (475 of 492 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.2% (326 of 492 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 74.5% (367 of 492 strings)
Translated using Weblate (German)
Currently translated at 97.7% (481 of 492 strings)
Translated using Weblate (English)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-07-01 00:17:05 +00:00
Weblate
acd5acd4cf
Translated using Weblate (Slovak)
...
Currently translated at 98.7% (486 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 23:57:40 +00:00
Weblate
71dc5fcb23
Translated using Weblate (Slovak)
...
Currently translated at 98.5% (485 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:45:18 +00:00
Weblate
2ff5f4ca0b
Translated using Weblate (Slovak)
...
Currently translated at 91.0% (448 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 91.0% (448 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:27:53 +00:00
Weblate
12831a40d0
Translated using Weblate (Slovak)
...
Currently translated at 88.6% (436 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 88.6% (436 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:25:38 +00:00
Weblate
c966090889
Translated using Weblate (Slovak)
...
Currently translated at 87.3% (430 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 87.3% (430 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:24:27 +00:00
Weblate
f03eb637a7
Translated using Weblate (Slovak)
...
Currently translated at 85.1% (419 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 85.1% (419 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:22:40 +00:00
Weblate
49ea34f352
Translated using Weblate (Slovak)
...
Currently translated at 83.7% (412 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 83.7% (412 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:21:36 +00:00
Weblate
85d91667eb
Translated using Weblate (Slovak)
...
Currently translated at 81.3% (400 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 81.3% (400 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:14:34 +00:00
Weblate
458554b6e1
Translated using Weblate (Slovak)
...
Currently translated at 78.2% (385 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 78.2% (385 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:05:37 +00:00
Weblate
79ff5cedc6
Translated using Weblate (Slovak)
...
Currently translated at 77.6% (382 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 77.6% (382 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:05:00 +00:00
Weblate
f0008abd04
Translated using Weblate (Slovak)
...
Currently translated at 77.4% (381 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 77.4% (381 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:04:12 +00:00
Weblate
8a377b3e4d
Translated using Weblate (Slovak)
...
Currently translated at 77.2% (380 of 492 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 20:03:44 +00:00
Weblate
e7d31722f7
Translated using Weblate (Slovak)
...
Currently translated at 77.0% (379 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 77.0% (379 of 492 strings)
Translated using Weblate (German)
Currently translated at 99.3% (489 of 492 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Daniel Galle <smarthome@galle-fw.com >
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-30 17:00:40 +00:00
Matthew Kilgore
52b4506e12
Fix docker builds
2025-06-29 20:44:20 -04:00
Matthew Kilgore
cb9631c999
Try this to fix the build? (More like the original)
2025-06-29 20:28:35 -04:00
Matthew Kilgore
6e3186a9de
Merge remote-tracking branch 'origin/main'
2025-06-29 20:08:54 -04:00
Matthew Kilgore
a67070f965
Hopefully fix build
2025-06-29 20:08:43 -04:00
Matthew Kilgore
c61c54600d
Add goreleaser added dependencies?
2025-06-29 14:29:23 -04:00
Matthew Kilgore
16dbada31a
Update golang version in github actions
2025-06-29 14:02:47 -04:00
Weblate
df8b27d9a6
Translated using Weblate (Slovak)
...
Currently translated at 68.2% (336 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 68.2% (336 of 492 strings)
Translated using Weblate (Slovak)
Currently translated at 68.2% (336 of 492 strings)
Co-authored-by: Jose Riha <jose1711@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-06-29 16:43:10 +00:00
Matt
f30c9d9156
fix: foreign key issue with thumbnails ( #824 )
2025-06-29 12:24:22 -04:00
Weblate
d83767f4c2
Translated using Weblate (Czech)
...
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-06-29 00:55:20 +00:00
zebrapurring
0b75dbf888
fix: set page size to 24 in order to always display full rows of items ( #810 )
...
* fix: set page size to 24 in order to always display full rows of items
* feat: remove 2xl option for items
---------
Co-authored-by: zebrapurring <>
Co-authored-by: Tonya <tonya@tokia.dev >
2025-06-28 23:10:44 +00:00
Nikolai Oakfield
c9d055fe03
Prevent self-referencing locations and items as parents ( #773 )
...
* prevent current location and descendants from being selected as parent
* prevent an item from showing up in the parent items drop-down for itself
* pass location object to filter function to allow for more flexible filtering
* align exclude prop and fix type comparison, change item filter to array of ItemsObjects to allow for descendant filtering in future
* fix linting prop reference
2025-06-28 22:58:46 +00:00
zebrapurring
c1c8eb649c
fix: display all item labels in the element card ( #809 )
...
Co-authored-by: zebrapurring <>
2025-06-28 22:58:34 +00:00
Crumbowl
97bfb2d470
Add --no-fork to prevent slow and hanging UI ( #817 )
2025-06-27 13:11:21 -04:00
Weblate
5d1b023d19
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 75.2% (370 of 492 strings)
Co-authored-by: Jixing Tang <jasontang1992@163.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-06-27 15:00:40 +00:00
Matt
4861a8537f
More image type support for thumbnails ( #814 )
2025-06-26 10:19:34 -04:00
Weblate
09cccc63a7
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 99.7% (491 of 492 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (492 of 492 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: yngveskog <yngve.skog@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-06-25 11:55:11 +00:00
Michael Manganiello
230294ebb6
feat: Display number of items in Location/Label page ( #805 )
...
* feat: Display number of items in Location/Label page
When viewing a Location or Label page, the number of items directly
associated with that Location or Label is now displayed in the section
header.
* style: adjust the style on the item count
---------
Co-authored-by: Tonya <tonya@tokia.dev >
2025-06-25 03:24:34 +00:00
Weblate
d97bfb95e1
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 100.0% (492 of 492 strings)
Translated using Weblate (Slovenian)
Currently translated at 99.1% (488 of 492 strings)
Translated using Weblate (French)
Currently translated at 97.7% (481 of 492 strings)
Translated using Weblate (English)
Currently translated at 97.5% (480 of 492 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Stephen Bennett <bennett18@gmail.com >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Co-authored-by: terhoy <terjeho@hotmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-24 15:01:03 +00:00
Weblate
8577273064
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 95.9% (472 of 492 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 95.9% (472 of 492 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 95.9% (472 of 492 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 79.4% (386 of 486 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 79.4% (386 of 486 strings)
Translated using Weblate (German)
Currently translated at 100.0% (486 of 486 strings)
Translated using Weblate (German)
Currently translated at 100.0% (486 of 486 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Sebastian <homeboxtranslate@sschefold.de >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: terhoy <terjeho@hotmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translation: Homebox/Frontend
2025-06-23 15:37:16 +00:00
Tonya
ef39549c37
Custom Colored Labels ( #801 )
...
* feat: custom coloured labels
* chore: lint
* feat: add ColorSelector component for improved color selection in labels and integrate it into CreateModal and Selector components
* style: lint
* fix: update ColorSelector and Selector components to use empty string instead of null for default color values for types
2025-06-23 15:52:32 +01:00
dependabot[bot]
2afa5d1374
Bump github.com/go-chi/chi/v5 ( #799 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-22 21:51:56 -04:00
Matt
989100d299
Thumbnails ( #797 )
...
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: tonya <tonya@tokia.dev >
2025-06-22 21:32:48 -04:00
Michael Manganiello
8493ec0c90
fix: Table sorting for ID and date columns ( #802 )
...
The usage of `parseFloat` was breaking the sorting of ID and date
columns in the table.
This is because `parseFloat("000-123")` returns `0` instead of `123` or
`NaN`, and `parseFloat("2025-01-02T03:04:05.678Z")` returns `2025`.
Replacing `parseFloat` with `Number` fixes the issue, as now the values
received for Asset ID and date columns will correctly return `NaN`, and
end up being sorted as strings.
2025-06-22 23:45:33 +00:00
Michael Manganiello
c53cefe6cb
fix: Add page title for Label and Location pages ( #803 )
...
When accessing a specific label or location, the page title is now set
to the name of that label or location.
The issue was more notorious when opening these pages in new tabs, which
didn't inherit the title from the previous page, resulting in a
title with the raw page URL.
2025-06-22 23:39:37 +00:00
marcofenoglio
e664dfcfbd
Corrected Single quote ( #798 )
2025-06-20 11:23:44 -04:00
Matt
e1b232e0d1
Abstract Attachment Storage ( #777 )
...
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-06-19 10:26:12 -04:00
Weblate
799c36ec3b
Translated using Weblate (Swedish)
...
Currently translated at 68.8% (331 of 481 strings)
Co-authored-by: networked47 <nic.walsh@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-06-18 11:28:07 +00:00
Weblate
f3eebbaca0
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (481 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (481 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (481 of 481 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-06-16 20:35:29 +00:00
Weblate
73ca64f41c
Translated using Weblate (Dutch)
...
Currently translated at 86.0% (414 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 86.0% (414 of 481 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-06-16 19:54:42 +00:00
Weblate
354a3ae5c0
Translated using Weblate (Slovenian)
...
Currently translated at 99.3% (478 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 84.4% (406 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 84.4% (406 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 84.4% (406 of 481 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 19:51:19 +00:00
Weblate
f7e1e77e07
Translated using Weblate (Slovenian)
...
Currently translated at 94.1% (453 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 69.6% (335 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:59:21 +00:00
Weblate
12d3bdb6e6
Translated using Weblate (Slovenian)
...
Currently translated at 89.8% (432 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 89.8% (432 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:48:11 +00:00
Weblate
2a59c8200e
Translated using Weblate (Slovenian)
...
Currently translated at 88.5% (426 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 88.5% (426 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:46:40 +00:00
Weblate
5e47ffd724
Translated using Weblate (Slovenian)
...
Currently translated at 87.3% (420 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 87.3% (420 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:45:11 +00:00
Weblate
5b7e0e4eee
Translated using Weblate (Slovenian)
...
Currently translated at 85.0% (409 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 85.0% (409 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:41:48 +00:00
Weblate
74f51bd8a0
Translated using Weblate (Slovenian)
...
Currently translated at 84.1% (405 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 84.1% (405 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:40:27 +00:00
Weblate
ca1e651f8b
Translated using Weblate (Slovenian)
...
Currently translated at 83.9% (404 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 83.9% (404 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:39:54 +00:00
Weblate
8b12bbd81d
Translated using Weblate (Slovenian)
...
Currently translated at 83.5% (402 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 83.5% (402 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:37:22 +00:00
Weblate
70bccfef1f
Translated using Weblate (Slovenian)
...
Currently translated at 83.3% (401 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 83.3% (401 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:37:08 +00:00
Weblate
423d20909b
Translated using Weblate (Slovenian)
...
Currently translated at 82.3% (396 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 82.3% (396 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:34:03 +00:00
Weblate
523ad873e4
Translated using Weblate (Slovenian)
...
Currently translated at 80.4% (387 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 80.4% (387 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:22:43 +00:00
Weblate
ad51cb48b8
Translated using Weblate (Slovenian)
...
Currently translated at 80.0% (385 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 80.0% (385 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:22:24 +00:00
Weblate
5c594a10d4
Translated using Weblate (Slovenian)
...
Currently translated at 77.7% (374 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 77.7% (374 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:16:26 +00:00
Weblate
497cfcc3f5
Translated using Weblate (Slovenian)
...
Currently translated at 75.2% (362 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 75.2% (362 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:12:55 +00:00
Weblate
2f61c68981
Translated using Weblate (Slovenian)
...
Currently translated at 74.8% (360 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 74.8% (360 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:11:29 +00:00
Weblate
d7bd1bcfa8
Translated using Weblate (Slovenian)
...
Currently translated at 72.7% (350 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 72.7% (350 of 481 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-06-16 14:07:53 +00:00
Weblate
fde4660bba
Translated using Weblate (Bosnian)
...
Currently translated at 14.3% (69 of 481 strings)
Translated using Weblate (Lithuanian)
Currently translated at 10.8% (52 of 481 strings)
Translated using Weblate (Luxembourgish)
Currently translated at 0.0% (0 of 481 strings)
Translated using Weblate (Albanian)
Currently translated at 19.5% (94 of 481 strings)
Translated using Weblate (Albanian)
Currently translated at 19.5% (94 of 481 strings)
Translated using Weblate (Tamil)
Currently translated at 1.4% (7 of 481 strings)
Translated using Weblate (Tamil)
Currently translated at 1.4% (7 of 481 strings)
Translated using Weblate (Korean)
Currently translated at 6.4% (31 of 481 strings)
Translated using Weblate (Korean)
Currently translated at 6.4% (31 of 481 strings)
Translated using Weblate (Indonesian)
Currently translated at 58.6% (282 of 481 strings)
Translated using Weblate (Indonesian)
Currently translated at 58.6% (282 of 481 strings)
Translated using Weblate (Thai)
Currently translated at 22.6% (109 of 481 strings)
Translated using Weblate (Thai)
Currently translated at 22.6% (109 of 481 strings)
Translated using Weblate (Thai)
Currently translated at 22.6% (109 of 481 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 59.4% (286 of 481 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 59.4% (286 of 481 strings)
Translated using Weblate (Slovak)
Currently translated at 64.8% (312 of 481 strings)
Translated using Weblate (Slovak)
Currently translated at 64.8% (312 of 481 strings)
Translated using Weblate (Danish)
Currently translated at 63.6% (306 of 481 strings)
Translated using Weblate (Danish)
Currently translated at 63.6% (306 of 481 strings)
Translated using Weblate (Romanian)
Currently translated at 58.4% (281 of 481 strings)
Translated using Weblate (Romanian)
Currently translated at 58.4% (281 of 481 strings)
Translated using Weblate (Romanian)
Currently translated at 58.4% (281 of 481 strings)
Translated using Weblate (Finnish)
Currently translated at 67.5% (325 of 481 strings)
Translated using Weblate (Japanese)
Currently translated at 61.3% (295 of 481 strings)
Translated using Weblate (Japanese)
Currently translated at 61.3% (295 of 481 strings)
Translated using Weblate (Ukrainian)
Currently translated at 67.5% (325 of 481 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 99.7% (480 of 481 strings)
Translated using Weblate (Chinese (Simplified) (zh_MO))
Currently translated at 38.0% (183 of 481 strings)
Translated using Weblate (Chinese (Simplified) (zh_MO))
Currently translated at 38.0% (183 of 481 strings)
Translated using Weblate (Chinese (Traditional Han script, Hong Kong))
Currently translated at 18.2% (88 of 481 strings)
Translated using Weblate (Chinese (Traditional Han script, Hong Kong))
Currently translated at 18.2% (88 of 481 strings)
Translated using Weblate (Chinese (Traditional Han script, Hong Kong))
Currently translated at 18.2% (88 of 481 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 67.9% (327 of 481 strings)
Translated using Weblate (Hungarian)
Currently translated at 68.8% (331 of 481 strings)
Translated using Weblate (Polish)
Currently translated at 67.3% (324 of 481 strings)
Translated using Weblate (Catalan)
Currently translated at 57.3% (276 of 481 strings)
Translated using Weblate (Catalan)
Currently translated at 57.3% (276 of 481 strings)
Translated using Weblate (Catalan)
Currently translated at 57.3% (276 of 481 strings)
Translated using Weblate (Slovenian)
Currently translated at 69.4% (334 of 481 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 70.8% (341 of 481 strings)
Translated using Weblate (Russian)
Currently translated at 59.4% (286 of 481 strings)
Translated using Weblate (Russian)
Currently translated at 59.4% (286 of 481 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 25.7% (124 of 481 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 25.7% (124 of 481 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 25.7% (124 of 481 strings)
Translated using Weblate (Swedish)
Currently translated at 67.3% (324 of 481 strings)
Translated using Weblate (Turkish)
Currently translated at 64.4% (310 of 481 strings)
Translated using Weblate (Turkish)
Currently translated at 64.4% (310 of 481 strings)
Translated using Weblate (Turkish)
Currently translated at 64.4% (310 of 481 strings)
Translated using Weblate (French)
Currently translated at 99.7% (480 of 481 strings)
Translated using Weblate (German)
Currently translated at 99.7% (480 of 481 strings)
Translated using Weblate (Italian)
Currently translated at 83.9% (404 of 481 strings)
Translated using Weblate (Dutch)
Currently translated at 69.4% (334 of 481 strings)
Co-authored-by: Anonymous <noreply@weblate.org >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: stegl <primsteg@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/bs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fi/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ko/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/lb/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/lt/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ro/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sq/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ta/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/th/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hant/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hant_HK/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_MO/
Translation: Homebox/Frontend
2025-06-16 13:00:16 +00:00
Weblate
e1d625ae80
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (481 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (481 of 481 strings)
Co-authored-by: Daniel Barea <dbarelop@gmail.com >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 12:58:48 +00:00
Weblate
1bb80f5537
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (481 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (481 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 12:24:55 +00:00
Weblate
d3220d2862
Translated using Weblate (Spanish)
...
Currently translated at 99.5% (479 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:52:08 +00:00
Weblate
761d1660b4
Translated using Weblate (Spanish)
...
Currently translated at 99.3% (478 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 99.3% (478 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:51:41 +00:00
Weblate
19300d1b37
Translated using Weblate (Spanish)
...
Currently translated at 99.1% (477 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 99.1% (477 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:51:28 +00:00
Weblate
5aca7e2f62
Translated using Weblate (Spanish)
...
Currently translated at 98.9% (476 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 98.9% (476 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:51:05 +00:00
Weblate
475a1bbf39
Translated using Weblate (Spanish)
...
Currently translated at 98.7% (475 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 98.7% (475 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:50:42 +00:00
Weblate
2eafbb216e
Translated using Weblate (Spanish)
...
Currently translated at 98.5% (474 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:49:53 +00:00
Weblate
3d66f4bb89
Translated using Weblate (Spanish)
...
Currently translated at 98.3% (473 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 98.3% (473 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 98.3% (473 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:49:21 +00:00
Weblate
021e4a39cf
Translated using Weblate (Spanish)
...
Currently translated at 97.7% (470 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 97.7% (470 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:46:43 +00:00
Weblate
62a4086776
Translated using Weblate (Spanish)
...
Currently translated at 96.0% (462 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 96.0% (462 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:30:18 +00:00
Weblate
a04ae3c59a
Translated using Weblate (Spanish)
...
Currently translated at 95.6% (460 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 95.6% (460 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:29:48 +00:00
Weblate
645ea4b1b5
Translated using Weblate (Spanish)
...
Currently translated at 95.4% (459 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 95.4% (459 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:29:38 +00:00
Weblate
1c4530cedd
Translated using Weblate (Spanish)
...
Currently translated at 95.2% (458 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 95.2% (458 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:29:22 +00:00
Weblate
daacdc452d
Translated using Weblate (Spanish)
...
Currently translated at 95.0% (457 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 95.0% (457 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:29:13 +00:00
Weblate
eb400c437f
Translated using Weblate (Spanish)
...
Currently translated at 94.1% (453 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 94.1% (453 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:22:15 +00:00
Weblate
9160deb9b1
Translated using Weblate (Spanish)
...
Currently translated at 93.1% (448 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 93.1% (448 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:21:10 +00:00
Weblate
52f977497f
Translated using Weblate (Spanish)
...
Currently translated at 92.9% (447 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 92.9% (447 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:20:53 +00:00
Weblate
be0493f5b5
Translated using Weblate (Spanish)
...
Currently translated at 91.4% (440 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 91.4% (440 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:19:40 +00:00
Weblate
28a47dce09
Translated using Weblate (Spanish)
...
Currently translated at 90.6% (436 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 90.6% (436 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:18:08 +00:00
Weblate
2b7ed6ff94
Translated using Weblate (Spanish)
...
Currently translated at 90.2% (434 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 90.2% (434 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:16:28 +00:00
Weblate
ac006c7a5f
Translated using Weblate (Spanish)
...
Currently translated at 89.6% (431 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 89.6% (431 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:14:40 +00:00
Weblate
5c8a7918fa
Translated using Weblate (Spanish)
...
Currently translated at 88.9% (428 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 88.9% (428 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:14:18 +00:00
Weblate
ec97ad6de1
Translated using Weblate (Spanish)
...
Currently translated at 88.7% (427 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 88.7% (427 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:13:43 +00:00
Weblate
a7b0fb3b79
Translated using Weblate (Spanish)
...
Currently translated at 87.7% (422 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 87.7% (422 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:13:10 +00:00
Weblate
d0e07e3d94
Translated using Weblate (Spanish)
...
Currently translated at 87.5% (421 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 87.5% (421 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:12:39 +00:00
Weblate
8631fa01e4
Translated using Weblate (Spanish)
...
Currently translated at 87.3% (420 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 87.3% (420 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:11:41 +00:00
Weblate
b2f77d4700
Translated using Weblate (Spanish)
...
Currently translated at 86.6% (417 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 86.6% (417 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:11:08 +00:00
Weblate
fdc909fd33
Translated using Weblate (Spanish)
...
Currently translated at 86.4% (416 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 86.4% (416 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:10:59 +00:00
Weblate
e5247cbc3d
Translated using Weblate (Spanish)
...
Currently translated at 86.0% (414 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 86.0% (414 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:10:39 +00:00
Weblate
e122f6f422
Translated using Weblate (Spanish)
...
Currently translated at 84.6% (407 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 84.6% (407 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:08:05 +00:00
Weblate
024e23519a
Translated using Weblate (Spanish)
...
Currently translated at 84.1% (405 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:07:35 +00:00
Weblate
6f73433112
Translated using Weblate (Spanish)
...
Currently translated at 83.9% (404 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 83.9% (404 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:07:05 +00:00
Weblate
3471098f75
Translated using Weblate (Spanish)
...
Currently translated at 83.7% (403 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 83.7% (403 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:06:33 +00:00
Weblate
42d61dcc9d
Translated using Weblate (Spanish)
...
Currently translated at 83.5% (402 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 83.5% (402 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:06:03 +00:00
Weblate
ccc5509b15
Translated using Weblate (Spanish)
...
Currently translated at 82.5% (397 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 82.5% (397 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:04:31 +00:00
Weblate
73f772b2ea
Translated using Weblate (Spanish)
...
Currently translated at 82.1% (395 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 82.1% (395 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:03:47 +00:00
Weblate
a5e3fe57e1
Translated using Weblate (Spanish)
...
Currently translated at 81.9% (394 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 81.9% (394 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:03:27 +00:00
Weblate
d90081a1e1
Translated using Weblate (Spanish)
...
Currently translated at 81.7% (393 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 81.7% (393 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 11:03:11 +00:00
Weblate
3633d4ba2d
Translated using Weblate (Spanish)
...
Currently translated at 80.4% (387 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 80.4% (387 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:53:32 +00:00
Weblate
463f271732
Translated using Weblate (Spanish)
...
Currently translated at 80.2% (386 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 80.2% (386 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:53:12 +00:00
Weblate
1977596a63
Translated using Weblate (Spanish)
...
Currently translated at 79.8% (384 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 79.8% (384 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:51:51 +00:00
Weblate
1e90ba65f9
Translated using Weblate (Spanish)
...
Currently translated at 79.6% (383 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 79.6% (383 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:50:06 +00:00
Weblate
414359fc19
Translated using Weblate (Spanish)
...
Currently translated at 78.7% (379 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 78.7% (379 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:40:44 +00:00
Weblate
a90d40b26d
Translated using Weblate (Spanish)
...
Currently translated at 78.3% (377 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 78.3% (377 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:39:16 +00:00
Weblate
17a658567a
Translated using Weblate (Spanish)
...
Currently translated at 77.7% (374 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 77.7% (374 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:38:49 +00:00
Weblate
9932a7b5fd
Translated using Weblate (Spanish)
...
Currently translated at 77.1% (371 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 77.1% (371 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:37:48 +00:00
Weblate
6388c0acce
Translated using Weblate (Spanish)
...
Currently translated at 76.9% (370 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 76.9% (370 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:36:40 +00:00
Weblate
b96693ecde
Translated using Weblate (Spanish)
...
Currently translated at 76.7% (369 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 76.7% (369 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:36:20 +00:00
Weblate
860fac28b7
Translated using Weblate (Spanish)
...
Currently translated at 76.2% (367 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 76.2% (367 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:35:58 +00:00
Weblate
dafcf3b8e4
Translated using Weblate (Spanish)
...
Currently translated at 76.0% (366 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 76.0% (366 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:35:41 +00:00
Weblate
90e2505941
Translated using Weblate (Spanish)
...
Currently translated at 75.2% (362 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 75.2% (362 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:34:50 +00:00
Weblate
c76cb13ec5
Translated using Weblate (Spanish)
...
Currently translated at 75.0% (361 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 75.0% (361 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:34:36 +00:00
Weblate
e825f4ea71
Translated using Weblate (Spanish)
...
Currently translated at 74.4% (358 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 74.4% (358 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:33:36 +00:00
Weblate
4157e47660
Translated using Weblate (Spanish)
...
Currently translated at 73.5% (354 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 73.5% (354 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-16 10:32:28 +00:00
Weblate
1b84bf7d2c
Translated using Weblate (Spanish)
...
Currently translated at 73.1% (352 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 73.1% (352 of 481 strings)
Translated using Weblate (Italian)
Currently translated at 83.9% (404 of 481 strings)
Translated using Weblate (Italian)
Currently translated at 83.9% (404 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-06-16 10:12:21 +00:00
Weblate
9f77b98f4b
Translated using Weblate (Czech)
...
Currently translated at 100.0% (481 of 481 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-06-15 13:00:40 +00:00
Weblate
f71ccb76a0
Translated using Weblate (Spanish)
...
Currently translated at 71.7% (345 of 481 strings)
Co-authored-by: j richardson <jrichocean@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-14 00:00:40 +00:00
Weblate
1e136ef41d
Translated using Weblate (Spanish)
...
Currently translated at 71.7% (345 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 71.7% (345 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: j richardson <jrichocean@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-13 20:00:20 +00:00
Weblate
bb5fb34114
Translated using Weblate (Spanish)
...
Currently translated at 71.5% (344 of 481 strings)
Translated using Weblate (Spanish)
Currently translated at 71.5% (344 of 481 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: j richardson <jrichocean@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-06-13 19:56:03 +00:00
Tonya
f16ad427eb
Fix small bugs in UI ( #786 )
...
* chore: added `rel="noopener noreferrer"` to external links for improved security on homepage
* fix: reused variable name
* feat: make the item table use a link instead of a click event
* fix: pagination now shows correct page if loading page that isnt 1
* fix: make save button sticky again on item edit page
* fix: adjust sticky header positioning based on whether legacy header is enabled
* fix: navigate to homepage on unauthorized request in useUserApi function
* fix: enhance link handling in DetailsSection
* fix: improve markdown rendering, don't add big breaks between lines, make the gap smaller and dont have a trailing newline
* fix: use secondary colour as switch secondary colour so its more visible against bg
* fix: call refresh methods on location and label stores during component mount for better data consistency
* fix: loading indicators
* fix: convert detail.text to string for correct URL handling in DetailsSection component
* fix: use replace instead of splice to remove newline at end of markdown
* fix: use css vars for header height
2025-06-13 09:29:33 +01:00
Weblate
1ac688f08d
Translated using Weblate (French)
...
Currently translated at 100.0% (480 of 480 strings)
Translated using Weblate (French)
Currently translated at 100.0% (480 of 480 strings)
Translated using Weblate (French)
Currently translated at 100.0% (480 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 15:00:40 +00:00
Weblate
9a5c798346
Translated using Weblate (French)
...
Currently translated at 96.4% (463 of 480 strings)
Translated using Weblate (French)
Currently translated at 96.4% (463 of 480 strings)
Translated using Weblate (French)
Currently translated at 96.4% (463 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 10:23:24 +00:00
Weblate
364599e6ac
Translated using Weblate (French)
...
Currently translated at 95.0% (456 of 480 strings)
Translated using Weblate (French)
Currently translated at 95.0% (456 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 10:21:48 +00:00
Weblate
a6d03e37aa
Translated using Weblate (French)
...
Currently translated at 89.3% (429 of 480 strings)
Translated using Weblate (French)
Currently translated at 89.3% (429 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 09:58:33 +00:00
Weblate
3d7146582b
Translated using Weblate (French)
...
Currently translated at 87.0% (418 of 480 strings)
Translated using Weblate (French)
Currently translated at 87.0% (418 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 09:54:36 +00:00
Weblate
477b7b9eda
Translated using Weblate (French)
...
Currently translated at 82.7% (397 of 480 strings)
Translated using Weblate (French)
Currently translated at 82.7% (397 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 09:47:43 +00:00
Weblate
b4184db27b
Translated using Weblate (French)
...
Currently translated at 79.7% (383 of 480 strings)
Translated using Weblate (French)
Currently translated at 79.7% (383 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 09:32:17 +00:00
Weblate
52e375e680
Translated using Weblate (French)
...
Currently translated at 79.3% (381 of 480 strings)
Translated using Weblate (French)
Currently translated at 79.3% (381 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 09:31:10 +00:00
Weblate
3839ced4fe
Translated using Weblate (French)
...
Currently translated at 78.9% (379 of 480 strings)
Translated using Weblate (French)
Currently translated at 78.9% (379 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 09:30:38 +00:00
Weblate
e1e4b72f94
Translated using Weblate (French)
...
Currently translated at 73.1% (351 of 480 strings)
Translated using Weblate (French)
Currently translated at 73.1% (351 of 480 strings)
Co-authored-by: Lucas Placentino <23436953+LucasPlacentino@users.noreply.github.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-06-11 09:13:29 +00:00
Weblate
7c42130c46
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 71.0% (341 of 480 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 71.0% (341 of 480 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: WilliamStark <yujinghao007@163.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-06-10 12:00:40 +00:00
LunarEclipse363
04df4d8a08
Fixed labelmaker pagination on PostgreSQL ( #779 )
...
Fixes #753
2025-06-09 15:23:56 -04:00
Matthew Kilgore
1d3d7b4788
Revert "fix: Uploads, downloads, etc. now work properly."
...
This reverts commit c02b77c3fd .
2025-06-07 12:43:39 -04:00
Matthew Kilgore
d65368b20c
Merge remote-tracking branch 'origin/main'
2025-06-07 12:41:11 -04:00
Matthew Kilgore
c02b77c3fd
fix: Uploads, downloads, etc. now work properly.
2025-06-07 12:40:59 -04:00
Michael Manganiello
e955183dc1
fix: Show item Purchase and Sold sections when date is set ( #769 )
...
Consider the case where an item has a purchase or sold date set, but no
other details, and display the sections in this case.
Fixes #759 .
2025-06-05 21:35:53 +00:00
Matt Kilgore
f000e14f07
Update passwords to use Argon2ID ( #695 )
...
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-06-05 10:19:05 -04:00
Michael Manganiello
4988c22250
feat: Add table column for Asset ID ( #766 )
...
Include a new `Asset ID` column in the item view table, disabled by
default.
2025-06-05 10:40:47 +01:00
Weblate
9db59d3822
Translated using Weblate (Portuguese (Portugal))
...
Currently translated at 100.0% (480 of 480 strings)
Co-authored-by: FilipeAb <filipe_abreu@live.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translation: Homebox/Frontend
2025-06-04 14:23:13 +00:00
Matt Kilgore
676b87d87e
Fix #763
...
See https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Attributes/capture
2025-06-03 19:54:43 -04:00
Weblate
329a8d8741
Translated using Weblate (Portuguese (Portugal))
...
Currently translated at 55.4% (266 of 480 strings)
Co-authored-by: Luís Alves <luisalvesw@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translation: Homebox/Frontend
2025-06-02 18:00:40 +00:00
Weblate
7f1ea60e54
Translated using Weblate (Korean)
...
Currently translated at 6.4% (31 of 480 strings)
Translated using Weblate (Korean)
Currently translated at 6.4% (31 of 480 strings)
Co-authored-by: Jihyeon Gim <potatogim@potatogim.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ko/
Translation: Homebox/Frontend
2025-05-31 18:00:40 +00:00
Weblate
14c6e2672e
Translated using Weblate (Catalan)
...
Currently translated at 57.5% (276 of 480 strings)
Translated using Weblate (Catalan)
Currently translated at 57.5% (276 of 480 strings)
Translated using Weblate (Catalan)
Currently translated at 57.5% (276 of 480 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: YamiGhor <yamighor@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translation: Homebox/Frontend
2025-05-30 20:00:40 +00:00
Weblate
2f3f13b4b1
Translated using Weblate (Chinese (Traditional Han script))
...
Currently translated at 25.8% (124 of 480 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 25.8% (124 of 480 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 25.8% (124 of 480 strings)
Translated using Weblate (German)
Currently translated at 100.0% (480 of 480 strings)
Translated using Weblate (German)
Currently translated at 100.0% (480 of 480 strings)
Co-authored-by: Horst Späht <tnqazaa3@anonaddy.me >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: TonySu <susu2721404@gmail.com >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: tikoe29 <tikoe@koeppen.cc >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hant/
Translation: Homebox/Frontend
2025-05-30 14:00:40 +00:00
Weblate
f06ad96b35
Translated using Weblate (German)
...
Currently translated at 90.0% (432 of 480 strings)
Co-authored-by: Horst Späht <tnqazaa3@anonaddy.me >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-05-30 09:24:27 +00:00
Weblate
7038d57576
Translated using Weblate (German)
...
Currently translated at 90.0% (432 of 480 strings)
Translated using Weblate (German)
Currently translated at 90.0% (432 of 480 strings)
Co-authored-by: Horst Späht <tnqazaa3@anonaddy.me >
Co-authored-by: tikoe29 <tikoe@koeppen.cc >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-05-30 09:23:57 +00:00
Weblate
05c11c1c57
Translated using Weblate (German)
...
Currently translated at 86.2% (414 of 480 strings)
Translated using Weblate (German)
Currently translated at 86.2% (414 of 480 strings)
Translated using Weblate (German)
Currently translated at 86.2% (414 of 480 strings)
Co-authored-by: Horst Späht <tnqazaa3@anonaddy.me >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: tikoe29 <tikoe@koeppen.cc >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-05-30 09:19:59 +00:00
Weblate
b073b578bd
Translated using Weblate (Czech)
...
Currently translated at 100.0% (480 of 480 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (480 of 480 strings)
Translated using Weblate (Catalan)
Currently translated at 56.8% (273 of 480 strings)
Translated using Weblate (Catalan)
Currently translated at 56.8% (273 of 480 strings)
Translated using Weblate (German)
Currently translated at 78.3% (376 of 480 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: YamiGhor <yamighor@gmail.com >
Co-authored-by: tikoe29 <tikoe@koeppen.cc >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-05-29 23:00:40 +00:00
Weblate
8db96b1f6e
Translated using Weblate (Czech)
...
Currently translated at 75.2% (361 of 480 strings)
Translated using Weblate (Czech)
Currently translated at 75.2% (361 of 480 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: Weblate <noreply-mt-weblate@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-29 18:09:53 +00:00
Weblate
74cefafdb7
Translated using Weblate (Czech)
...
Currently translated at 70.6% (339 of 480 strings)
Translated using Weblate (English)
Currently translated at 100.0% (480 of 480 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-05-29 18:00:40 +00:00
Nikolai Oakfield
3a4fae5eb8
Fix untranslated strings ( #756 )
...
* add missing translations and translate page titles
* fix: actually use the declared localized variables
* lint and prettier fixes
* add missing translations for toasts and confirms
* use components for shift/enter keys, add pluralization for photos, and fix primary photo conditional
* remove prop defaults since we're computing these anyways
2025-05-29 12:56:30 +00:00
tonya
e6f7397b30
feat: use dynamic view height for better mobile height
2025-05-29 09:39:38 +00:00
Weblate
6a4e47c617
Translated using Weblate (Czech)
...
Currently translated at 99.4% (332 of 334 strings)
Translated using Weblate (French)
Currently translated at 99.7% (333 of 334 strings)
Co-authored-by: Nikolai Oakfield <44122708+nikolaioak@users.noreply.github.com >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-05-27 01:00:40 +00:00
Matthew Kilgore
c666fcab3d
Actually enable devcache cleanup
2025-05-26 19:25:57 -04:00
Matthew Kilgore
9fac590100
Maybe the cleanup is fixed?
2025-05-26 18:11:48 -04:00
Matthew Kilgore
89fef7199f
Maybe the cleanup is fixed?
2025-05-26 18:08:37 -04:00
Matthew Kilgore
3f6fa02ea7
Maybe the cleanup is fixed?
2025-05-26 18:07:02 -04:00
Matthew Kilgore
05c43b949e
Maybe the cleanup is fixed?
2025-05-26 18:02:27 -04:00
Matthew Kilgore
ceb1272700
Maybe the cleanup is fixed?
2025-05-26 17:48:52 -04:00
Matthew Kilgore
636b849397
Maybe the cleanup is fixed?
2025-05-26 17:46:48 -04:00
Weblate
1234125bcd
Translated using Weblate (Slovenian)
...
Currently translated at 100.0% (334 of 334 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (334 of 334 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: Murk <saso@workrum.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-05-26 17:00:39 +00:00
Weblate
2acfdd8d2e
Translated using Weblate (Dutch)
...
Currently translated at 99.7% (333 of 334 strings)
Translated using Weblate (Dutch)
Currently translated at 99.7% (333 of 334 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-05-26 12:00:39 +00:00
Weblate
a4a3330a99
Translated using Weblate (Turkish)
...
Currently translated at 92.8% (310 of 334 strings)
Translated using Weblate (Turkish)
Currently translated at 92.8% (310 of 334 strings)
Translated using Weblate (Turkish)
Currently translated at 92.8% (310 of 334 strings)
Translated using Weblate (German)
Currently translated at 100.0% (334 of 334 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (334 of 334 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Ramazan Sancar <ramazansancar4545@gmail.com >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2025-05-26 07:41:27 +00:00
tonyaellie
b00ba9c42f
fix: request permission to access camera
2025-05-25 21:02:31 +00:00
Weblate
6e732b60d0
Update translation files
...
Updated by "Cleanup translation files" add-on in Weblate.
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/
Translation: Homebox/Frontend
2025-05-25 14:42:04 +00:00
Tonya
1a51839abd
Topbar remake ( #752 )
...
* feat: begin work on topbar refresh
* feat: implement search input functionality
* feat: add ScannerModal component based on scanner page
* feat: add toggle to enable legacy topbar, remove scanner page
* feat: update scanner menu item to use SidebarMenuButton for legacy header support
* chore: lint
* style: make margin and padding more consistent
* feat: fun hack
* fix: remove uneeded log and class=""
2025-05-25 15:41:59 +01:00
Weblate
c1c61e5bd4
Translated using Weblate (Czech)
...
Currently translated at 100.0% (333 of 333 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-25 02:00:39 +00:00
tonyaellie
99691ca5bf
chore: oops types for currency
2025-05-24 14:58:28 +00:00
tonyaellie
1e30dc0005
fix: remove some of the logs from the console so its more usable
2025-05-24 14:20:27 +00:00
tonyaellie
83d1ae69a0
chore: formatting oops
2025-05-23 17:22:32 +00:00
tonyaellie
cd43c5bd30
fix: use correct themes for tailwind typography
2025-05-23 17:22:08 +00:00
Alexander Gryson
0c6201f4c6
Force printable label sheets to be black on white background ( #751 )
...
Co-authored-by: Alex Gryson <alex@gryson.net >
2025-05-23 17:12:26 +00:00
Weblate
b1e6b67450
Translated using Weblate (Czech)
...
Currently translated at 100.0% (332 of 332 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (332 of 332 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-21 00:00:39 +00:00
Weblate
a4099a6ca5
Translated using Weblate (Bosnian)
...
Currently translated at 20.7% (69 of 332 strings)
Co-authored-by: Alex <me@alex.ba >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/bs/
Translation: Homebox/Frontend
2025-05-20 15:00:39 +00:00
Matt Kilgore
30e78f1872
Update ideas.yml
2025-05-20 08:47:52 -04:00
Matt Kilgore
1a384cd4b0
Delete .github/ISSUE_TEMPLATE/feature_request.yml
2025-05-20 08:37:07 -04:00
Matt Kilgore
7ef4e6547e
Update config.yml
2025-05-20 08:36:45 -04:00
Matt Kilgore
ad14674082
Update ideas.yml
2025-05-20 08:32:57 -04:00
Matt Kilgore
2137dfae0c
Create ideas.yml
2025-05-20 08:31:40 -04:00
Matt Kilgore
d6d1a84fd4
Update config.yml
2025-05-19 14:48:14 -04:00
Matt Kilgore
bf59305645
Create config.yml
2025-05-19 14:47:17 -04:00
Weblate
71de4a5240
Translated using Weblate (Czech)
...
Currently translated at 99.3% (330 of 332 strings)
Co-authored-by: Katos <katos@creatorswave.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-18 22:00:39 +00:00
Katos
c9af903228
Fix shortcut keys
...
Fixes #707
2025-05-18 18:19:09 +01:00
Weblate
2fb12f6139
Translated using Weblate (Swedish)
...
Currently translated at 97.8% (325 of 332 strings)
Co-authored-by: Daniel Söderström <daniel@opterion.se >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-05-18 13:00:39 +00:00
Weblate
c2cb531c79
Translated using Weblate (French)
...
Currently translated at 100.0% (332 of 332 strings)
Co-authored-by: Alexander Gryson <agryson@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-05-16 14:00:39 +00:00
Weblate
bddbc270c6
Translated using Weblate (Slovak)
...
Currently translated at 94.2% (313 of 332 strings)
Co-authored-by: Stanley Jochman <s.jochman@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-05-15 01:00:39 +00:00
Weblate
1a779fdf03
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 98.4% (327 of 332 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 98.4% (327 of 332 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-05-14 12:00:39 +00:00
Weblate
b1b90c94ca
Translated using Weblate (Italian)
...
Currently translated at 100.0% (332 of 332 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (332 of 332 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (332 of 332 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-05-13 11:00:39 +00:00
Weblate
ac33b7cbed
Translated using Weblate (Czech)
...
Currently translated at 99.3% (330 of 332 strings)
Co-authored-by: Tonya <tonya@tokia.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-12 19:00:39 +00:00
Weblate
9b3603ad61
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (332 of 332 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (332 of 332 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-05-12 12:57:50 +00:00
Weblate
4415563a8c
Translated using Weblate (Hungarian)
...
Currently translated at 99.3% (330 of 332 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.3% (330 of 332 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.3% (330 of 332 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-05-12 08:14:50 +00:00
Weblate
b55963cbde
Translated using Weblate (Hungarian)
...
Currently translated at 98.4% (327 of 332 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (332 of 332 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (332 of 332 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (332 of 332 strings)
Translated using Weblate (Turkish)
Currently translated at 88.7% (293 of 330 strings)
Translated using Weblate (Turkish)
Currently translated at 88.7% (293 of 330 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Ramazan Sancar <ramazansancar4545@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2025-05-12 08:14:14 +00:00
greg1904
e4a45ddb59
Feat subitem create button ( #691 )
...
Co-authored-by: greg1904 <github@koppenatsch.de >
2025-05-11 15:46:53 -04:00
Weblate
469a7df448
Translated using Weblate (Slovenian)
...
Currently translated at 100.0% (330 of 330 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (330 of 330 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-05-11 14:00:39 +00:00
Weblate
0bb859238b
Translated using Weblate (Slovenian)
...
Currently translated at 87.2% (288 of 330 strings)
Translated using Weblate (Slovenian)
Currently translated at 87.2% (288 of 330 strings)
Co-authored-by: Murk <saso@workrum.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-05-11 09:50:49 +00:00
Weblate
e4cc79e4de
Translated using Weblate (Czech)
...
Currently translated at 100.0% (330 of 330 strings)
Co-authored-by: Martin Joneš <jondytmf@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-09 22:00:39 +00:00
Weblate
3a301e73ed
Translated using Weblate (Czech)
...
Currently translated at 100.0% (330 of 330 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-08 23:00:39 +00:00
Weblate
ac1c9f7d67
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 98.4% (325 of 330 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-05-08 13:00:39 +00:00
Tonya
9855474555
fix issues with actions ( #680 )
...
* chore: remove unused lunr and add types for semver
* fix: try pinning using dlx
* chore: update typecheck command in package.json and clean up tailwind config
* chore: add vite as a dep
* fix: tests
* fix: wait for toast
* fix: use first
* feat: try adding waiting?
* fix: i was stupid
* fix: one day it will work (apple)
* fix: api
* fix: booleans are the enemy
* feat: try switching from blob to file
* Revert "feat: try switching from blob to file"
This reverts commit 3728b444e6 .
2025-05-08 12:48:31 +00:00
Tonya
0cd1b46ecb
feat: use nuxts built in error page instead of a catch all page ( #675 )
...
* feat: use nuxts built in error page instead of a catch all page
* fix: require error prop in error.vue and remove optional chaining for more reliable error handling
2025-05-08 08:16:51 +00:00
Matthew Kilgore
588074f50a
This should in theory fix the binary builds
2025-05-07 20:18:18 -04:00
Weblate
60b817a6fc
Translated using Weblate (French)
...
Currently translated at 100.0% (330 of 330 strings)
Translated using Weblate (German)
Currently translated at 100.0% (330 of 330 strings)
Co-authored-by: Baptistecottey <batist37390@gmail.com >
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-05-07 20:00:39 +00:00
Weblate
3a3f33ec51
Translated using Weblate (Bosnian)
...
Currently translated at 7.2% (24 of 330 strings)
Co-authored-by: Alex <me@alex.ba >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/bs/
Translation: Homebox/Frontend
2025-05-07 13:00:39 +00:00
Weblate
f03796d25c
Added translation using Weblate (Bosnian)
...
Co-authored-by: Alex <me@alex.ba >
2025-05-07 08:20:08 +00:00
Weblate
bc14d0303c
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (330 of 330 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (330 of 330 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-05-06 22:00:39 +00:00
Weblate
e4728d6887
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (328 of 328 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (328 of 328 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-05-06 14:00:01 +00:00
Matt Kilgore
66a868f1bc
Update binaries-publish.yaml
2025-05-06 09:59:57 -04:00
Matt Kilgore
243cda044c
Add missing language names
2025-05-06 12:54:32 +00:00
Weblate
4a505cbef3
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (328 of 328 strings)
Translated using Weblate (French)
Currently translated at 100.0% (328 of 328 strings)
Co-authored-by: EdWorth120 <coragem.o.cao.covarde.81@gmail.com >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2025-05-06 03:00:39 +00:00
Weblate
57792eabf5
Translated using Weblate (Italian)
...
Currently translated at 100.0% (328 of 328 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (328 of 328 strings)
Translated using Weblate (English)
Currently translated at 96.9% (318 of 328 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-05-05 14:00:39 +00:00
Weblate
8185598dd0
Translated using Weblate (Italian)
...
Currently translated at 100.0% (328 of 328 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (328 of 328 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-05-05 09:23:31 +00:00
Weblate
9e53f1439c
Translated using Weblate (Italian)
...
Currently translated at 99.6% (327 of 328 strings)
Translated using Weblate (Italian)
Currently translated at 99.6% (327 of 328 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-05-05 09:23:06 +00:00
Weblate
50adb48612
Translated using Weblate (Italian)
...
Currently translated at 99.3% (326 of 328 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-05-05 09:22:18 +00:00
Weblate
8ee48ec4ff
Translated using Weblate (Dutch)
...
Currently translated at 99.6% (327 of 328 strings)
Co-authored-by: Erwin van Londen <translate.sysadminsm.treachery437@passmail.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-05-05 07:00:41 +00:00
Tonya
232dc08fcd
enable primary button ( #673 )
...
* feat: enable primary button
* feat: better attachments
* fix: unneeded param
2025-05-05 01:43:38 +00:00
Weblate
8fb0ae64d7
Translated using Weblate (Czech)
...
Currently translated at 100.0% (328 of 328 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (328 of 328 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-04 22:00:39 +00:00
Matt Kilgore
9d13f41a2a
Goreleaser build updates
2025-05-04 19:49:50 +00:00
Matt Kilgore
13ed91e9d5
Add Cosign binary to binary publish
2025-05-04 19:30:15 +00:00
Tonya
89aaa8c595
add override locale selector for dates and currencies ( #648 )
...
* feat: add override locale selector
* fix: dateExample computed property to ensure Vue updates with locale changes in LanguageSelector.vue
2025-05-04 13:11:28 -04:00
Tonya
16bcffac45
Remove shamefully hoist ( #660 )
...
* feat: remove shamefully hoist
* chore: remove .npmrc
2025-05-04 13:11:00 -04:00
EdWorth120
b89364d8c5
Create a rotate 90 degrees clockwise button for each image ( #666 )
...
* Create a rotate 90 degrees clockwise button for each image
* Added more error handling and turned rotate function to async as recommended by coderabbitai
2025-05-04 09:28:03 +00:00
Weblate
eb21da50e3
Translated using Weblate (Lithuanian)
...
Currently translated at 15.9% (52 of 326 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (326 of 326 strings)
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/lt/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translation: Homebox/Frontend
2025-05-03 23:00:39 +00:00
Matt Kilgore
606a92b5d5
Remove documents table ( #618 )
...
* Remove documents table (WIP)
* Further cleanup of documents table
* This should clean up the errors, but actual attachment handling still needs added.
* Full generation to update the JS side of things too
* Further fixes
* Fix cyclic dependency issue
* In theory the API side works now
* Fix go linting issues
* Fix frontend issues
* Way closer, but has a foreign key constrant issue
* UI actually works now
* Fix deduplication feature not working right
* Upgrade to `golangci-lint` v2 file
* Add ability to set primary during attachment creation
* Update swagger with new primary attachment during creation stuff
* Files are actually saved now, but there's still a bug
* Fix critical issue whith how deletions were working
* Fix the byte copy issue
* Hopefully everything is fixed now
* Fix golangci-lint config and lint files
* Fix lint issue
* Fix a few more tests
* Fix lint issues again
* More minor test fixes
* Update backend/internal/core/services/service_items_attachments.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Fix migration (I think)
* Fixed postgres migration
* Change some migration options to work better
* Some more little things that I tried
* Fix merge go.mod
* Fix migrations
* Little lint thing
* Fix AttachmentsList.vue with updated API
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-05-03 10:15:54 -04:00
Weblate
a64d0c5b4c
Translated using Weblate (Thai)
...
Currently translated at 33.4% (109 of 326 strings)
Co-authored-by: yogokawaii <phonanb@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/th/
Translation: Homebox/Frontend
2025-05-03 06:00:39 +00:00
Weblate
a2d9fd9ee0
Translated using Weblate (Czech)
...
Currently translated at 100.0% (326 of 326 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-05-02 03:00:39 +00:00
Weblate
03860d6053
Translated using Weblate (Lithuanian)
...
Currently translated at 12.8% (42 of 326 strings)
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/lt/
Translation: Homebox/Frontend
2025-05-01 20:00:39 +00:00
Matt Kilgore
1ac86d9c04
Real Migrations System ( #645 )
...
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-05-01 15:03:08 -04:00
EdWorth120
6bb196037c
Fix create item modal form layout on mobile devices ( #662 )
2025-05-01 17:56:39 +00:00
Weblate
78c18aa654
Added translation using Weblate (Lithuanian)
...
Co-authored-by: mondstern <mondstern@monocles.de >
2025-05-01 15:18:17 +00:00
Weblate
88214dfc71
Added translation using Weblate (Luxembourgish)
...
Translated using Weblate (Romanian)
Currently translated at 86.5% (282 of 326 strings)
Translated using Weblate (Finnish)
Currently translated at 100.0% (326 of 326 strings)
Translated using Weblate (Finnish)
Currently translated at 99.6% (324 of 325 strings)
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fi/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ro/
Translation: Homebox/Frontend
2025-05-01 15:16:41 +00:00
EdWorth120
60b2ffd023
Add a quantity field to the item create modal form. ( #615 )
...
* Add a quantity field to the item create modal form.
* Fix prettier code format complaint.
* Update en.json allowing the label of the field to be translated.
* Including changes generated by swag and typescript-types tasks.
* Fixed tests, item duplication and lint errors.
* Fix linter issues again and an error introduced in 912e5b2
* Fixed a test that creates an item through the go:coverage task
2025-04-30 19:42:24 -04:00
Weblate
ebf42a754a
Translated using Weblate (Finnish)
...
Currently translated at 45.2% (147 of 325 strings)
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fi/
Translation: Homebox/Frontend
2025-04-29 22:00:39 +00:00
tonyaellie
f1c9aab9df
style: make sure button is always big enough for text on tools page
2025-04-29 09:53:38 +00:00
Weblate
2a6366808c
Translated using Weblate (Finnish)
...
Currently translated at 19.6% (64 of 325 strings)
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fi/
Translation: Homebox/Frontend
2025-04-28 23:00:39 +00:00
tonyaellie
3ea3ebb346
fix: incorrect text for TagsInputItem.vue
2025-04-28 22:07:08 +00:00
Matt Kilgore
92bb564dfa
Update config.mts
2025-04-28 08:50:20 -04:00
Matt Kilgore
5943e2c7e3
Add Lemmy
2025-04-28 08:48:39 -04:00
Weblate
a22bb0e10e
Translated using Weblate (Japanese)
...
Currently translated at 90.7% (295 of 325 strings)
Translated using Weblate (Japanese)
Currently translated at 90.7% (295 of 325 strings)
Translated using Weblate (Japanese)
Currently translated at 90.7% (295 of 325 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Ricardo González <notorius28@gmail.com >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-04-28 10:00:39 +00:00
Weblate
746dbafcc1
Translated using Weblate (Danish)
...
Currently translated at 94.4% (307 of 325 strings)
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translation: Homebox/Frontend
2025-04-28 01:00:39 +00:00
Weblate
fe7067f255
Translated using Weblate (Czech)
...
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: Martin Joneš <jondytmf@gmail.com >
Co-authored-by: mondstern <mondstern@monocles.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translation: Homebox/Frontend
2025-04-27 17:00:39 +00:00
Katos
0b08d26501
Update update-currencies.yml
2025-04-27 15:46:48 +01:00
Katos
30870bec54
PIP cache on Updating Currencies
...
Add caching for currencies update
2025-04-27 15:46:18 +01:00
Katos
06524b0f2c
Merge pull request #655 from sysadminsmedia/katos/update-currencies-action
...
Amend the "Update currencies" action
2025-04-27 15:42:59 +01:00
Katos
400a29b993
Update update-currencies.yml
2025-04-27 15:39:01 +01:00
Katos
b7d6b32fdd
Update update-currencies.yml
2025-04-27 15:31:11 +01:00
Katos
f99e5739da
Update update_currencies.py
2025-04-27 15:30:57 +01:00
Katos
060062b484
Update update_currencies.py
...
Retries + logging: Set timestamped errors on 5xx/429 or JSON failures.
Empty-array guard: script exits non-zero if the API returns [], so won’t commit an empty file.
Exit codes: any API or I/O error yields sys.exit(1), triggering “no commit on failure” logic.
2025-04-27 15:21:57 +01:00
Katos
6a5d8d2ed7
Update update-currencies.yml
...
Upgrades to the latest Action versions (checkout@v3, setup-python@v4).
Caches Python dependencies.
Detects both “any file changes” and “empty array” in one step (so won’t ever commit an emty array).
Replaces manual branch/CURL logic with peter-evans/create-pull-request, which handles branch creation, rebasing and PR creation in one go.
2025-04-27 15:15:25 +01:00
Tonya
9afd20c513
Sort themes and remove daisyui ( #643 )
...
* feat: sort themes and remove daisyui
* docs: update docs to reflect daisyui being removed
* feat: remove specific colours for better theme compatibility
2025-04-27 09:01:27 +00:00
Weblate
de52959c5b
Translated using Weblate (Czech)
...
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-04-26 20:00:39 +00:00
Weblate
472a0577c8
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-04-26 13:00:39 +00:00
Matt Kilgore
17a4be85d8
Fix required go version for dev
2025-04-24 21:47:25 -04:00
Weblate
0830fd670b
Translated using Weblate (French)
...
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (French)
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: molusk <molusk@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-04-25 01:00:39 +00:00
Weblate
eb18f2d1f9
Translated using Weblate (French)
...
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (French)
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (French)
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (French)
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: mcarbonne <maximilien.carbonne@gmail.com >
Co-authored-by: molusk <molusk@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-04-24 20:43:51 +00:00
github-actions[bot]
152f31a8c8
Update currencies.json ( #647 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-04-23 16:18:54 -04:00
Weblate
fcafce04f2
Translated using Weblate (Dutch)
...
Currently translated at 99.6% (324 of 325 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-04-23 00:00:39 +00:00
Weblate
e2680b9fa6
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-04-22 10:00:39 +00:00
Weblate
6eb626a151
Translated using Weblate (Hungarian)
...
Currently translated at 99.6% (324 of 325 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.6% (324 of 325 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.6% (324 of 325 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-04-22 05:21:36 +00:00
Weblate
9e6779a45a
Translated using Weblate (Hungarian)
...
Currently translated at 96.9% (315 of 325 strings)
Translated using Weblate (Dutch)
Currently translated at 99.6% (324 of 325 strings)
Co-authored-by: Erwin van Londen <translate.sysadminsm.treachery437@passmail.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-04-22 05:12:40 +00:00
Weblate
3e1404490b
Translated using Weblate (Czech)
...
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (325 of 325 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (325 of 325 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-04-20 15:00:39 +00:00
Weblate
1f37123899
Translated using Weblate (Czech)
...
Currently translated at 97.2% (316 of 325 strings)
Translated using Weblate (German)
Currently translated at 99.3% (323 of 325 strings)
Translated using Weblate (German)
Currently translated at 99.3% (323 of 325 strings)
Translated using Weblate (German)
Currently translated at 99.3% (323 of 325 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: Matt <weblate@neo17k.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-04-20 10:32:46 +00:00
Weblate
d2bdfebe0a
Update translation files
...
Updated by "Cleanup translation files" add-on in Weblate.
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/
Translation: Homebox/Frontend
2025-04-20 07:58:08 +00:00
Tonya
cbaf483788
migrate pages to shadcn ( #628 )
...
* feat: migrate tools page and label generator to shadcn
* chore: lint issues
* feat: also do profile page
* feat: shadcn 404 page
* feat: login page shadcn
* fix: daisyui ironically breaks the z height for the login page
* feat: componentise the language selector and add it to the login page
* feat: use nuxtlink
* feat: card and table made more shadcn
* feat: shadcn statscard
* chore: lint
* feat: shadcn labelchip and locationcard
* feat: shadcn locations page
* refactor: remove unused new item page
* chore: lint
* feat: shadcn item card
* fix: wrapping of location and lint
* feat: ctrl enter in text area in form submits form
* feat: begin shadcn locations page and remove pageqrcode comp in favour of integrating it into labelmaker
* chore: lint + remove unused code
* fix: remove uneeded margin
* feat: shadcn labels page and fix some issues with location
* feat: shadcn scanner
* chore: lint
* feat: begin shadcning item pages
* feat: shadcn maintenance page
* feat: begin shadcn search page
* fix: quick switch blurry text and crashing page when switching + incorrect z height for create menu
* feat: finish shadcn search page
* chore: lint
* feat: shadcn edit item page
* fix: quickmenumodal bug
* feat: shadcn item details page
* feat: remove all non-color related daisyui classes
* fix: type error
* fix: quick menu modal again :(
2025-04-20 08:58:03 +01:00
Matthew Kilgore
400bc3f341
Fix frontend lint
2025-04-19 15:53:21 -04:00
Matthew Kilgore
912e5b231a
Fix footer links
2025-04-19 13:35:19 -04:00
Matt Kilgore
177b7344f8
E2E Playwright Testing ( #466 )
...
* Add e2e testing for frontend
* Hopefully working CI/CD for playwright
* Fix run name
* Trying to fix the CI/CD stuff
* Try this again, although Vite apparently has playwright?
* Fix vitetest
* Add registration tests
* Safer kill of testing dependencies
* These might not last.
* feat: Add iPhone and Android device testing
* fix: Minor fixes, set registration to "fixme" as it fails frequently for some reason.
* fix: Make sure the OS dependencies get installed
* fix: For now remove mobile, they seem to be very hit or miss.
* Use sharding based testing
* Fix some minor mess ups
* Forgot PNPM for the merge
2025-04-19 13:09:14 -04:00
Weblate
d11627fa28
Translated using Weblate (Portuguese (Portugal))
...
Currently translated at 81.7% (260 of 318 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 81.7% (260 of 318 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: bl4ck1c3pt <gilpereira-@hotmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translation: Homebox/Frontend
2025-04-18 22:00:39 +00:00
Weblate
acf1660574
Translated using Weblate (English)
...
Currently translated at 100.0% (318 of 318 strings)
Translated using Weblate (English)
Currently translated at 100.0% (316 of 316 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-04-16 06:00:38 +00:00
Matt Kilgore
d644d302a3
Fix the footer links ( #635 )
2025-04-15 21:19:53 -04:00
Weblate
129cc72b8b
Translated using Weblate (Portuguese (Portugal))
...
Currently translated at 81.3% (257 of 316 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 81.3% (257 of 316 strings)
Translated using Weblate (French)
Currently translated at 100.0% (316 of 316 strings)
Co-authored-by: Goncalo Almeida Casqueiro <goncalocasqueiro@armillaryhub.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: sephrat <florian.dupret@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translation: Homebox/Frontend
2025-04-15 16:00:39 +00:00
Dandyandy
1e0479c365
Fix/407 text wrap markdown issue ( #616 )
2025-04-15 10:51:06 -04:00
Weblate
41c9734ffb
Translated using Weblate (Italian)
...
Currently translated at 100.0% (316 of 316 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (316 of 316 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (316 of 316 strings)
Co-authored-by: Erwin van Londen <translate.sysadminsm.treachery437@passmail.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-04-14 08:00:38 +00:00
Weblate
4b13897839
Translated using Weblate (Czech)
...
Currently translated at 100.0% (316 of 316 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (316 of 316 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-04-11 17:00:38 +00:00
Weblate
6984b33389
Update translation files
...
Updated by "Cleanup translation files" add-on in Weblate.
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/
Translation: Homebox/Frontend
2025-04-11 10:02:53 +00:00
Tonya
9ff4b32db0
Switch layouts to use shadcn ( #507 )
...
* feat: begin switching sonner, currently this breaks all alerts
* feat: switch to using new sonner and fix class names
* feat: add Shortcut component for improved keyboard shortcuts display in default layout
* feat: rewrite quick menu modal in shadcn
* feat: update QuickMenu modal placeholders and localize no results message in default layout
* feat: begin switching modals in layout to use shadcn dialog, needs bug fixing
* feat: implement DialogProvider for consistent dialog management across components
* fix: types
* feat: begin adding shadcn label selector (wip)
* feat: shadcnify textarea
* feat: begin adding location selector
* feat: add hotkey support for opening create modals in dialog provider components
* fix: update click event on NuxtLink and reorder sidebar menu item IDs for consistency
* feat: unify shortcut text across create modals and sort issue with text centring
* feat: prevent dialog from opening when a dialog alert is open
* fix: prevent potential out of bounds error
* feat: enhance button group UI in create modals for better layout and introduce new item photo label in the form
* fix: search on label selector
* chore: lint
* fix: oops
* feat: make selector usable
* feat: add actual data to label selector
* feat: label selector kinda works
* fix: add legacy selector for edit page
* fix: enable camera capture in image upload for CreateModal component
* fix: z levels for sidebar mobile
* fix: gap between inputs
* feat: update radix-vue, custom search function for location selector
* feat: add fuzzysort (can always remove it and go to lunr if we want to)
* feat: limit label name to 50 characters in create modal and selector, helps with issues with ui not working with larger labels, as it is only enforced on the frontend could be easily bypassed but thats a them problem
* feat: add colours to toast
* chore: lint
* feat: abstract the dialog for creation modals
* feat: add drawer component and responsive dialog for create modals
* feat: enhance photo preview in CreateModal
* fix: remember state of sidebar
* feat: add ui functionality for changing primary image
* feat: use button for file upload
* style: lint
* fix: dont clone asset id
* fix: using create and add label breaks selector
* chore: oops remove logging
* chore: lint
* fix: cut length of label dramatically to ensure maximal compatibility, not sure if too much
* fix: more limiting of label length
* feat: update reka-ui (prev radix-vue)
* chore: cleanup dialog provider and siebar provider a bit
* fix: improve accessibility
* fix: docs for shadcn error
* fix: hack to prevent issues with lots of toasts in quick succession
* feat: cleanup toast file and lint
* feat: improvements to dialog scroll and disable the ability to set default photo for now
* feat: add tooltips for photo buttons
* chore: substring to length check
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-04-11 11:02:49 +01:00
tonyaellie
964d3264cc
docs: add missing env var change
2025-04-10 13:51:59 +00:00
Weblate
fca21a58f6
Translated using Weblate (French)
...
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: sephrat <florian.dupret@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-04-09 20:00:38 +00:00
tonyaellie
2fe41d4783
fix: update asset and warranty field names to use translations
2025-04-09 10:23:37 +00:00
Tonya
4c0af18dcb
feat: migration guide for hay-kot version ( #620 )
...
* feat: migration guide for hay-kot version
* Update docs/en/quick-start.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* docs: enhance migration guide with clearer steps and emphasize backup importance before migration process
* docs: add 'Migration Guide' link to menu and change from upgrade to migration guide in quick start
* docs: better text
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-04-09 10:13:23 +00:00
Weblate
a68aafdfd7
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ecke101 <ecke101@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-04-08 13:00:38 +00:00
Weblate
9db6f51a43
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: ecke101 <ecke101@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-04-08 08:03:52 +00:00
Weblate
fade1fbc21
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: Ricardo González <notorius28@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-04-06 20:00:38 +00:00
Weblate
cdabadb276
Translated using Weblate (Catalan)
...
Currently translated at 86.0% (266 of 309 strings)
Co-authored-by: Oriol Navascuez <onavascuez@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translation: Homebox/Frontend
2025-04-05 14:59:47 +00:00
EdWorth120
cd510a07e7
Fix cannot delete photo in create item modal form ( #613 )
...
* Add a delete icon to every photo added in the create item modal form.
* Add a delete icon to every photo added in the create item modal form.
* Corrected margin of filename.
* Format the layout of the delete button using daisyUI indicator component CSS classes.
* Moved PhotoPreview interface to the local component file, it should not go in data-contracts.ts, this file is generated based on the contents of swagger.json, that is generated based on the contents of the backend, the type definition if it needs to be shared should go inside non-generated.ts
2025-04-05 08:38:53 -04:00
Matt Kilgore
b50add5732
Update CODE_OF_CONDUCT.md
2025-03-29 15:38:13 -04:00
mygrexit
ca612a138f
fix: apply natural sorting for item names ( #607 )
2025-03-26 20:31:49 -04:00
Matt Kilgore
c275fa3e4a
Fixes #605
2025-03-26 09:46:52 -04:00
Weblate
0ba6c08dda
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 99.6% (308 of 309 strings)
Co-authored-by: Cheng Gu <guchengf@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-03-25 09:35:33 +00:00
Weblate
35b3e94b2f
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Russian)
Currently translated at 93.5% (289 of 309 strings)
Translated using Weblate (French)
Currently translated at 96.7% (299 of 309 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Eugene Zrazhevsky <eugeny.zrazhevsky@gmail.com >
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2025-03-24 10:35:33 +00:00
Weblate
bf9ac0fb3b
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (309 of 309 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-03-24 06:10:17 +00:00
Katos
c5ae258757
Exclude sold items from TotalPrice calculation
...
Exclude items that have a solddate from total price calculation
2025-03-23 20:48:39 +00:00
Katos
9a1bd6bfc4
Re-add photopreview, will fix this in a separate issue for Linting
2025-03-23 20:47:45 +00:00
Katos
1c802feabe
Remove PhotoPreview import to fix Linting errors
2025-03-23 20:45:39 +00:00
Katos
6b0c28df83
Add method to type ItemSummary
2025-03-23 20:34:29 +00:00
Katos
7937518ef0
Fix issue with duplicated SoldTime struct
2025-03-23 20:27:50 +00:00
Katos
406eca7709
Exclude items that have a solddate from total price calculation
2025-03-23 20:17:40 +00:00
Matthew Kilgore
e716fe54e1
Merge remote-tracking branch 'origin/main'
2025-03-22 21:45:08 -04:00
Matthew Kilgore
64b4173d1d
fix: borked doc param
2025-03-22 21:45:01 -04:00
Matt Kilgore
dcf16ba4c9
Update index.md
2025-03-22 14:09:50 -04:00
Matthew Kilgore
c00edce158
chore: Use our own site instead of jsDelivr
2025-03-22 14:04:08 -04:00
Matt Kilgore
71d9b6605b
Update api.md
2025-03-22 13:47:56 -04:00
Matt Kilgore
8e9571c96a
Update api.md
2025-03-22 13:31:09 -04:00
Matt Kilgore
41ff4c4664
Mk/fix api docs ( #601 )
...
* fix: API URLs for docs
* fix: merge issue
* fix: Lets try this again with some minor changes
2025-03-22 13:26:42 -04:00
Katos
7279703d7c
Revert temp API test
2025-03-22 16:59:30 +00:00
Katos
6b938a88cf
FIX: Dynamically patch the BaseURL on load (API)
2025-03-22 16:56:50 +00:00
Katos
8854a6835e
API changes
2025-03-22 16:52:47 +00:00
Katos
51291e94b0
Skill issue central, sorry!
2025-03-22 16:51:00 +00:00
Katos
733d1c5f77
Stoplight being stupid with BaseURL
2025-03-22 16:49:16 +00:00
Katos
91fde1e3d7
Adjust API footer to AGPL license
2025-03-22 16:44:02 +00:00
Katos
46539547af
API: Dynamically reload CSS on light/dark mode
2025-03-22 16:38:05 +00:00
Katos
858f242e52
Fix host URL
2025-03-22 16:36:40 +00:00
Katos
1c7b6fef9e
Update BaseURL on API
2025-03-22 16:35:08 +00:00
Matt Kilgore
d5b062cd62
fix: API URLs for docs ( #599 )
...
* fix: API URLs for docs
* fix: merge issue
2025-03-22 12:04:52 -04:00
Katos
e216d46848
Update API
2025-03-22 15:42:36 +00:00
Katos
9ee6b7b72f
Remove hash router
2025-03-22 15:38:40 +00:00
Katos
a7c3c7041a
Update openapi-2.0.json
2025-03-22 15:37:59 +00:00
Katos
92a0fa1193
Update openapi-2.0.json
2025-03-22 15:34:18 +00:00
Katos
46d217232a
Update api.md
2025-03-22 15:33:14 +00:00
Katos
3b35612574
Yeet a test to fix API redirect issues
2025-03-22 15:31:34 +00:00
Matt Kilgore
5e2e8b66d8
Mk/simplified analytics ( #596 )
...
* chore: move analytics to it's own seperate file and function.
* chore: fix linting
2025-03-22 11:24:57 -04:00
Weblate
482aeac289
Translated using Weblate (Czech)
...
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-03-22 00:35:32 +00:00
Weblate
88bec687e3
Translated using Weblate (German)
...
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: Matt <weblate@neo17k.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-03-20 19:31:56 +00:00
Sai Vishnu M
537dedbbea
Improve Media Stream API error message for clarity ( #593 )
...
The previous error message was vague, stating only that the Media Stream API was unsupported. This update makes it explicit that HTTPS is required for support. The new message reads:
> "Media Stream API is not supported without HTTPS"
This improves clarity and helps users quickly understand the issue and how to resolve it.
2025-03-18 14:48:11 -04:00
Weblate
ab777e4a35
Translated using Weblate (Czech)
...
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-03-18 18:35:32 +00:00
Weblate
9e2937a3d9
Translated using Weblate (German)
...
Currently translated at 100.0% (309 of 309 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-03-17 21:35:32 +00:00
Weblate
0344bbdabe
Translated using Weblate (German)
...
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (German)
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (German)
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (English)
Currently translated at 100.0% (308 of 308 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Nic <nicmeier1@gmx.net >
Co-authored-by: justuser668 <der.chiller@t-online.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-03-17 15:52:37 +00:00
Weblate
3725c6d161
Translated using Weblate (German)
...
Currently translated at 97.0% (299 of 308 strings)
Co-authored-by: Matt <weblate@neo17k.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-03-17 14:28:02 +00:00
Matt Kilgore
f2770584c7
chore: Always use LTS NodeJS for Docker builds ( #589 )
...
* chore: Always use LTS NodeJS for Docker builds
* chore: Update devcontainers too
2025-03-16 12:25:09 -04:00
Matt Kilgore
de4a3ef7a9
[VNEXT] feat: Opt-In Anlytics ( #277 )
...
* feat: Initial Analytics stuff
* chore: add documentation of new feature
* fix: minor issues
* chore: add some new doc pages around analytics.
* fix: iframe height?
* fix: minor some PR stuff
* chore: add version and virtualization type to analytics
* Update privacy.md
* [VNEXT] feat: Multi-DB type support (#291 )
* feat: Multi-DB type URL formats and config
* fix: remove legacy sqlite path config and minor other things
* fix: dumb eslint issues
* fix: dumb eslint issues
* fix: application can be tested with sqlite
* fix: minor config formatting
* chore: some cleanup
* feat: postgres migration creation now works
The migration creation for postgres now works properly.
Removed MySQL support, having too many issues with it at this time.
* chore: revert some strings back to bytes as they should be
* feat: improve languages support
* feat: add locale time ago formatting and the local name for the language in language dropdown
* Update FUNDING.yml
* chore: remove some more mysql stuff
* fix: coderabbit security recommendations
* fix: validate postgres sslmode
* Update migrations.go
* fix: postgres migration creation now works
* fix: errors in raw sql queries
* fix: lint error, and simpler SQL query
* fix: migrations directory string
* fix: stats related test
* fix: sql query
* Update TextArea.vue
* Update TextField.vue
* chore: run integration testing on multiple postgresql versions
* chore: jobs should run for vnext branch PRs
* fix: missed $ for Postgres testing
* fix: environment variable for db ssl mode
* fix: lint issue from a merge
* chore: trying to fix postgresql testing
* chore: trying to fix postgresql testing
* fix: trying to fix postgresql testing
* fix: trying to fix postgresql testing
---------
Co-authored-by: tonya <tonya@tokia.dev >
* fix: publish docker vnext branch
* Add upgrade guide documentation
* chore: add new config options to documentation
* Update vnext (#314 )
* feat: make 404 follow theme and add a return home page
* feat: sanitise translations when using v-html
* chore: Add native API docs to website
* chore: remove try it button from api docs
---------
Co-authored-by: tonyaellie <tonya@tokia.dev >
* Update Dockerfile
Update dockerfile to test the theory of data folder breaking in vnext
* fix: broken docker image
* fix: statistics
* feat: support mm, cm and inches for label generation
* [VNEXT] feat: Multi-DB type support (#291 )
* feat: Multi-DB type URL formats and config
* fix: remove legacy sqlite path config and minor other things
* fix: dumb eslint issues
* fix: dumb eslint issues
* fix: application can be tested with sqlite
* fix: minor config formatting
* chore: some cleanup
* feat: postgres migration creation now works
The migration creation for postgres now works properly.
Removed MySQL support, having too many issues with it at this time.
* chore: revert some strings back to bytes as they should be
* feat: improve languages support
* feat: add locale time ago formatting and the local name for the language in language dropdown
* Update FUNDING.yml
* chore: remove some more mysql stuff
* fix: coderabbit security recommendations
* fix: validate postgres sslmode
* Update migrations.go
* fix: postgres migration creation now works
* fix: errors in raw sql queries
* fix: lint error, and simpler SQL query
* fix: migrations directory string
* fix: stats related test
* fix: sql query
* Update TextArea.vue
* Update TextField.vue
* chore: run integration testing on multiple postgresql versions
* chore: jobs should run for vnext branch PRs
* fix: missed $ for Postgres testing
* fix: environment variable for db ssl mode
* fix: lint issue from a merge
* chore: trying to fix postgresql testing
* chore: trying to fix postgresql testing
* fix: trying to fix postgresql testing
* fix: trying to fix postgresql testing
---------
Co-authored-by: tonya <tonya@tokia.dev >
* fix: publish docker vnext branch
* Add upgrade guide documentation
* chore: add new config options to documentation
* Update Dockerfile
Update dockerfile to test the theory of data folder breaking in vnext
* fix: broken docker image
* fix: statistics
* feat: support mm, cm and inches for label generation
* Update privacy.md
* chore: fix merge with main
* fix: Docs menu
* fix: Docs
* fix: Fix privacy policy layout
* fix: put stats under it's own unlikely used URL
* Forgot to add to configure.md
---------
Co-authored-by: tonya <tonya@tokia.dev >
Co-authored-by: Katos <7927609+katosdev@users.noreply.github.com >
2025-03-15 21:17:18 -04:00
Weblate
341f0e9af9
Translated using Weblate (Chinese (Simplified) (zh_MO))
...
Currently translated at 60.0% (185 of 308 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (308 of 308 strings)
Co-authored-by: Ziqian Huang <ziqian.huang@hotmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_MO/
Translation: Homebox/Frontend
2025-03-15 21:35:32 +00:00
Weblate
e5be690e94
Translated using Weblate (Danish)
...
Currently translated at 98.7% (304 of 308 strings)
Co-authored-by: Heine Olsen <olsen10051988@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translation: Homebox/Frontend
2025-03-14 01:35:32 +00:00
Weblate
97eecac56f
Translated using Weblate (Albanian)
...
Currently translated at 31.1% (96 of 308 strings)
Translated using Weblate (Albanian)
Currently translated at 31.1% (96 of 308 strings)
Co-authored-by: Bledar Jonuzaj <mikuvarin@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sq/
Translation: Homebox/Frontend
2025-03-13 19:35:32 +00:00
dependabot[bot]
f28bb8886c
Bump the npm_and_yarn group across 1 directory with 2 updates ( #585 )
...
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers ).
Updates `@babel/helpers` from 7.26.9 to 7.26.10
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-helpers )
Updates `@babel/runtime` from 7.26.9 to 7.26.10
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-runtime )
---
updated-dependencies:
- dependency-name: "@babel/helpers"
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-13 13:55:53 -04:00
Weblate
b98c550ac3
Translated using Weblate (Albanian)
...
Currently translated at 10.7% (33 of 308 strings)
Translated using Weblate (Albanian)
Currently translated at 10.7% (33 of 308 strings)
Co-authored-by: Bledar Jonuzaj <mikuvarin@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sq/
Translation: Homebox/Frontend
2025-03-13 15:01:12 +00:00
Weblate
1e89b06a2a
Translated using Weblate (Albanian)
...
Currently translated at 2.5% (8 of 308 strings)
Translated using Weblate (Albanian)
Currently translated at 2.5% (8 of 308 strings)
Co-authored-by: Bledar Jonuzaj <mikuvarin@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sq/
Translation: Homebox/Frontend
2025-03-13 14:50:04 +00:00
Weblate
585875aaf8
Translated using Weblate (Albanian)
...
Currently translated at 1.9% (6 of 308 strings)
Translated using Weblate (Albanian)
Currently translated at 1.9% (6 of 308 strings)
Co-authored-by: Bledar Jonuzaj <mikuvarin@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sq/
Translation: Homebox/Frontend
2025-03-13 14:47:42 +00:00
Weblate
ada5cc8575
Translated using Weblate (Albanian)
...
Currently translated at 1.6% (5 of 308 strings)
Translated using Weblate (Albanian)
Currently translated at 1.6% (5 of 308 strings)
Co-authored-by: Bledar Jonuzaj <mikuvarin@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sq/
Translation: Homebox/Frontend
2025-03-13 14:47:11 +00:00
dependabot[bot]
4f150f3c52
Bump golang.org/x/net ( #581 )
...
Bumps the go_modules group with 1 update in the /backend directory: [golang.org/x/net](https://github.com/golang/net ).
Updates `golang.org/x/net` from 0.35.0 to 0.36.0
- [Commits](https://github.com/golang/net/compare/v0.35.0...v0.36.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: indirect
dependency-group: go_modules
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-13 09:34:24 -04:00
Weblate
bde7f711de
Added translation using Weblate (Albanian)
...
Co-authored-by: Bledar Jonuzaj <mikuvarin@gmail.com >
2025-03-13 11:39:42 +00:00
EdWorth120
629b1139ba
Fixes the document record being abandoned inside the database after an attachment is deleted. ( #579 )
2025-03-12 15:08:19 -04:00
Weblate
45c1c17154
Translated using Weblate (Japanese)
...
Currently translated at 92.8% (286 of 308 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-03-11 13:35:32 +00:00
Weblate
61ded24e9b
Translated using Weblate (Italian)
...
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (308 of 308 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-03-10 19:35:32 +00:00
Weblate
2da77b7b8c
Translated using Weblate (Italian)
...
Currently translated at 99.0% (305 of 308 strings)
Translated using Weblate (Italian)
Currently translated at 99.0% (305 of 308 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-03-10 15:33:32 +00:00
Weblate
5b62911040
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (308 of 308 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-03-10 10:35:32 +00:00
Weblate
b9386a3db0
Translated using Weblate (Hungarian)
...
Currently translated at 98.7% (304 of 308 strings)
Translated using Weblate (Hungarian)
Currently translated at 98.7% (304 of 308 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-03-10 06:16:17 +00:00
Weblate
8e7bcaf389
Translated using Weblate (Hungarian)
...
Currently translated at 97.4% (300 of 308 strings)
Translated using Weblate (Hungarian)
Currently translated at 97.4% (300 of 308 strings)
Translated using Weblate (Hungarian)
Currently translated at 97.4% (300 of 308 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-03-10 06:15:45 +00:00
Weblate
7488209544
Translated using Weblate (Hungarian)
...
Currently translated at 96.1% (296 of 308 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.1% (296 of 308 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.1% (296 of 308 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-03-10 06:14:34 +00:00
Weblate
23771e1118
Translated using Weblate (Hungarian)
...
Currently translated at 94.8% (292 of 308 strings)
Translated using Weblate (Hungarian)
Currently translated at 94.8% (292 of 308 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-03-10 06:14:15 +00:00
Weblate
91cfadf834
Translated using Weblate (Hungarian)
...
Currently translated at 93.8% (289 of 308 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (308 of 308 strings)
Co-authored-by: Erwin van Londen <translate.sysadminsm.treachery437@passmail.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-03-10 06:13:50 +00:00
Weblate
88086a377b
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 98.0% (302 of 308 strings)
Co-authored-by: Cheng Gu <guchengf@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-03-10 02:45:08 +00:00
Weblate
b082ab46b8
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 98.3% (303 of 308 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-03-10 02:20:20 +00:00
EdWorth120
3baf1a5c92
Fix the parent location being undefined when set while the locationStore is empty. ( #571 )
2025-03-09 10:30:56 -04:00
EdWorth120
6797fcb58f
Try to choose a media device that have the word "back" in it, if it doesn't find one falls back to the first. ( #573 )
2025-03-09 10:28:30 -04:00
Matt Kilgore
9fe509215d
feat: Add goreleaser cosign signing ( #562 )
2025-03-08 19:01:03 -05:00
Weblate
66654ab565
Translated using Weblate (Japanese)
...
Currently translated at 92.8% (286 of 308 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-03-08 12:35:32 +00:00
dependabot[bot]
543c947d93
Bump vue-i18n in /frontend in the npm_and_yarn group across 1 directory ( #567 )
...
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n ).
Updates `vue-i18n` from 9.14.2 to 9.14.3
- [Release notes](https://github.com/intlify/vue-i18n/releases )
- [Changelog](https://github.com/intlify/vue-i18n/blob/v9.14.3/CHANGELOG.md )
- [Commits](https://github.com/intlify/vue-i18n/commits/v9.14.3/packages/vue-i18n )
---
updated-dependencies:
- dependency-name: vue-i18n
dependency-type: direct:development
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-07 16:14:54 -05:00
Weblate
0e190af9c9
Translated using Weblate (Czech)
...
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 98.0% (302 of 308 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: cclassbreak <hsiungfei@outlook.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-03-07 13:35:32 +00:00
Weblate
f2bde0be2f
Translated using Weblate (Slovak)
...
Currently translated at 100.0% (308 of 308 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.0% (299 of 308 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.0% (299 of 308 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.0% (299 of 308 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.0% (299 of 308 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Lucas Duete <lm.duete@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: euforik <euforik22@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translation: Homebox/Frontend
2025-03-06 00:35:32 +00:00
Katos
618f305f50
Update index.md
...
Amend link for tips and tricks
2025-03-05 20:08:53 +00:00
Weblate
8b9b1bdad0
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 95.7% (295 of 308 strings)
Translated using Weblate (Swedish)
Currently translated at 92.5% (285 of 308 strings)
Translated using Weblate (Swedish)
Currently translated at 92.5% (285 of 308 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Rasmus Åberg <rasabergnv@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-03-05 20:04:06 +00:00
Matt Kilgore
3a3280466e
Merge VNEXT into Main ( #464 )
...
* [VNEXT] feat: Multi-DB type support (#291 )
* feat: Multi-DB type URL formats and config
* fix: remove legacy sqlite path config and minor other things
* fix: dumb eslint issues
* fix: dumb eslint issues
* fix: application can be tested with sqlite
* fix: minor config formatting
* chore: some cleanup
* feat: postgres migration creation now works
The migration creation for postgres now works properly.
Removed MySQL support, having too many issues with it at this time.
* chore: revert some strings back to bytes as they should be
* feat: improve languages support
* feat: add locale time ago formatting and the local name for the language in language dropdown
* Update FUNDING.yml
* chore: remove some more mysql stuff
* fix: coderabbit security recommendations
* fix: validate postgres sslmode
* Update migrations.go
* fix: postgres migration creation now works
* fix: errors in raw sql queries
* fix: lint error, and simpler SQL query
* fix: migrations directory string
* fix: stats related test
* fix: sql query
* Update TextArea.vue
* Update TextField.vue
* chore: run integration testing on multiple postgresql versions
* chore: jobs should run for vnext branch PRs
* fix: missed $ for Postgres testing
* fix: environment variable for db ssl mode
* fix: lint issue from a merge
* chore: trying to fix postgresql testing
* chore: trying to fix postgresql testing
* fix: trying to fix postgresql testing
* fix: trying to fix postgresql testing
---------
Co-authored-by: tonya <tonya@tokia.dev >
* fix: publish docker vnext branch
* Add upgrade guide documentation
* chore: add new config options to documentation
* Update vnext (#314 )
* feat: make 404 follow theme and add a return home page
* feat: sanitise translations when using v-html
* chore: Add native API docs to website
* chore: remove try it button from api docs
---------
Co-authored-by: tonyaellie <tonya@tokia.dev >
* Update Dockerfile
Update dockerfile to test the theory of data folder breaking in vnext
* fix: broken docker image
* fix: statistics
* feat: support mm, cm and inches for label generation
* [VNEXT] feat: Multi-DB type support (#291 )
* feat: Multi-DB type URL formats and config
* fix: remove legacy sqlite path config and minor other things
* fix: dumb eslint issues
* fix: dumb eslint issues
* fix: application can be tested with sqlite
* fix: minor config formatting
* chore: some cleanup
* feat: postgres migration creation now works
The migration creation for postgres now works properly.
Removed MySQL support, having too many issues with it at this time.
* chore: revert some strings back to bytes as they should be
* feat: improve languages support
* feat: add locale time ago formatting and the local name for the language in language dropdown
* Update FUNDING.yml
* chore: remove some more mysql stuff
* fix: coderabbit security recommendations
* fix: validate postgres sslmode
* Update migrations.go
* fix: postgres migration creation now works
* fix: errors in raw sql queries
* fix: lint error, and simpler SQL query
* fix: migrations directory string
* fix: stats related test
* fix: sql query
* Update TextArea.vue
* Update TextField.vue
* chore: run integration testing on multiple postgresql versions
* chore: jobs should run for vnext branch PRs
* fix: missed $ for Postgres testing
* fix: environment variable for db ssl mode
* fix: lint issue from a merge
* chore: trying to fix postgresql testing
* chore: trying to fix postgresql testing
* fix: trying to fix postgresql testing
* fix: trying to fix postgresql testing
---------
Co-authored-by: tonya <tonya@tokia.dev >
* fix: publish docker vnext branch
* Add upgrade guide documentation
* chore: add new config options to documentation
* Update Dockerfile
Update dockerfile to test the theory of data folder breaking in vnext
* fix: broken docker image
* fix: statistics
* feat: support mm, cm and inches for label generation
* Update go dependencies
* Update documentation
* Slight update to docker actions
* Small doc update
* More doc changes
* Sort out migrations
* Temp fix to broken stats test
* Update dependencies
* Update documentation
* Fix broken merge
* Fix docker image sqlite path
* Fix minor taskfile issue
---------
Co-authored-by: tonya <tonya@tokia.dev >
Co-authored-by: Katos <7927609+katosdev@users.noreply.github.com >
2025-03-04 08:16:17 -05:00
Matthew Kilgore
33ecc49ad7
Deleted translation using Weblate (English (Pirate))
2025-03-04 02:41:07 +00:00
Weblate
87c0392148
Added translation using Weblate (English (Pirate))
...
Translated using Weblate (English)
Currently translated at 100.0% (308 of 308 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-03-04 02:40:17 +00:00
Weblate
8b47217d7c
Update translation files
...
Updated by "Cleanup translation files" add-on in Weblate.
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/
Translation: Homebox/Frontend
2025-03-04 02:37:21 +00:00
Matt Kilgore
6b06215967
Update en.json
2025-03-03 21:37:17 -05:00
Weblate
2e281aec8d
Translated using Weblate (English)
...
Currently translated at 100.0% (303 of 303 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-03-04 02:31:08 +00:00
Weblate
9aa147fdf1
Translated using Weblate (English)
...
Currently translated at 100.0% (303 of 303 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-03-04 02:27:42 +00:00
Weblate
aac0d04254
Translated using Weblate (English)
...
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-03-04 02:27:36 +00:00
Matt Kilgore
d927bc238f
Update items.vue
2025-03-03 09:57:26 -05:00
Weblate
3900dc7442
Translated using Weblate (Tamil)
...
Currently translated at 2.3% (7 of 302 strings)
Co-authored-by: Venkatasubramanian B <bvenkysubbu@yahoo.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ta/
Translation: Homebox/Frontend
2025-03-03 09:35:32 +00:00
Weblate
ba6f8ed2bd
Added translation using Weblate (Tamil)
...
Co-authored-by: Venkatasubramanian B <bvenkysubbu@yahoo.com >
2025-03-03 05:08:33 +00:00
Weblate
bb102fd9f6
Translated using Weblate (Japanese)
...
Currently translated at 95.0% (287 of 302 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-28 11:35:32 +00:00
Weblate
0e46e3c827
Translated using Weblate (Indonesian)
...
Currently translated at 94.3% (285 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translation: Homebox/Frontend
2025-02-26 21:35:32 +00:00
Weblate
7bcf7f0845
Added translation using Weblate (Korean)
...
Co-authored-by: eejun49 <dldmlwns49@naver.com >
2025-02-24 07:03:20 +00:00
Weblate
53f1476185
Translated using Weblate (Japanese)
...
Currently translated at 95.0% (287 of 302 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-23 12:35:32 +00:00
Weblate
b846157c65
Translated using Weblate (French)
...
Currently translated at 99.3% (300 of 302 strings)
Co-authored-by: Jean-Philippe Baril <translate.sysadminsmedia.com@alias.trebaxis.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-02-23 04:25:49 +00:00
Weblate
08854316f9
Translated using Weblate (French)
...
Currently translated at 99.3% (300 of 302 strings)
Translated using Weblate (French)
Currently translated at 99.3% (300 of 302 strings)
Co-authored-by: Jean-Philippe Baril <translate.sysadminsmedia.com@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-02-23 03:32:10 +00:00
Weblate
b76b6dbd5a
Translated using Weblate (French)
...
Currently translated at 99.0% (299 of 302 strings)
Translated using Weblate (French)
Currently translated at 99.0% (299 of 302 strings)
Translated using Weblate (French)
Currently translated at 99.0% (299 of 302 strings)
Co-authored-by: Jean-Philippe Baril <translate.sysadminsmedia.com@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2025-02-23 03:30:35 +00:00
EdWorth120
20e34e3428
Change the width of the items quantity badge to not be fixed. ( #525 )
2025-02-22 16:15:28 -05:00
thevortexcloud
fe31847269
Allow miltiple file uploads on creation ( #528 )
...
* Fix #317
* Fix(?) lint errors
* Actually fix all the lint errors
* Fix type check errors
2025-02-22 16:15:08 -05:00
Weblate
08d9de0b44
Translated using Weblate (Japanese)
...
Currently translated at 95.0% (287 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 95.0% (287 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 14:35:32 +00:00
Weblate
efb2f1f945
Translated using Weblate (Japanese)
...
Currently translated at 83.7% (253 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 83.7% (253 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:42:36 +00:00
Weblate
114410c530
Translated using Weblate (Japanese)
...
Currently translated at 83.1% (251 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 83.1% (251 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:41:09 +00:00
Weblate
0c5c5f6994
Translated using Weblate (Japanese)
...
Currently translated at 80.7% (244 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 80.7% (244 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:35:28 +00:00
Weblate
d5dadb27f1
Translated using Weblate (Japanese)
...
Currently translated at 74.5% (225 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 74.5% (225 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:20:59 +00:00
Weblate
88ad6e8505
Translated using Weblate (Japanese)
...
Currently translated at 74.1% (224 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 74.1% (224 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:20:40 +00:00
Weblate
5700a73bf4
Translated using Weblate (Japanese)
...
Currently translated at 72.1% (218 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 72.1% (218 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:08:22 +00:00
Weblate
d5bf6d5c62
Translated using Weblate (Japanese)
...
Currently translated at 71.8% (217 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 71.8% (217 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:07:14 +00:00
Weblate
c622c96568
Translated using Weblate (Japanese)
...
Currently translated at 70.8% (214 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:06:53 +00:00
Weblate
c935ca30ab
Translated using Weblate (Japanese)
...
Currently translated at 70.8% (214 of 302 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:06:50 +00:00
Weblate
0b6571ba36
Translated using Weblate (Japanese)
...
Currently translated at 70.1% (212 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 70.1% (212 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:04:16 +00:00
Weblate
94c8478863
Translated using Weblate (Japanese)
...
Currently translated at 69.8% (211 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 69.8% (211 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 69.8% (211 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:03:59 +00:00
Weblate
9f8243b71c
Translated using Weblate (Japanese)
...
Currently translated at 68.8% (208 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 68.8% (208 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 09:02:04 +00:00
Weblate
d4890b08de
Translated using Weblate (Japanese)
...
Currently translated at 67.5% (204 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 67.5% (204 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 08:59:15 +00:00
Weblate
db58ea5f66
Translated using Weblate (Japanese)
...
Currently translated at 67.2% (203 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 67.2% (203 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 08:58:12 +00:00
Weblate
4a773d56ba
Translated using Weblate (Japanese)
...
Currently translated at 63.9% (193 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 63.9% (193 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 08:47:33 +00:00
Weblate
9fae285e76
Translated using Weblate (Japanese)
...
Currently translated at 60.5% (183 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 60.5% (183 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 08:22:12 +00:00
Weblate
3539b5229a
Translated using Weblate (Japanese)
...
Currently translated at 59.2% (179 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 08:09:21 +00:00
Weblate
492af54aa5
Translated using Weblate (Japanese)
...
Currently translated at 58.9% (178 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 58.9% (178 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 08:08:21 +00:00
Weblate
56a2ccf687
Translated using Weblate (Japanese)
...
Currently translated at 50.9% (154 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 50.9% (154 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 07:49:18 +00:00
Weblate
65ebf3ce11
Translated using Weblate (Japanese)
...
Currently translated at 50.6% (153 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 50.6% (153 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 07:46:36 +00:00
Weblate
e5aa0954ba
Translated using Weblate (Japanese)
...
Currently translated at 49.6% (150 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-21 07:45:07 +00:00
Weblate
0a9fad3e61
Translated using Weblate (Japanese)
...
Currently translated at 49.6% (150 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 49.6% (150 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 19:35:32 +00:00
Weblate
2e53b8a8b6
Translated using Weblate (Japanese)
...
Currently translated at 48.6% (147 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 48.6% (147 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 15:00:52 +00:00
Weblate
52802a9532
Translated using Weblate (Japanese)
...
Currently translated at 46.6% (141 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 46.6% (141 of 302 strings)
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 14:24:40 +00:00
Weblate
a18466ef17
Translated using Weblate (Japanese)
...
Currently translated at 45.6% (138 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 45.6% (138 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 14:05:36 +00:00
Weblate
80256fc2b1
Translated using Weblate (Japanese)
...
Currently translated at 39.0% (118 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 39.0% (118 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 12:57:09 +00:00
Weblate
e1d3087403
Translated using Weblate (Japanese)
...
Currently translated at 34.4% (104 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 34.4% (104 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 12:44:46 +00:00
Weblate
8e4a223441
Translated using Weblate (Japanese)
...
Currently translated at 32.1% (97 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 32.1% (97 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 12:39:58 +00:00
Weblate
8b03d5bf61
Translated using Weblate (Japanese)
...
Currently translated at 31.4% (95 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 31.4% (95 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 12:37:38 +00:00
Weblate
53d3d53292
Translated using Weblate (Japanese)
...
Currently translated at 29.1% (88 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 29.1% (88 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 11:47:18 +00:00
Weblate
56c0c5e9ad
Translated using Weblate (Japanese)
...
Currently translated at 27.8% (84 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 27.8% (84 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 11:44:18 +00:00
Weblate
ea06de9d2d
Translated using Weblate (Japanese)
...
Currently translated at 24.5% (74 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 24.5% (74 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 11:01:42 +00:00
Weblate
aa66f93444
Translated using Weblate (Japanese)
...
Currently translated at 24.1% (73 of 302 strings)
Translated using Weblate (Japanese)
Currently translated at 24.1% (73 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 11:01:23 +00:00
Weblate
d6cf844946
Translated using Weblate (Japanese)
...
Currently translated at 18.8% (57 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 10:03:17 +00:00
Weblate
706545ae84
Translated using Weblate (Japanese)
...
Currently translated at 18.8% (57 of 302 strings)
Co-authored-by: ななしぃ <weblate@nanasi-rasi.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translation: Homebox/Frontend
2025-02-20 10:02:54 +00:00
Weblate
4e31e17b13
Translated using Weblate (Czech)
...
Currently translated at 100.0% (302 of 302 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-02-19 21:51:43 +00:00
Weblate
b7959bb2d5
Translated using Weblate (Czech)
...
Currently translated at 90.3% (273 of 302 strings)
Translated using Weblate (Czech)
Currently translated at 90.3% (273 of 302 strings)
Translated using Weblate (Czech)
Currently translated at 90.3% (273 of 302 strings)
Co-authored-by: Adam Havránek <adamhavra@seznam.cz >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translation: Homebox/Frontend
2025-02-19 21:21:30 +00:00
Weblate
6c7910661e
Translated using Weblate (Danish)
...
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: Heine Olsen <olsen10051988@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translation: Homebox/Frontend
2025-02-18 18:35:32 +00:00
Weblate
ba8005929b
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (302 of 302 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-02-18 02:35:32 +00:00
Weblate
c6ed191d3d
Translated using Weblate (Spanish)
...
Currently translated at 97.0% (293 of 302 strings)
Translated using Weblate (Spanish)
Currently translated at 97.0% (293 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2025-02-17 21:47:11 +00:00
Matthew Kilgore
ece75e2984
chore: Remove aside from configure page. It doesn't make sense there.
2025-02-16 22:42:16 -05:00
Matthew Kilgore
817058bc70
fix: broken page rendering
2025-02-16 22:30:47 -05:00
kylehakala
8e46553a0d
Add additional documentation for Notifiers ( #530 )
...
* Add additional documentation for Notifiers
When I first set up the notifiers, I felt like the documentation was pretty light on how to do this.
I'd like to submit a few more PRs to outline a couple basic examples on this page (or a separate page specific for notifications) in addition to elaborating more on how this feature works. It's super flexible, and I love that!
Nevertheless, I think it would be more accessible to outline a few examples on what this ends up entailing.
* User general/latest shoutrrr URL without hardcoded version
2025-02-16 16:58:10 -05:00
Weblate
c4edb81fdd
Translated using Weblate (Swedish)
...
Currently translated at 93.3% (282 of 302 strings)
Co-authored-by: jesper rezler lang <jesper.rezler.lang@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2025-02-14 12:35:32 +00:00
dependabot[bot]
56ec06516d
Bump koa in /frontend in the npm_and_yarn group across 1 directory ( #524 )
...
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [koa](https://github.com/koajs/koa ).
Updates `koa` from 2.15.3 to 2.15.4
- [Release notes](https://github.com/koajs/koa/releases )
- [Changelog](https://github.com/koajs/koa/blob/2.15.4/History.md )
- [Commits](https://github.com/koajs/koa/compare/2.15.3...2.15.4 )
---
updated-dependencies:
- dependency-name: koa
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-13 11:02:45 -05:00
Webysther Sperandio
d62d55a42f
Fix screen large items ( #472 )
...
* Update Container.vue to allow max 7 for xl
* Update items.vue to allow 5 cols to large screen
* Change to use pageSize to 30
Least common multiple is 30 for cols if 2, 3 or 5.
---------
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
2025-02-12 08:42:38 -05:00
Weblate
81d3ddc362
Translated using Weblate (Italian)
...
Currently translated at 100.0% (302 of 302 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-02-12 04:48:46 +00:00
Weblate
17e355d180
Translated using Weblate (Romanian)
...
Currently translated at 94.3% (285 of 302 strings)
Translated using Weblate (Italian)
Currently translated at 97.6% (295 of 302 strings)
Translated using Weblate (Italian)
Currently translated at 97.6% (295 of 302 strings)
Translated using Weblate (Italian)
Currently translated at 97.6% (295 of 302 strings)
Co-authored-by: Aurelian Zanoschi <aurelian17@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ro/
Translation: Homebox/Frontend
2025-02-12 00:48:00 +00:00
Weblate
5ca174fbc6
Translated using Weblate (German)
...
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: Sebastian <homeboxtranslate@sschefold.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-02-11 12:22:40 +00:00
Weblate
337a55fae9
Translated using Weblate (German)
...
Currently translated at 100.0% (302 of 302 strings)
Translated using Weblate (German)
Currently translated at 100.0% (302 of 302 strings)
Translated using Weblate (German)
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Sebastian <homeboxtranslate@sschefold.de >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-02-11 10:22:50 +00:00
Weblate
f0803f54af
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 96.3% (291 of 302 strings)
Co-authored-by: EdWorth120 <coragem.o.cao.covarde.81@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2025-02-11 04:48:46 +00:00
Weblate
0a71a8ecaf
Translated using Weblate (Polish)
...
Currently translated at 100.0% (302 of 302 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: PavulonGit <pavulongit@users.noreply.translate.sysadminsmedia.com >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translation: Homebox/Frontend
2025-02-10 22:48:47 +00:00
Weblate
58fcc85a9c
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (302 of 302 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (302 of 302 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-02-10 11:48:46 +00:00
Weblate
a5c1799445
Translated using Weblate (Dutch)
...
Currently translated at 97.3% (294 of 302 strings)
Translated using Weblate (Dutch)
Currently translated at 97.3% (294 of 302 strings)
Translated using Weblate (Dutch)
Currently translated at 97.3% (294 of 302 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-02-10 07:11:25 +00:00
Weblate
ee221c8ca1
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 97.0% (293 of 302 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 97.0% (293 of 302 strings)
Co-authored-by: Cheng Gu <guchengf@gmail.com >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-02-10 06:48:46 +00:00
fidoriel
9a57ada534
Additional information on label, dynamic label layouting ( #522 )
2025-02-09 20:39:23 -05:00
fidoriel
7ddfa72936
Fix labelmaker wrong defaults in docs ( #520 )
2025-02-09 15:59:10 -05:00
fidoriel
f9bffad1d7
Fix labelmaker font size mixed up ( #521 )
2025-02-09 15:58:55 -05:00
tonyaellie
fe50ff982e
feat: add head and middleware to maintenance page
2025-02-09 16:28:47 +00:00
dependabot[bot]
f11f12fac2
Bump the npm_and_yarn group across 2 directories with 4 updates ( #517 )
...
Bumps the npm_and_yarn group with 3 updates in the / directory: [nanoid](https://github.com/ai/nanoid ), [rollup](https://github.com/rollup/rollup ) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ).
Bumps the npm_and_yarn group with 2 updates in the /frontend directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest ).
Updates `nanoid` from 3.3.7 to 3.3.8
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.3.7...3.3.8 )
Updates `rollup` from 4.21.2 to 4.34.6
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.21.2...v4.34.6 )
Updates `vite` from 5.4.3 to 5.4.14
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.14/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.14/packages/vite )
Updates `vite` from 5.4.11 to 5.4.14
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.14/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.14/packages/vite )
Updates `vitest` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/vitest-dev/vitest/releases )
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.6.1/packages/vitest )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: rollup
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: vite
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: vite
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: vitest
dependency-type: direct:development
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-08 22:25:58 -05:00
Jake Walker
fba6d7817a
add label generation api ( #498 )
...
* add label generation api
* show location name on labels
* add label scan page
* dispose of code reader when navigating away from scan page
* save label to png
* implement code suggestions
* fix label padding and margin
* update swagger docs
* add print from browser dialog
Co-authored-by: fidoriel <49869342+fidoriel@users.noreply.github.com >
* increase label description font weight
* update documentation label file suffix
* fix scanner components import
* fix linting issues
---------
Co-authored-by: fidoriel <49869342+fidoriel@users.noreply.github.com >
2025-02-08 21:26:16 -05:00
zawnk
401fd7fc71
Fix file upload size env in installation.md ( #514 )
2025-02-08 13:43:54 -05:00
Weblate
c84504b1e1
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-02-08 15:48:46 +00:00
Weblate
9886cb5495
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2025-02-06 19:48:46 +00:00
Weblate
768b4123b8
Translated using Weblate (Russian)
...
Currently translated at 99.6% (289 of 290 strings)
Translated using Weblate (Russian)
Currently translated at 99.6% (289 of 290 strings)
Co-authored-by: Ivan Davydov <lotigara@lotigara.ru >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2025-02-06 14:48:46 +00:00
Weblate
3db6719fcf
Translated using Weblate (Indonesian)
...
Currently translated at 97.9% (284 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translation: Homebox/Frontend
2025-02-05 06:48:46 +00:00
Weblate
e48919181b
Translated using Weblate (Indonesian)
...
Currently translated at 97.9% (284 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 97.9% (284 of 290 strings)
Translated using Weblate (Russian)
Currently translated at 98.6% (286 of 290 strings)
Translated using Weblate (French)
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: askolock <askolock@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2025-02-04 17:48:46 +00:00
Weblate
e0b39ce3fd
Translated using Weblate (Indonesian)
...
Currently translated at 93.7% (272 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 93.7% (272 of 290 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 98.9% (287 of 290 strings)
Translated using Weblate (Russian)
Currently translated at 98.6% (286 of 290 strings)
Co-authored-by: Cheng Gu <guchengf@gmail.com >
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: askolock <askolock@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-02-04 12:55:41 +00:00
Weblate
e9ffc7954b
Translated using Weblate (Indonesian)
...
Currently translated at 90.6% (263 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 90.6% (263 of 290 strings)
Translated using Weblate (Russian)
Currently translated at 96.8% (281 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: askolock <askolock@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2025-02-04 12:45:58 +00:00
Weblate
29f52ab47d
Translated using Weblate (Indonesian)
...
Currently translated at 86.8% (252 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 86.8% (252 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translation: Homebox/Frontend
2025-02-04 12:42:31 +00:00
Weblate
bc8c31cabc
Translated using Weblate (Indonesian)
...
Currently translated at 85.8% (249 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 85.8% (249 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translation: Homebox/Frontend
2025-02-04 12:41:38 +00:00
Weblate
126dcd1402
Translated using Weblate (Indonesian)
...
Currently translated at 39.3% (114 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 39.3% (114 of 290 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: PavulonGit <pavulongit@users.noreply.translate.sysadminsmedia.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translation: Homebox/Frontend
2025-02-04 10:24:18 +00:00
Weblate
d4c8573916
Translated using Weblate (Indonesian)
...
Currently translated at 37.5% (109 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 37.5% (109 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translation: Homebox/Frontend
2025-02-04 10:17:27 +00:00
Weblate
90c07f13d9
Translated using Weblate (Indonesian)
...
Currently translated at 35.5% (103 of 290 strings)
Translated using Weblate (Indonesian)
Currently translated at 35.5% (103 of 290 strings)
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/id/
Translation: Homebox/Frontend
2025-02-04 10:10:32 +00:00
Weblate
f93de9cd1d
Added translation using Weblate (Indonesian)
...
Co-authored-by: Muhammad Ikhsan <pararang@gmail.com >
2025-02-04 09:37:52 +00:00
Weblate
7c37c4dbeb
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (German)
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: EdWorth120 <coragem.o.cao.covarde.81@gmail.com >
Co-authored-by: supaeasy <ismo+github@wolffson.ch >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2025-02-03 22:48:46 +00:00
Weblate
9446cb4f91
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: Christer Solstrand Johannessen <weblate@csj.no >
Co-authored-by: Fernando Martín <fer.martyni@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translation: Homebox/Frontend
2025-02-03 15:48:46 +00:00
Weblate
080d173778
Translated using Weblate (Slovenian)
...
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-02-03 10:48:46 +00:00
Weblate
428d4bb2fa
Translated using Weblate (Slovenian)
...
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (English)
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: stegl <primsteg@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2025-02-03 05:52:07 +00:00
Weblate
787a7c86c0
Translated using Weblate (German)
...
Currently translated at 100.0% (290 of 290 strings)
Translated using Weblate (German)
Currently translated at 100.0% (290 of 290 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: supaeasy <ismo+github@wolffson.ch >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2025-02-03 00:48:46 +00:00
EdWorth120
e9f8a235d4
Fix the problem of the fixed height in the background of the location badge in the item cards ( #479 )
...
* Fix the problem of the fixed height in the background of the location badge above the photo in the item cards.
* Corrected linter complaint.
---------
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
Co-authored-by: Katos <7927609+katosdev@users.noreply.github.com >
2025-02-02 12:03:57 -05:00
tonyaellie
d71da5f1ee
fix: login page tailwind
2025-02-02 00:11:43 +00:00
Tonya
e708bd9839
Begin switching from daisyui to shadcnui ( #492 )
...
* feat: add shadcn
* feat: add themes
* feat: make sidebar use shadcn
* feat: sort bg
* feat: lint fixes
* feat: make daisyui toggleable, add tooltips to sidebar, add work in progress docs page
* fix: theme switching for shadcn
* Fix minor profile.vue issue
* feat: update docs, enlarge SidebarMenuButton and refine profile layout
* feat: add testing page
* feat: update css and remove comments from template
* fix: create dropdown not opening due to tooltip interference also lint
* fix: correct CSS selector for homebox in main.css to ensure proper theming functionality
* feat: make theme switching actually kinda work for shadcn
* fix: sidebar colours
* fix: remove unused router import, made sidebar indicate active page and sort tailwind config linting
* style: update styles
* chore: remove unused duplicate code
* style: refine theme management, CSS variables, get styles closer to original
* feat: implement suggested changes
* feat: better button size
---------
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
2025-02-01 10:32:10 +00:00
Matt Kilgore
574079437a
Update label-generator.vue
2025-01-28 14:52:41 -05:00
Matt Kilgore
a262ff9628
Attempt to fix label generation issue
2025-01-28 14:45:20 -05:00
zebrapurring
b22a49a0fd
feat: add search filter for items with no photo ( #383 )
...
* feat: add search filter for items without photos
* chore: configure Golang formatter for VSCode
* fix: displaying long filter labels for some locales
* feat: add search filter for items with photos
* test: fix linter errors
* chore: remove redundant height attribute
* fix: make with/without photo filters mutually exclusive
---------
Co-authored-by: zebrapurring <>
2025-01-27 23:00:24 +00:00
Matthew Kilgore
743be2fb2c
Ignore cache push errors
2025-01-26 13:44:26 -05:00
Matthew Kilgore
21f9dadbb0
Fix only push for actual branches, not PRs
2025-01-26 13:35:02 -05:00
Matthew Kilgore
8ddf291c5d
Run all the linters
2025-01-26 13:31:33 -05:00
Matthew Kilgore
18adac6620
Only push on actual project branches, PRs do not get pushed
2025-01-26 13:24:19 -05:00
Corknut
fca7d24268
Creation modal quality of life changes ( #467 )
...
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
Co-authored-by: Tonya <tonya@tokia.dev >
2025-01-26 12:43:45 +00:00
Weblate
96d88c5728
Translated using Weblate (English)
...
Currently translated at 100.0% (288 of 288 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2025-01-25 21:48:46 +00:00
Katos
d5b9d52f6e
Roll back to token
2025-01-25 21:21:00 +00:00
Katos
4931535d0b
Test action with a PAT
2025-01-25 21:14:42 +00:00
Katos
7e9a97789e
Update docker-publish.yaml
2025-01-25 21:03:55 +00:00
Katos
28fa843317
Update docker-publish-rootless.yaml
2025-01-25 21:03:40 +00:00
Katos
5db1dec3e9
Enable debug temporarily
2025-01-25 20:54:38 +00:00
Matt Kilgore
c9f3e6c77b
Trying to fix builds ( #480 )
...
* Try to fix builds for PRs
* Some things I forgot about
* Fix missing quote
* Reverse the merge qualifier
* Don't inspect the non-existing dockerhub repo
* Try a slightly different merge
* Try a slightly different merge
* Try this again? WTF Github Actions
* Get rid of inspections, it doesn't really do anything
* Fix a bash if statement (bash is horrible)
* Don't even login on merge for Dockerhub if pull request
* Try breaking up the push into seperate parts
* Fix copy paste error
* You shall bend to my will!
2025-01-25 11:18:24 -05:00
tonyaellie
8231e13127
fix: type error
2025-01-24 22:48:18 +00:00
tonyaellie
28a9291769
fix: use .value
2025-01-23 22:30:50 +00:00
Katos
86466229cb
Update README.md
...
Force a currency sync
2025-01-23 07:36:46 +00:00
FjellOverflow
a6b25f7a1c
Fix flash of wrong theme on initial UI load ( #485 )
...
Co-authored-by: Tonya <tonya@tokia.dev >
2025-01-23 01:29:19 +00:00
EdWorth120
f317bb6d88
Change the tag of loading="lazy" attribute placement for it to work properly on item images. ( #486 )
2025-01-23 01:13:09 +00:00
Matt Kilgore
a1dabaa5b6
Update devcontainer.json
Update Currencies / update-currencies (push) Has been cancelled
Docker publish / build (linux/amd64) (push) Has been cancelled
Docker publish / build (linux/arm/v7) (push) Has been cancelled
Docker publish / build (linux/arm64) (push) Has been cancelled
Docker publish rootless / build (linux/amd64) (push) Has been cancelled
Docker publish rootless / build (linux/arm/v7) (push) Has been cancelled
Docker publish rootless / build (linux/arm64) (push) Has been cancelled
Docker Cleanup / Delete Untagged Images (push) Has been cancelled
Docker Cleanup / Delete Cache Old Images (push) Has been cancelled
Docker publish / merge (push) Has been cancelled
Docker publish rootless / merge (push) Has been cancelled
2025-01-18 15:03:40 -05:00
Matt Kilgore
918618b720
Update devcontainer.json
2025-01-18 15:03:32 -05:00
Matt Kilgore
e79300c646
Update Dockerfile
2025-01-18 15:03:16 -05:00
Matt Kilgore
dd0164eb20
Update Dockerfile
2025-01-18 14:50:17 -05:00
Matt Kilgore
1cdf4ff505
Update Dockerfile
2025-01-18 14:48:19 -05:00
Matthew Kilgore
e533fd7770
Fix broken version links
Docker publish rootless / build (linux/amd64) (push) Has been cancelled
Docker publish rootless / build (linux/arm/v7) (push) Has been cancelled
Docker publish rootless / build (linux/arm64) (push) Has been cancelled
Docker publish / build (linux/amd64) (push) Has been cancelled
Docker publish / build (linux/arm/v7) (push) Has been cancelled
Docker publish / build (linux/arm64) (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
Docker publish rootless / merge (push) Has been cancelled
Docker publish / merge (push) Has been cancelled
2025-01-16 20:29:25 -05:00
Weblate
155fd5d17f
Translated using Weblate (Chinese (Simplified) (zh_MO))
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Currently translated at 33.3% (96 of 288 strings)
Translated using Weblate (Chinese (Simplified) (zh_MO))
Currently translated at 33.3% (96 of 288 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: wangwb <im.wangwb@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_MO/
Translation: Homebox/Frontend
2025-01-16 03:31:05 +00:00
Webysther Sperandio
1354242f38
Add link to release page ( #471 )
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
* Add link to release page
* Add API docs
2025-01-15 16:14:20 -05:00
Weblate
603a89d723
Translated using Weblate (French)
...
Docker publish rootless / build (linux/amd64) (push) Has been cancelled
Docker publish rootless / build (linux/arm/v7) (push) Has been cancelled
Docker publish rootless / build (linux/arm64) (push) Has been cancelled
Docker publish / build (linux/amd64) (push) Has been cancelled
Docker publish / build (linux/arm/v7) (push) Has been cancelled
Docker publish / build (linux/arm64) (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
Docker publish rootless / merge (push) Has been cancelled
Docker publish / merge (push) Has been cancelled
Currently translated at 100.0% (288 of 288 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (288 of 288 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2025-01-14 01:48:46 +00:00
Weblate
a5e7c51e0f
Translated using Weblate (Polish)
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Currently translated at 99.6% (287 of 288 strings)
Translated using Weblate (Turkish)
Currently translated at 99.6% (287 of 288 strings)
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2025-01-13 15:48:46 +00:00
Matt Kilgore
b147c53a5d
Update docker-publish-rootless.yaml
2025-01-13 09:59:15 -05:00
Matt Kilgore
88eb6ec2fa
Update docker-publish.yaml
2025-01-13 09:59:04 -05:00
Weblate
ac361eca13
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (288 of 288 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (288 of 288 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (288 of 288 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2025-01-13 10:48:46 +00:00
Weblate
92dbbe4892
Translated using Weblate (Hungarian)
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Currently translated at 99.6% (287 of 288 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2025-01-13 06:13:49 +00:00
Weblate
ddc52f4f0c
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 98.9% (285 of 288 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.9% (285 of 288 strings)
Co-authored-by: Cheng Gu <guchengf@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2025-01-13 05:39:14 +00:00
Weblate
8bd97e24d0
Translated using Weblate (Thai)
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Currently translated at 12.2% (35 of 286 strings)
Added translation using Weblate (Thai)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.9% (283 of 286 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.9% (283 of 286 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.9% (283 of 286 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (French)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Polish)
Currently translated at 99.6% (285 of 286 strings)
Translated using Weblate (French)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (German)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (German)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 36.7% (105 of 286 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 36.7% (105 of 286 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.8% (277 of 286 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.8% (277 of 286 strings)
Translated using Weblate (German)
Currently translated at 98.2% (281 of 286 strings)
Translated using Weblate (Danish)
Currently translated at 97.9% (280 of 286 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (286 of 286 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.5% (279 of 286 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.5% (279 of 286 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (French)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (French)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (English)
Currently translated at 100.0% (281 of 281 strings)
Co-authored-by: 1270o1 <ma@da-sh.de >
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Cheng Gu <guchengf@gmail.com >
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Equinoxs <equinoxsoftime@gmail.com >
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: Kostiantyn Kozlov <tempor.demonius@gmail.com >
Co-authored-by: Lukan Vanderlinde <weblate@lukan.rocks >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Nic <nicmeier1@gmx.net >
Co-authored-by: SKNTim <timmy444074@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Co-authored-by: csacsatb <csacsatb@gmail.com >
Co-authored-by: euforik <euforik22@gmail.com >
Co-authored-by: falchdk <jesper@falch.org >
Co-authored-by: stegl <primsteg@gmail.com >
Co-authored-by: xtsusaku <thanawat.putmala@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/th/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hant/
Translation: Homebox/Frontend
2025-01-11 17:59:37 +00:00
Corknut
55b907fac3
Added keyboard accessible shortcut menu for create modals ( #457 )
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
* Added quick action menu
* Ran ui:fix
* Updated quick action ui, added navigation options, translation keys
* Changed text color
* Added missing translation keys
2025-01-11 17:59:33 +00:00
Cheng Gu
3ca10897bb
Fix problem of broken navigation text in Chinese and set the correct value of html lang ( #456 )
...
Docker publish rootless / build (linux/amd64) (push) Has been cancelled
Docker publish rootless / build (linux/arm/v7) (push) Has been cancelled
Docker publish rootless / build (linux/arm64) (push) Has been cancelled
Docker publish / build (linux/amd64) (push) Has been cancelled
Docker publish / build (linux/arm/v7) (push) Has been cancelled
Docker publish / build (linux/arm64) (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
Docker publish rootless / merge (push) Has been cancelled
Docker publish / merge (push) Has been cancelled
* feat: set correct html lang value with i18n locale
* feat: do not wrap side menu text when locale is chinese
---------
Co-authored-by: Katos <7927609+katosdev@users.noreply.github.com >
2025-01-09 11:18:30 -05:00
Katos
344489819c
Trigger action to run
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Testing Docker actions following cycle of PAT
2025-01-09 12:23:55 +00:00
Katos
44bdca8c21
Update Dockerfile.rootless
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Specify UID:GID of nonroot user to fix issue with rootless database
2025-01-08 18:58:40 +00:00
Matt Kilgore
25700c12da
Update cutoff
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Docker publish / build (linux/amd64) (push) Has been cancelled
Docker publish / build (linux/arm/v7) (push) Has been cancelled
Docker publish / build (linux/arm64) (push) Has been cancelled
Docker publish / merge (push) Has been cancelled
2025-01-07 19:56:38 -05:00
Matt Kilgore
a252f63ae8
Update to
2025-01-07 19:55:05 -05:00
Matt Kilgore
3919ed2e91
Update docker-publish-rootless.yaml
Docker publish rootless / build (linux/amd64) (push) Has been cancelled
Docker publish rootless / build (linux/arm/v7) (push) Has been cancelled
Docker publish rootless / build (linux/arm64) (push) Has been cancelled
Docker publish / build (linux/amd64) (push) Has been cancelled
Docker publish / build (linux/arm/v7) (push) Has been cancelled
Docker publish / build (linux/arm64) (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
Docker publish rootless / merge (push) Has been cancelled
Docker publish / merge (push) Has been cancelled
2025-01-06 05:46:02 -05:00
Matt Kilgore
4847d8d72b
add docker sbom, provenance and annotations
2025-01-06 05:43:09 -05:00
Matt Kilgore
08081d7abf
Update clear-stale-docker-images.yml
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
2025-01-05 21:27:58 -05:00
Matt Kilgore
da9d0681b8
Update clear-stale-docker-images.yml
2025-01-05 21:26:07 -05:00
Matt Kilgore
f635bb1084
Update clear-stale-docker-images.yml
2025-01-05 21:16:44 -05:00
Matt Kilgore
ccb8961ed2
Update clear-stale-docker-images.yml
2025-01-05 21:14:18 -05:00
Matt Kilgore
de993f37a4
Update clear-stale-docker-images.yml
2025-01-05 21:12:18 -05:00
Matt Kilgore
c839e82b93
Need to make the directory from the builder
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
2025-01-05 12:50:52 -05:00
Matt Kilgore
ac47073988
Lets try this
2025-01-05 12:48:00 -05:00
Katos
6ad0c33340
Attempt #182391239123
2025-01-05 17:25:11 +00:00
Katos
14bb2de584
CHOWN data file
2025-01-05 17:15:01 +00:00
Katos
1d62552046
Update Dockerfile.rootless
2025-01-05 17:01:42 +00:00
Katos
d84c45d332
Fix ownership of directories
2025-01-05 16:46:04 +00:00
Katos
1f197f748a
CHOWN the required directories
2025-01-05 16:40:17 +00:00
Katos
0484bbb0c3
Update Dockerfile.rootless
2025-01-05 16:32:08 +00:00
Matt Kilgore
5009879f9f
Try this instead to fix rootless
2025-01-05 11:06:02 -05:00
Matt Kilgore
4b9bf95f20
Fix missing pnpm
2025-01-05 11:00:57 -05:00
Katos
d1dff61bef
They see my errors... they hatin'
2025-01-05 15:53:44 +00:00
Katos
966ae9062e
Adjust from Distroless to Alpine
2025-01-05 15:51:29 +00:00
Katos
0e3c1db334
Update Dockerfile.rootless
2025-01-05 15:43:44 +00:00
Katos
2e4a967559
Update Dockerfile.rootless
2025-01-05 15:42:05 +00:00
Katos
d8c98d1bdb
Update Dockerfile.rootless
2025-01-05 15:34:24 +00:00
Katos
f56067ac5c
Update Dockerfile.rootless
2025-01-05 15:31:16 +00:00
Katos
5878870809
Losing the will to live, one commit at a time
2025-01-05 15:27:03 +00:00
Katos
40ba888e05
Migrate context to variable.
2025-01-05 15:24:25 +00:00
Katos
342caf2e6b
Update docker-publish-rootless.yaml
2025-01-05 15:21:08 +00:00
Katos
f30ccec451
Update Dockerfile.rootless to use Curl instead of wget
2025-01-05 15:15:38 +00:00
Katos
8d3de1a1e5
Update Dockerfile.rootless to fix wget
2025-01-05 15:13:23 +00:00
Katos
f5e404e6cd
Update to rectify rootless build issues.
2025-01-05 15:07:34 +00:00
Matt Kilgore
62dc9f83c2
Fix missing version information in docker files
2025-01-05 10:05:58 -05:00
Katos
3922b13696
Force dockerfile to rootless on rootless build.
2025-01-05 15:00:08 +00:00
Matt Kilgore
96f3543891
fix: trying to solve the arm build process issue. ( #365 )
...
Docker publish rootless / build (linux/amd64) (push) Waiting to run
Docker publish rootless / build (linux/arm/v7) (push) Waiting to run
Docker publish rootless / build (linux/arm64) (push) Waiting to run
Docker publish rootless / merge (push) Blocked by required conditions
Docker publish / build (linux/amd64) (push) Waiting to run
Docker publish / build (linux/arm/v7) (push) Waiting to run
Docker publish / build (linux/arm64) (push) Waiting to run
Docker publish / merge (push) Blocked by required conditions
Update Currencies / update-currencies (push) Waiting to run
Co-authored-by: Katos <7927609+katosdev@users.noreply.github.com >
2025-01-04 20:43:27 -05:00
Matt Kilgore
850e61cade
Update NPM dependencies
2025-01-04 16:24:22 -05:00
Matt Kilgore
d320401555
Update Golang dependencies
2025-01-04 16:22:53 -05:00
Tonya
9cf244c933
Add a warning when the version does not match the latest release ( #442 )
Docker publish rootless / build-rootless (push) Waiting to run
Docker publish / build (push) Waiting to run
Update Currencies / update-currencies (push) Waiting to run
Docker publish ARM / build (push) Has been cancelled
Docker publish rootless ARM / build-rootless (push) Has been cancelled
Dockerhub publish / build (push) Has been cancelled
2025-01-04 14:22:25 -05:00
Matt Kilgore
a4e94ddf7a
feat: Add measurement types to label generator, part of #436
2025-01-04 11:10:06 -05:00
EdWorth120
b6c4815dd1
When a location is requested by ID, sort its children location by name, it helps to organize the user interface. ( #421 )
...
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
2025-01-04 10:28:43 -05:00
Harrison Conlin
1a4e98ad2a
add _time_format=sqlite parameter to SQLite URLs ( #430 )
2025-01-04 10:28:15 -05:00
Matt Kilgore
15e0cfb73f
feat: Implement offline cache for sw, and autoupdating ( #431 )
2025-01-04 10:28:01 -05:00
Matt Kilgore
2810ff9172
Update package.json
2025-01-04 10:02:18 -05:00
Matt Kilgore
303cfa7268
Update clear-stale-docker-images.yml
Docker publish ARM / build (push) Waiting to run
Docker publish rootless ARM / build-rootless (push) Waiting to run
Docker publish rootless / build-rootless (push) Waiting to run
Docker publish / build (push) Waiting to run
Dockerhub publish / build (push) Waiting to run
Update Currencies / update-currencies (push) Waiting to run
2025-01-03 19:58:06 -05:00
Matt Kilgore
7ffda6119f
Update clear-stale-docker-images.yml
2025-01-03 19:50:10 -05:00
Matt Kilgore
a73aee5ea2
Update clear-stale-docker-images.yml
2025-01-03 19:46:31 -05:00
Matt Kilgore
5bdaac74cd
Create clear-stale-docker-images.yml
2025-01-03 19:44:49 -05:00
Tonya
2b4ad9356d
Added easy label creation to multiselect ( #425 )
...
* feat: added easy label creation to multiselect, also fixed webhooks in dev mode
* fix: add missing translation
2025-01-03 14:29:48 -05:00
EdWorth120
1638e35da3
fix : #413 text not wrapping in location names when in location page ( #422 )
Docker publish ARM / build (push) Has been cancelled
Docker publish rootless ARM / build-rootless (push) Has been cancelled
Docker publish rootless / build-rootless (push) Has been cancelled
Docker publish / build (push) Has been cancelled
Dockerhub publish / build (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
2025-01-01 19:58:14 -05:00
Katos
9be3e4e830
Fix environment variable documentation
Docker publish ARM / build (push) Waiting to run
Docker publish rootless ARM / build-rootless (push) Waiting to run
Docker publish rootless / build-rootless (push) Waiting to run
Docker publish / build (push) Waiting to run
Dockerhub publish / build (push) Waiting to run
Update Currencies / update-currencies (push) Waiting to run
2025-01-01 16:06:32 +00:00
Katos
14916d2cc9
Merge pull request #420 from sysadminsmedia/katos/docs-fix
...
Update Docs to rectify invalid environment variable for max file upload
2025-01-01 15:57:24 +00:00
Katos
e63316b5be
Update Docs to rectify invalid environment variable for max file upload
2025-01-01 15:48:04 +00:00
Weblate
09e2daef3e
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (German)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (German)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (French)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (German)
Currently translated at 99.6% (280 of 281 strings)
Translated using Weblate (German)
Currently translated at 99.6% (280 of 281 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (281 of 281 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (German)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Czech)
Currently translated at 79.7% (221 of 277 strings)
Added translation using Weblate (Czech)
Translated using Weblate (Polish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Polish)
Currently translated at 95.6% (265 of 277 strings)
Translated using Weblate (Polish)
Currently translated at 95.6% (265 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 74.0% (205 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 74.0% (205 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 74.0% (205 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 43.6% (121 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 43.6% (121 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 43.6% (121 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 38.6% (107 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 38.6% (107 of 277 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (French)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (French)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (French)
Currently translated at 78.7% (218 of 277 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (277 of 277 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Andreas Olsson <basen82@icloud.com >
Co-authored-by: ChinskiKaczynski <nupharizar@gmail.com >
Co-authored-by: Christoph Auer <Christoph.Auer@pilsheim.de >
Co-authored-by: Edmundo Neto <edmundo.vn@gmail.com >
Co-authored-by: Eniafit <eniafit87@gmail.com >
Co-authored-by: Fabian <Fabian.paul.gurtner@gmail.com >
Co-authored-by: Hannes Salen <hannes.salen@gmail.com >
Co-authored-by: Heine Olsen <olsen10051988@gmail.com >
Co-authored-by: Mickaël Descamps <mickael.descamps@mineyou.fr >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: PavulonGit <pavloo@vp.pl >
Co-authored-by: PavulonGit <pavulongit@users.noreply.translate.sysadminsmedia.com >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: thhurt <th.hurtado+weblate@gmail.com >
Co-authored-by: vyPal <kubik.palacky@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/cs/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2024-12-31 19:48:46 +00:00
Tonya
1ebdc88b0d
Improve handling of copy button on http ( #414 )
Docker publish ARM / build (push) Has been cancelled
Docker publish rootless ARM / build-rootless (push) Has been cancelled
Docker publish rootless / build-rootless (push) Has been cancelled
Docker publish / build (push) Has been cancelled
Dockerhub publish / build (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
2024-12-29 12:23:59 -05:00
Katos
ba98655231
REVERT: Fix logo not appearing in safari
...
Docker publish ARM / build (push) Has been cancelled
Docker publish rootless ARM / build-rootless (push) Has been cancelled
Docker publish rootless / build-rootless (push) Has been cancelled
Docker publish / build (push) Has been cancelled
Dockerhub publish / build (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
Due to issues with placement of the homebox logo, remove Logo size for further investigation and discussion.
2024-12-27 23:03:42 +00:00
Katos
7d955e4a5d
Remove Logo size
...
Due to misplaced logo components, reverting change to add sizing whilst further investigation is conducted.
2024-12-27 22:57:31 +00:00
Katos
2f7d7cfc00
Update Dockerfile
...
Trigger the Dockerhub action
2024-12-27 16:15:33 +00:00
Katos
243dd1d306
Update .gitignore
...
triggering the new dockerhub build action
2024-12-27 16:13:58 +00:00
Katos
a825bab986
Update dockerhub-publish.yaml
2024-12-27 16:12:56 +00:00
Katos
3242e9b24b
Rename dockerhub-publish to dockerhub-publish.yaml
2024-12-27 16:06:12 +00:00
Katos
481f2e9698
Create dockerhub-publish
2024-12-27 16:05:56 +00:00
Katos
873ee90674
Fix logo size
...
Docker publish ARM / build (push) Waiting to run
Docker publish rootless ARM / build-rootless (push) Waiting to run
Docker publish rootless / build-rootless (push) Waiting to run
Docker publish / build (push) Waiting to run
Update Currencies / update-currencies (push) Waiting to run
Due to placement issues on the login page, size has to be significantly reduced. I continue to hate Safari....
2024-12-26 22:08:41 +00:00
Katos
35dcfd2c0f
FIX: Homebox SVG logo missing in Safari due to size not specified
...
FIX #360 : Homebox SVG logo missing in Safari due to size not specified
2024-12-26 21:46:59 +00:00
Katos
97e0816654
Fix Safari being dumb
2024-12-26 21:41:10 +00:00
Tonya
2ae1115a3e
refactor: remove strings lib ( #405 )
2024-12-26 16:37:07 -05:00
Katos
ba3f4ac371
Move Height and Width attribute to (hopefully) fix Safari issues.
2024-12-26 21:32:54 +00:00
Katos
9a4f8e0dde
Merge pull request #402 from sysadminsmedia/katos/fix-logo-size
...
FIX: Set SVG logo size to fix logo not showing on Safari
2024-12-26 18:55:10 +00:00
Katos
26a7fcb697
Update Logo and Fix Frontend tests
2024-12-26 18:49:48 +00:00
Katos
62a450f376
Fix integration tests
2024-12-26 18:49:48 +00:00
Katos
32e0d80611
Update Logo.vue
2024-12-26 18:49:48 +00:00
Matt Kilgore
75b9c2f45b
fix: missing migration
2024-12-26 18:36:28 +00:00
Katos
1aff45159e
Merge pull request #403 from sysadminsmedia/revert-401-katos/fix-items-labels
...
Revert "Fix: Show labels on item page"
2024-12-26 17:40:33 +00:00
Katos
0f3948d435
Revert "Fix: Show labels on item page"
2024-12-26 17:38:01 +00:00
Katos
e0de8433f5
Merge pull request #401 from sysadminsmedia/katos/fix-items-labels
...
Fix: Show labels on item page
2024-12-26 17:30:37 +00:00
Katos
29d82fcbfe
Update index.vue
2024-12-26 16:57:39 +00:00
Matt Kilgore
2df7d25284
Run task ui:fix for lint
2024-12-26 16:51:29 +00:00
Katos
6a54b66fec
Update datelib.test.ts
...
Please fix the tests 😁
2024-12-26 16:42:38 +00:00
Matt Kilgore
91851b4333
Fix datelib test
2024-12-26 11:31:44 -05:00
Matt Kilgore
68cad395b8
Fix date test (I think)
2024-12-26 11:19:43 -05:00
Katos
a935c7d0dd
Update index.vue
2024-12-26 16:16:34 +00:00
Katos
55d11f0b05
Update index.vue
...
Update Item page to correct the JSON return for labels and add a fall back if no labels are collected.
2024-12-26 16:09:00 +00:00
Katos
5e853513b9
Merge pull request #400 from sysadminsmedia/katos/fix-logo-safari
...
Docker publish ARM / build (push) Waiting to run
Docker publish rootless ARM / build-rootless (push) Waiting to run
Docker publish rootless / build-rootless (push) Waiting to run
Docker publish / build (push) Waiting to run
Update Currencies / update-currencies (push) Waiting to run
Update Logo.vue
2024-12-26 14:36:28 +00:00
Katos
6fb52bf19e
Update Logo.vue
...
Add height and width attributes to the logo to fix #360
2024-12-26 14:18:51 +00:00
zebrapurring
441c2e7a59
feat: add button to copy the item URL ( #389 )
...
Docker publish ARM / build (push) Has been cancelled
Docker publish rootless ARM / build-rootless (push) Has been cancelled
Docker publish rootless / build-rootless (push) Has been cancelled
Docker publish / build (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
Co-authored-by: zebrapurring <>
2024-12-23 22:18:44 -05:00
zebrapurring
a3ebeb8f6f
feat: display item labels in the details page ( #387 )
...
Docker publish ARM / build (push) Has been cancelled
Docker publish rootless ARM / build-rootless (push) Has been cancelled
Docker publish rootless / build-rootless (push) Has been cancelled
Docker publish / build (push) Has been cancelled
Update Currencies / update-currencies (push) Has been cancelled
Co-authored-by: zebrapurring <>
2024-12-20 19:36:14 -05:00
Katos
6142c31c8c
Merge pull request #275 from slid1amo2n3e4/parent-location-sync
...
Implement syncing with parent item location.
2024-12-13 21:02:39 +00:00
slid1amo2n3e4
beed55f322
Merge branch 'main' into parent-location-sync
2024-12-13 15:01:02 +01:00
dependabot[bot]
a7d61889ca
chore(deps): bump golang.org/x/crypto ( #382 )
...
Bumps the go_modules group with 1 update in the /backend directory: [golang.org/x/crypto](https://github.com/golang/crypto ).
Updates `golang.org/x/crypto` from 0.28.0 to 0.31.0
- [Commits](https://github.com/golang/crypto/compare/v0.28.0...v0.31.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/crypto
dependency-type: direct:production
dependency-group: go_modules
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-12 20:49:23 -05:00
zebrapurring
83c57ed9e6
fix: sorting for completed and scheduled maintenance entries ( #384 )
...
* fix: sorting for completed and scheduled maintenance entries
* Completed entries are sorted by descending completion date
* Scheduled entries are sorted by ascending scheduling date
* Selecting both entries shall sort them by scheduling and then completion date in descending order
* refactor: rewrite if-else as switch-case
---------
Co-authored-by: zebrapurring <>
2024-12-12 20:47:40 -05:00
Mike Kusold
90adeb0063
Update Swagger Docs from #370 ( #376 )
2024-12-10 16:53:18 -05:00
slid1amo2n3e4
63eb287485
Make the tests pass, hopefully.
2024-12-10 18:48:49 +01:00
Mike Kusold
5f63c5f738
Improve swagger generation ( #370 )
...
* Improve swagger generation
These issues are causing ogen-api to fail after I used the swagger
converter.
* Specify multipart/form-data routes
Operations with parameters of "type: file" must include "multipart/form-data" in their "consumes" property
* Fix example usage
* fixup! Specify multipart/form-data routes
* Fix final validation errors
2024-12-08 18:11:21 -05:00
Nikolai K
2d2e3fe891
Improve filter for maintenances ( #367 )
...
Maintenances with completed date in the future should be in the scheduled tab
2024-12-02 14:23:37 -05:00
Sai Vishnu M
8dca14850b
add timestamp to the export filename ( #366 )
2024-12-02 09:00:25 -05:00
Katos
c9fc3ce020
Alphabetical Sorting of currencies
...
Update currencies.json with alphabetical sorting
2024-11-30 21:25:11 +00:00
github-actions[bot]
bb58d7da9d
Update currencies.json
2024-11-30 21:24:11 +00:00
Katos
8cb29c28ba
Update currencies.json
...
Force a re-sync from API to allow for alphabetical sorting
2024-11-30 21:23:55 +00:00
Katos
9a27b4d762
Update README.md
2024-11-30 21:20:21 +00:00
Katos
bfb70a26ab
Merge pull request #361 from sysadminsmedia/katos/fix-currencies-action
...
Fix Currencies Automated action
2024-11-30 21:13:48 +00:00
Katos
83012d491d
Update update-currencies.yml
2024-11-30 21:09:14 +00:00
Katos
67668578e8
Update update_currencies.py
2024-11-30 21:07:56 +00:00
Matt Kilgore
5e81e60106
fix : #289 Corrects the asset ID to always be correct for the description data. ( #351 )
2024-11-29 13:18:20 -05:00
Matt Kilgore
19ccfee083
fix: typecheck
2024-11-29 11:56:37 -05:00
Matt Kilgore
363c9dac6e
Merge remote-tracking branch 'origin/main'
...
# Conflicts:
# frontend/package.json
# frontend/pnpm-lock.yaml
2024-11-29 11:44:22 -05:00
Matt Kilgore
9f3d50b9f7
chore: update dependencies
2024-11-29 11:44:03 -05:00
tonyaellie
2f8a7e2a90
fix: pin typescript and vue-tsc versions to prevent issues
2024-11-29 16:22:47 +00:00
Matt Kilgore
5d51c74af2
fix: PR #347 broke ItemCard component, this fixes it.
...
Sets the locationFlatTree to be an optional prop for the Card component. With a default of an empty array.
2024-11-29 10:21:12 -05:00
Tommy Zaft
121d577e45
Show full location (including parents) of items in search results ( #347 )
...
* Pass locationFlatTree to ItemCard in order to display full location
* Add item.location.name as fallback if location is not found in flat tree
2024-11-27 15:51:43 -05:00
Weblate
64237a2722
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 96.3% (267 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 96.3% (267 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 96.3% (267 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 87.3% (242 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 87.3% (242 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 87.3% (242 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 79.0% (219 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 79.0% (219 of 277 strings)
Translated using Weblate (Ukrainian)
Currently translated at 79.0% (219 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 89.5% (248 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 89.5% (248 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 89.5% (248 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 67.1% (186 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 67.1% (186 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 67.1% (186 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 54.5% (151 of 277 strings)
Translated using Weblate (Catalan)
Currently translated at 54.5% (151 of 277 strings)
Translated using Weblate (Swedish)
Currently translated at 92.7% (257 of 277 strings)
Translated using Weblate (Swedish)
Currently translated at 92.7% (257 of 277 strings)
Translated using Weblate (French)
Currently translated at 78.7% (218 of 277 strings)
Translated using Weblate (French)
Currently translated at 78.7% (218 of 277 strings)
Translated using Weblate (French)
Currently translated at 78.7% (218 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 35.0% (97 of 277 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Russian)
Currently translated at 96.7% (268 of 277 strings)
Translated using Weblate (Russian)
Currently translated at 96.3% (267 of 277 strings)
Translated using Weblate (Russian)
Currently translated at 96.3% (267 of 277 strings)
Translated using Weblate (Russian)
Currently translated at 96.3% (267 of 277 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (German)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (German)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 100.0% (277 of 277 strings)
Added translation using Weblate (Norwegian Bokmål)
Translated using Weblate (Spanish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Romanian)
Currently translated at 84.4% (234 of 277 strings)
Translated using Weblate (Romanian)
Currently translated at 84.4% (234 of 277 strings)
Translated using Weblate (Romanian)
Currently translated at 84.4% (234 of 277 strings)
Translated using Weblate (German)
Currently translated at 100.0% (277 of 277 strings)
Co-authored-by: Andreas Olsson <basen82@icloud.com >
Co-authored-by: Andrei Homodi <admin@hph.ro >
Co-authored-by: Christer Solstrand Johannessen <weblate@csj.no >
Co-authored-by: Christoph Auer <Christoph.Auer@pilsheim.de >
Co-authored-by: Edmundo Neto <edmundo.vn@gmail.com >
Co-authored-by: Ivan <Ivan92@users.noreply.translate.sysadminsmedia.com >
Co-authored-by: Michael Mercier <michael.mercier.info@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Simon Bezruchenko <orisim@proton.me >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
Co-authored-by: Yuri <hi@yuri.li >
Co-authored-by: Zakhar Pedalkin <pedalkin@gmail.com >
Co-authored-by: ehrenschwan <luca@ehrenschwan.dev >
Co-authored-by: euforik <euforik22@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nb_NO/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ro/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translation: Homebox/Frontend
2024-11-26 22:14:21 +00:00
Adam Kleizer
3d972dcac3
fix : #321 use date-fns for localized datetime formatting ( #345 )
...
* fix : #321 use date-fns for localized datetime formatting
* chore: lint fixes for use-formatters
* chore: more lint fixes for use-formatters
* date and currency localization fixes
---------
Co-authored-by: Ádám Kleizer <adkl@boyum-it.com >
2024-11-23 12:33:46 -05:00
Tommy Zaft
6662bbd5b9
Fix typo in CONTRIBUTING.md ( #346 )
...
Minor inconvenience that bothered me
2024-11-22 16:13:45 -05:00
mcarbonne
05fbb207d1
fix translation (fr) ( #340 )
2024-11-16 17:54:51 -05:00
Weblate
b5c7566d37
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 97.1% (269 of 277 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 97.1% (269 of 277 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 97.1% (269 of 277 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 78.3% (217 of 277 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 78.3% (217 of 277 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 78.3% (217 of 277 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 63.8% (177 of 277 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 63.8% (177 of 277 strings)
Translated using Weblate (French)
Currently translated at 76.1% (211 of 277 strings)
Translated using Weblate (French)
Currently translated at 76.1% (211 of 277 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.0% (266 of 277 strings)
Translated using Weblate (Hungarian)
Currently translated at 96.0% (266 of 277 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Hungarian)
Currently translated at 92.0% (255 of 277 strings)
Translated using Weblate (Hungarian)
Currently translated at 92.0% (255 of 277 strings)
Translated using Weblate (Hungarian)
Currently translated at 91.6% (254 of 277 strings)
Translated using Weblate (Hungarian)
Currently translated at 91.6% (254 of 277 strings)
Translated using Weblate (Hungarian)
Currently translated at 91.6% (254 of 277 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (277 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 8.3% (23 of 277 strings)
Translated using Weblate (Danish)
Currently translated at 8.3% (23 of 277 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Frederik Andersen <github.dd9jf@simplelogin.com >
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Co-authored-by: thehijacker <thehijacker@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-11-05 16:29:39 +00:00
mcarbonne
7228c64b26
change link to aim maintenance page of item ( #270 )
2024-11-02 23:23:35 -04:00
Matt Kilgore
daf07d4f35
Merge branch 'main' into parent-location-sync
2024-11-02 23:22:53 -04:00
Weblate
744d8d6733
Translated using Weblate (English)
...
Currently translated at 100.0% (276 of 276 strings)
Translated using Weblate (English)
Currently translated at 100.0% (274 of 274 strings)
Translated using Weblate (English)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (French)
Currently translated at 75.8% (207 of 273 strings)
Translated using Weblate (French)
Currently translated at 75.8% (207 of 273 strings)
Translated using Weblate (French)
Currently translated at 75.8% (207 of 273 strings)
Translated using Weblate (French)
Currently translated at 75.8% (207 of 273 strings)
Translated using Weblate (French)
Currently translated at 65.9% (180 of 273 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Co-authored-by: mcarbonne <maximilien.carbonne@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-11-02 17:47:12 +00:00
Matt Kilgore
d5e66f29b0
chore: remove try it button from api docs
2024-10-31 22:01:32 -04:00
Matt Kilgore
030323224d
Merge remote-tracking branch 'origin/main'
2024-10-31 21:41:14 -04:00
Matt Kilgore
76b6c34533
chore: Add native API docs to website
2024-10-31 21:41:07 -04:00
Tonya
8d65b70922
Merge pull request #313 from sysadminsmedia/tonya/sanitise-translations-when-using-v-html
...
Sanitise translations when using v-html
2024-10-31 00:22:49 +00:00
tonyaellie
40b1793cce
feat: sanitise translations when using v-html
2024-10-30 22:40:02 +00:00
Matt Kilgore
ae76538178
Merge branch 'main' into parent-location-sync
2024-10-30 15:49:18 -04:00
Tonya
e2740a9b79
Merge pull request #312 from sysadminsmedia/tonya/improve-404-page
...
Improve 404 page
2024-10-30 19:12:08 +00:00
tonyaellie
4510712359
feat: make 404 follow theme and add a return home page
2024-10-30 16:01:05 +00:00
Weblate
1268fd90ba
Translated using Weblate (German)
...
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (German)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (German)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (German)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (German)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (German)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (German)
Currently translated at 98.5% (269 of 273 strings)
Translated using Weblate (German)
Currently translated at 98.5% (269 of 273 strings)
Translated using Weblate (German)
Currently translated at 98.5% (269 of 273 strings)
Translated using Weblate (German)
Currently translated at 98.5% (269 of 273 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (German)
Currently translated at 72.5% (198 of 273 strings)
Translated using Weblate (German)
Currently translated at 72.5% (198 of 273 strings)
Translated using Weblate (Slovenian)
Currently translated at 88.6% (242 of 273 strings)
Translated using Weblate (Slovenian)
Currently translated at 88.6% (242 of 273 strings)
Translated using Weblate (Slovenian)
Currently translated at 88.6% (242 of 273 strings)
Translated using Weblate (Slovenian)
Currently translated at 74.3% (203 of 273 strings)
Translated using Weblate (Slovenian)
Currently translated at 74.3% (203 of 273 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Slovak)
Currently translated at 36.9% (101 of 273 strings)
Translated using Weblate (Slovak)
Currently translated at 36.9% (101 of 273 strings)
Translated using Weblate (Swedish)
Currently translated at 86.4% (236 of 273 strings)
Added translation using Weblate (Slovak)
Translated using Weblate (Russian)
Currently translated at 73.6% (201 of 273 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Italian)
Currently translated at 65.2% (178 of 273 strings)
Translated using Weblate (Swedish)
Currently translated at 81.6% (223 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 90.1% (246 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 90.1% (246 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 89.7% (245 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 89.7% (245 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 89.0% (243 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 89.0% (243 of 273 strings)
Translated using Weblate (Turkish)
Currently translated at 89.7% (245 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 88.2% (241 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 88.2% (241 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 88.2% (241 of 273 strings)
Translated using Weblate (Turkish)
Currently translated at 83.8% (229 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 79.4% (217 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 79.4% (217 of 273 strings)
Translated using Weblate (Turkish)
Currently translated at 81.6% (223 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 79.1% (216 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 79.1% (216 of 273 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Swedish)
Currently translated at 80.2% (219 of 273 strings)
Translated using Weblate (Turkish)
Currently translated at 81.3% (222 of 273 strings)
Co-authored-by: Eugene Zrazhevsky <eugeny.zrazhevsky@gmail.com >
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: Kacper Grobelny <kacper12455@tutanota.com >
Co-authored-by: Mats <sysadminsmedia@mats-bueser.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Nic <nicmeier1@gmx.net >
Co-authored-by: Sky <furnace_brier.03@icloud.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Co-authored-by: benjcmin <benjcmin@gmail.com >
Co-authored-by: ehrenschwan <luca@ehrenschwan.dev >
Co-authored-by: euforik <euforik22@gmail.com >
Co-authored-by: mandakan <mathias.a+github@gmail.com >
Co-authored-by: thehijacker <thehijacker@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-10-29 16:14:20 +00:00
Matt Kilgore
ab80805073
Merge branch 'main' into parent-location-sync
2024-10-28 15:51:31 -04:00
Tonya
ec5b6bb8ff
Get front end tests passing ( #299 )
...
* chore: get front end tests passing
* chore: add @vue/runtime-core to fix types for $t
* chore: sort lockfile
* Discard changes to frontend/pnpm-lock.yaml
* chore: sort lockfile
* chore: fix some type errors
* chore: switch from nuxi typecheck to vue-tsc to force a known good version
* chore: linting
* chore: update pnpm version in frontend test
* feat: add proper pagination type (need to sort why it still doesn't work)
* chore: format imports and initialize totalPrice in label page to null when no label is present
* chore: update pnpm to v9.12.2, merge ItemSummaryPaginationResult with PaginationResult, and handle error in label generator more gracefully
* chore: lint
---------
Co-authored-by: Matt Kilgore <matthew@kilgore.dev >
2024-10-28 15:47:00 -04:00
Weblate
c0860fc9ca
Translated using Weblate (Polish)
...
Currently translated at 78.3% (214 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 78.3% (214 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 78.3% (214 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 69.5% (190 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 69.5% (190 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 69.2% (189 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 69.2% (189 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 68.8% (188 of 273 strings)
Translated using Weblate (Polish)
Currently translated at 68.8% (188 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 98.1% (268 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 98.1% (268 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 91.2% (249 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 91.2% (249 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 91.2% (249 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 73.6% (201 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 73.6% (201 of 273 strings)
Translated using Weblate (Dutch)
Currently translated at 73.6% (201 of 273 strings)
Translated using Weblate (English)
Currently translated at 100.0% (273 of 273 strings)
Translated using Weblate (Swedish)
Currently translated at 68.1% (186 of 273 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Danish)
Currently translated at 9.0% (16 of 176 strings)
Added translation using Weblate (Danish)
Translated using Weblate (Romanian)
Currently translated at 82.3% (145 of 176 strings)
Translated using Weblate (Romanian)
Currently translated at 82.3% (145 of 176 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 81.2% (143 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 98.8% (174 of 176 strings)
Added translation using Weblate (Romanian)
Translated using Weblate (Russian)
Currently translated at 97.7% (172 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 97.7% (172 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 93.7% (165 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 93.7% (165 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 93.7% (165 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 78.9% (139 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 78.9% (139 of 176 strings)
Translated using Weblate (Russian)
Currently translated at 78.9% (139 of 176 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Finnish)
Currently translated at 6.8% (12 of 176 strings)
Translated using Weblate (Swedish)
Currently translated at 74.4% (131 of 176 strings)
Added translation using Weblate (Finnish)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Andrei Homodi <admin@hph.ro >
Co-authored-by: Deleted User <noreply+63@weblate.org >
Co-authored-by: Fedor M <k930bx@gmail.com >
Co-authored-by: HawkanForce <hakanfors84@gmail.com >
Co-authored-by: Jeroen van Veen <mail@jeroenvanveen.nl >
Co-authored-by: Kacper Grobelny <kacper12455@tutanota.com >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Thomas Vagning <Thomasvagning@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: mandakan <mathias.a+github@gmail.com >
Co-authored-by: ptitovskii <ptitovskii@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/da/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fi/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ro/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translation: Homebox/Frontend
2024-10-27 15:36:51 +00:00
Matt Kilgore
8d93ab3d7f
Update FUNDING.yml
2024-10-25 20:35:42 -04:00
Tonya
d39d109031
Merge pull request #295 from tonyaellie/improve-languages-support
...
feat: improve languages support
2024-10-25 13:10:46 +01:00
tonya
1d5b62fdf3
feat: add locale time ago formatting and the local name for the language in language dropdown
2024-10-23 23:56:31 +00:00
tonya
a9616911f5
feat: improve languages support
2024-10-22 23:58:43 +00:00
Matt Kilgore
3eb5ece34d
fix: minor things
2024-10-19 13:10:19 -04:00
Matt Kilgore
77246ca57b
fix : #290 text not wrapping in correct places
2024-10-19 13:07:26 -04:00
Weblate
087a328e83
Translated using Weblate (Japanese)
...
Currently translated at 27.2% (48 of 176 strings)
Translated using Weblate (Japanese)
Currently translated at 27.2% (48 of 176 strings)
Translated using Weblate (Japanese)
Currently translated at 25.5% (45 of 176 strings)
Translated using Weblate (Japanese)
Currently translated at 25.5% (45 of 176 strings)
Translated using Weblate (French)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (French)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (French)
Currently translated at 100.0% (176 of 176 strings)
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: buzz <buzz.eclair@gmail.com >
Co-authored-by: mcarbonne <maximilien.carbonne@gmail.com >
Co-authored-by: slipperybeluga <joshkouri@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-10-19 16:20:03 +00:00
Matt Kilgore
8a6df8a69b
fix: label generator gets way bent out of shape with long names
2024-10-16 21:52:46 -04:00
Michael Wayne
c2546f06d4
fix: ensure only one attachment is marked as primary ( #287 )
2024-10-16 20:39:17 -04:00
Matt Kilgore
3a4c78ed86
Update feature_request.yml
2024-10-13 14:53:40 -04:00
Matt Kilgore
ed7670ac67
Update bug_report.yml
2024-10-13 14:53:19 -04:00
Weblate
2cd50435b5
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Japanese)
Currently translated at 13.6% (24 of 176 strings)
Added translation using Weblate (Japanese)
Translated using Weblate (Swedish)
Currently translated at 71.0% (125 of 176 strings)
Translated using Weblate (Swedish)
Currently translated at 71.0% (125 of 176 strings)
Translated using Weblate (Swedish)
Currently translated at 71.0% (125 of 176 strings)
Translated using Weblate (Dutch)
Currently translated at 96.5% (170 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 93.1% (164 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 93.1% (164 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 92.6% (163 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 92.6% (163 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 91.4% (161 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 91.4% (161 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 91.4% (161 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 90.3% (159 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 90.3% (159 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 84.0% (148 of 176 strings)
Translated using Weblate (Spanish)
Currently translated at 84.0% (148 of 176 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Ukrainian)
Currently translated at 55.1% (97 of 176 strings)
Translated using Weblate (Ukrainian)
Currently translated at 55.1% (97 of 176 strings)
Translated using Weblate (Swedish)
Currently translated at 65.9% (116 of 176 strings)
Translated using Weblate (Swedish)
Currently translated at 65.9% (116 of 176 strings)
Added translation using Weblate (Ukrainian)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.2% (173 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (English)
Currently translated at 100.0% (176 of 176 strings)
Co-authored-by: Anton <AntonSoliaryk@proton.me >
Co-authored-by: Erwin van Londen <translate.sysadminsm.treachery437@passmail.net >
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: Mattias Kågström <mattias.kagstrom95@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: Snussune <stollen.pwb@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Co-authored-by: slipperybeluga <joshkouri@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ja/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/uk/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-10-13 18:43:45 +00:00
Katos
9b72419e6b
Merge pull request #282 from sysadminsmedia/katos/docker-arm-refactor
...
Refactor Docker files for ARM performance improvements
2024-10-13 12:58:03 +01:00
Song Lim
a1e66854cd
fix: inaccurate purchaseTime ( #279 )
2024-10-12 22:05:34 -04:00
mcarbonne
ab756aaa56
allow avif and webp for primary photo when creating an item ( #284 )
2024-10-12 22:00:12 -04:00
Katos
d45c8b2b2d
Update docker-publish-rootless-arm.yaml
2024-10-12 17:49:43 +01:00
Katos
f26b5e1190
Update docker-publish-rootless-arm.yaml
2024-10-12 17:25:13 +01:00
Katos
8bfa930cf0
Update docker-publish-arm.yaml
2024-10-12 17:25:01 +01:00
Katos
52f9306e98
Update docker-publish-rootless-arm.yaml
2024-10-12 16:44:00 +01:00
Katos
483934bd5e
Update docker-publish-arm.yaml
...
This is starting to annoy me now
2024-10-12 16:16:59 +01:00
Katos
de7ef70d40
Update docker-publish-rootless-arm.yaml
...
Fixing a force-of-habit mistake 🙁
2024-10-12 16:13:10 +01:00
Katos
1e020f7fae
Update docker-publish-arm.yaml
...
I didn't mean to use a remote build... Force of habit!
2024-10-12 16:12:38 +01:00
Katos
0d6ec9c427
Update docker-publish-rootless-arm.yaml
2024-10-12 15:59:45 +01:00
Katos
e32683fb28
Update docker-publish-arm.yaml
...
Update the action for Arm
2024-10-12 15:58:35 +01:00
Katos
67c77a7d91
Update Dockerfile
...
Fix my absolute shit-show of a Docker refactor.
2024-10-12 15:53:40 +01:00
Katos
55acfa54f5
Update Dockerfile.rootless
...
Update with optimisation attempts
2024-10-12 15:47:52 +01:00
Katos
7f742738fa
Update Dockerfile
...
Update Dockerfile to attempt to optimise build times,
2024-10-12 15:46:51 +01:00
Jackxwb
888973e2cb
Merge pull request #261
...
* Supplementary search, Resolve the issue of language not being supported
2024-10-12 10:33:04 -04:00
Tonya
65b247573e
Merge pull request #259
...
* feat: duplicate item button
2024-10-12 10:29:21 -04:00
Song Lim
8f255ccfd4
fix: typo in frontend development start command ( #278 )
2024-10-12 10:25:56 -04:00
slid1amo2n3e4
f6d1f9c90d
Fix 'should not use underscores in Go names' lint error
2024-10-08 22:31:05 +02:00
slid1amo2n3e4
17e7e24070
Implement syncing child's locations to that of parent.
2024-10-08 15:48:12 -04:00
slid1amo2n3e4
7d462a4dd3
Fix formatting.
2024-10-08 15:48:12 -04:00
Matt Kilgore
c9ed50afad
Update docker-publish-rootless-arm.yaml
2024-10-08 15:47:22 -04:00
Matt Kilgore
3fd14aac47
Update docker-publish-arm.yaml
2024-10-08 15:47:12 -04:00
Matt Kilgore
ed780e292b
chore: split arm docker builds into their own tags ( #264 )
...
Reduces overall build times significantly, and reduces the chances of architecture specific issues causing build timeouts.
BREAKING CHANGE: Those using ARM based architecture docker installations will need to update the tag they use to have the `-arm` suffix.
2024-10-08 15:46:10 -04:00
Matt Kilgore
c6158e7c9e
fix: javascript handles nulls in an incredibly stupid way.
2024-10-05 15:38:31 -04:00
Matt Kilgore
5d3698d0d8
chore: ente update things
2024-10-05 13:31:28 -04:00
Matt Kilgore
a70bb227a9
Merge remote-tracking branch 'origin/main'
2024-10-05 12:10:34 -04:00
Matt Kilgore
908bfb530e
fix: API should expect actual floats now
2024-10-05 12:10:27 -04:00
Weblate
738fe6db03
Translated using Weblate (Italian)
...
Currently translated at 96.0% (169 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 96.0% (169 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:06:01 +00:00
Weblate
733ccb51c3
Translated using Weblate (Italian)
...
Currently translated at 93.1% (164 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 93.1% (164 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:05:32 +00:00
Weblate
ed3d106289
Translated using Weblate (Italian)
...
Currently translated at 91.4% (161 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 91.4% (161 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 91.4% (161 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:04:30 +00:00
Weblate
333bca85f8
Translated using Weblate (Italian)
...
Currently translated at 90.3% (159 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 90.3% (159 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:03:52 +00:00
Weblate
1ebc3d9c27
Translated using Weblate (Italian)
...
Currently translated at 89.7% (158 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 89.7% (158 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:03:24 +00:00
Weblate
c298b651b6
Translated using Weblate (Italian)
...
Currently translated at 88.6% (156 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 88.6% (156 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:03:00 +00:00
Weblate
d8260b9988
Translated using Weblate (Italian)
...
Currently translated at 87.5% (154 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 87.5% (154 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:02:07 +00:00
Weblate
d0a69c8446
Translated using Weblate (Italian)
...
Currently translated at 86.9% (153 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 86.9% (153 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 08:00:29 +00:00
Weblate
f3388b8449
Translated using Weblate (Italian)
...
Currently translated at 86.3% (152 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 86.3% (152 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 07:56:27 +00:00
Weblate
c94eb4e183
Translated using Weblate (Italian)
...
Currently translated at 84.6% (149 of 176 strings)
Translated using Weblate (Italian)
Currently translated at 84.6% (149 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-10-05 07:55:36 +00:00
Matt Kilgore
f386d1213f
Update TextField.vue
2024-10-04 16:08:20 -04:00
Matt Kilgore
9b7b00e8f2
fix: Nuxt can't be fully updated
2024-10-04 14:54:34 -04:00
Matt Kilgore
055f0219a8
chore: update nuxt
2024-10-04 14:41:36 -04:00
Matt Kilgore
9d3f3cf1da
fix : #232 wrap text fields for from and to fields for sold and purchased.
2024-10-04 14:38:29 -04:00
Matt Kilgore
da8cc19838
fix : #204 sets inline form inputs to use properties correctly, numbers now enforce correct format.
2024-10-04 14:24:35 -04:00
Matt Kilgore
a3d5485c1d
fix : #147 notifier now shows previous input value
2024-10-04 13:49:36 -04:00
Matt Kilgore
865661097c
fix : #181 MultiSelect can now be cleared manually.
2024-10-04 13:31:06 -04:00
Weblate
ab48f55335
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (176 of 176 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-10-02 12:58:06 +00:00
Weblate
49f52cada4
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 93.1% (164 of 176 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.1% (164 of 176 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.1% (164 of 176 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.2% (173 of 176 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-10-01 12:45:24 +00:00
Weblate
059bc5f16c
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 98.2% (173 of 176 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.2% (173 of 176 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.2% (173 of 176 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-10-01 04:28:45 +00:00
Weblate
a8eab724f9
Translated using Weblate (Catalan)
...
Currently translated at 72.7% (128 of 176 strings)
Translated using Weblate (Catalan)
Currently translated at 72.7% (128 of 176 strings)
Translated using Weblate (Catalan)
Currently translated at 72.7% (128 of 176 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 86.9% (153 of 176 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 86.9% (153 of 176 strings)
Translated using Weblate (French)
Currently translated at 99.4% (175 of 176 strings)
Translated using Weblate (French)
Currently translated at 99.4% (175 of 176 strings)
Translated using Weblate (Dutch)
Currently translated at 96.0% (169 of 176 strings)
Translated using Weblate (Dutch)
Currently translated at 96.0% (169 of 176 strings)
Translated using Weblate (Dutch)
Currently translated at 96.0% (169 of 176 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: Jean-Philippe Baril <translate.sysadminsmedia.com@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
Co-authored-by: mcarbonne <maximilien.carbonne@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-10-01 04:16:11 +00:00
Weblate
eed967e9b4
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Catalan)
Currently translated at 63.0% (111 of 176 strings)
Translated using Weblate (Catalan)
Currently translated at 63.0% (111 of 176 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (Dutch)
Currently translated at 81.8% (144 of 176 strings)
Translated using Weblate (Dutch)
Currently translated at 81.8% (144 of 176 strings)
Translated using Weblate (Dutch)
Currently translated at 81.8% (144 of 176 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
Co-authored-by: thehijacker <thehijacker@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2024-09-30 13:29:46 +00:00
Katos
2eb421455b
Merge pull request #137 from strass/label-report-prefill
...
label generation tool prefills already allocated items
2024-09-30 13:15:09 +01:00
Weblate
e0d86ce745
Translated using Weblate (Slovenian)
...
Currently translated at 90.3% (159 of 176 strings)
Translated using Weblate (Slovenian)
Currently translated at 90.3% (159 of 176 strings)
Translated using Weblate (Slovenian)
Currently translated at 90.3% (159 of 176 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: thehijacker <thehijacker@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2024-09-30 04:33:44 +00:00
Weblate
ba8f32cec8
Translated using Weblate (Slovenian)
...
Currently translated at 61.3% (108 of 176 strings)
Translated using Weblate (Slovenian)
Currently translated at 61.3% (108 of 176 strings)
Translated using Weblate (German)
Currently translated at 100.0% (176 of 176 strings)
Translated using Weblate (German)
Currently translated at 100.0% (176 of 176 strings)
Co-authored-by: Gurke090 <leo.hellfach@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: thehijacker <thehijacker@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2024-09-30 04:22:40 +00:00
Weblate
4af6bf210e
Translated using Weblate (German)
...
Currently translated at 99.4% (173 of 174 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2024-09-28 20:35:54 +00:00
Katos
1de3ecda19
Merge pull request #234 from tonyaellie/add-char-counts-with-max-to-lots-of-inputs
...
Add char counters to inputs
2024-09-28 21:35:50 +01:00
Tonya
4a0039c838
Merge branch 'main' into add-char-counts-with-max-to-lots-of-inputs
2024-09-28 20:28:01 +00:00
Katos
02a34ed1a0
Merge pull request #246 from mcarbonne/feat_maintenance_complete_and_duplicate
...
Feature: improve maintenance view with new actions
2024-09-28 19:45:45 +01:00
Weblate
dc23a1ae23
Translated using Weblate (German)
...
Currently translated at 99.4% (173 of 174 strings)
Translated using Weblate (German)
Currently translated at 99.4% (173 of 174 strings)
Translated using Weblate (German)
Currently translated at 99.4% (173 of 174 strings)
Translated using Weblate (German)
Currently translated at 99.4% (173 of 174 strings)
Translated using Weblate (German)
Currently translated at 99.4% (173 of 174 strings)
Co-authored-by: Gurke090 <leo.hellfach@gmail.com >
Co-authored-by: Maxklos <herzognikolaus@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Nic <nicmeier1@gmx.net >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2024-09-28 14:11:57 +00:00
Weblate
4fea927880
Translated using Weblate (German)
...
Currently translated at 95.9% (167 of 174 strings)
Translated using Weblate (German)
Currently translated at 95.9% (167 of 174 strings)
Co-authored-by: Gurke090 <leo.hellfach@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2024-09-28 14:01:24 +00:00
Maximilien Carbonne
ff874ac472
fix: wrong return type
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
ba48a615cd
minor fixes (style)
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
5aa389b13c
always show duplicate action
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
b500f6b51f
minor fix
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
2ea9ed0476
keep only basic actions (duplicate and mark as done)
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
68ee701e46
fix: action buttons cropped on mobile devices
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
dc88406bcc
rework frontend for maintenances (factorize)
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
ca85d4b483
simplify/factorize backend for maintenance
2024-09-27 21:38:27 +02:00
Maximilien Carbonne
17ecfa2c66
maintenances: add new actions
2024-09-27 21:38:26 +02:00
mcarbonne
cabaa07384
fix close & download buttons when viewing a picture attachment ( #239 )
2024-09-26 13:44:55 -04:00
Weblate
d9b05e872c
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (174 of 174 strings)
Translated using Weblate (Slovenian)
Currently translated at 59.1% (103 of 174 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: stegl <primsteg@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2024-09-26 10:35:45 +00:00
Weblate
bd60c36240
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (174 of 174 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (174 of 174 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (174 of 174 strings)
Translated using Weblate (French)
Currently translated at 99.4% (173 of 174 strings)
Translated using Weblate (French)
Currently translated at 99.4% (173 of 174 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Co-authored-by: mcarbonne <maximilien.carbonne@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-25 20:47:09 +00:00
Weblate
1fc9843450
Translated using Weblate (English)
...
Currently translated at 99.4% (173 of 174 strings)
Translated using Weblate (German)
Currently translated at 88.8% (151 of 170 strings)
Translated using Weblate (German)
Currently translated at 88.8% (151 of 170 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2024-09-25 02:05:08 +00:00
Filipe Dobreira
4e260c5a8b
feat: Fix, add, tweak various empty states across the app ( #241 )
...
* fix: add empty state to locations list
* fix: add empty states for homepage lists
* fix: add empty state to notifiers list
* fix: update profile notifiers to use translation, add en and pt-pt copy
* chore: tweak copy for notifier empty state
* fix: add new empty state for search page
* fix: update new empty states to use translation strings
* chore: eslint fixes, translation
* fix: translation key
---------
Co-authored-by: Matt Kilgore <matthew@kilgore.dev >
2024-09-24 08:28:54 -04:00
mcarbonne
55a9355046
fix "task go:all" ( #238 )
2024-09-23 14:50:02 -04:00
Weblate
5bee3dd429
Translated using Weblate (German)
...
Currently translated at 85.2% (145 of 170 strings)
Translated using Weblate (German)
Currently translated at 85.2% (145 of 170 strings)
Translated using Weblate (Russian)
Currently translated at 82.9% (117 of 141 strings)
Translated using Weblate (Russian)
Currently translated at 82.9% (117 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: Eugene Zrazhevsky <eugeny.zrazhevsky@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Nic <nicmeier1@gmx.net >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2024-09-23 18:47:53 +00:00
mcarbonne
a85c42b539
Implement maintenance view ( #235 )
...
* implement backend to query maintenances
* improve backend API for maintenances
* add itemId and itemName (v1/maintenances)
* fix remaining todo in backend (/v1/maintenances)
* refactor: extract MaintenanceEditModal
* first draft (to be cleaned)
* revert dependency updates (not required)
* translation + fix deletion
* fix main menu css issues
* fix main menu "create" button (css)
* enhancement: make item name clickable
* fix: add page title (+ translate existing ones)
* fix: missing toast translation (when updating)
* bug fix: missing group check in backend (for new endpoint)
* backport from following PR (to avoid useless changes)
* maintenances => maintenance
2024-09-23 13:07:27 -04:00
Filipe Dobreira
897f3842e0
fix: redirect back to locations list after deleting location ( #240 )
2024-09-23 08:12:59 -04:00
Gabrinator
791d390187
docs: add Organizing Your Items page ( #236 )
2024-09-23 08:12:44 -04:00
Filipe Dobreira
e85b1a44b1
fix: prevent submit modal when trying to create location with no name ( #243 )
2024-09-23 08:11:59 -04:00
Weblate
ffd59d535c
Translated using Weblate (Italian)
...
Currently translated at 100.0% (141 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-09-22 19:02:30 +00:00
Weblate
e32a1041b1
Translated using Weblate (Italian)
...
Currently translated at 100.0% (141 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-09-22 19:00:43 +00:00
Weblate
c16269bcb4
Translated using Weblate (Italian)
...
Currently translated at 96.4% (136 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 96.4% (136 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-09-22 18:55:09 +00:00
Weblate
81d57d4c47
Translated using Weblate (Italian)
...
Currently translated at 95.7% (135 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 95.7% (135 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-09-22 18:55:00 +00:00
Weblate
bdb3b5dc24
Translated using Weblate (Italian)
...
Currently translated at 92.9% (131 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 92.9% (131 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-09-22 18:54:40 +00:00
Weblate
666903e663
Translated using Weblate (Russian)
...
Currently translated at 79.4% (112 of 141 strings)
Translated using Weblate (Russian)
Currently translated at 79.4% (112 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 92.1% (130 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 92.1% (130 of 141 strings)
Co-authored-by: Eugene Zrazhevsky <eugeny.zrazhevsky@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2024-09-22 18:54:12 +00:00
Weblate
24deb462a8
Translated using Weblate (Russian)
...
Currently translated at 68.0% (96 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 73.7% (104 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: alexdelli <alexdelli@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2024-09-22 17:25:53 +00:00
Weblate
85b54c4ccf
Translated using Weblate (Italian)
...
Currently translated at 73.7% (104 of 141 strings)
Translated using Weblate (Italian)
Currently translated at 73.7% (104 of 141 strings)
Co-authored-by: Gabriele Bonetti <gabriele.bonetti@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-09-22 10:19:29 +00:00
Tonya
ca33d499ab
fix: prevent DatePicker from being hidden when overflow is hidden on parent component ( #237 )
2024-09-20 15:58:50 -04:00
Weblate
52ebff7ca4
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (141 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-19 14:58:06 +00:00
Weblate
4cf0b0a9df
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 99.2% (140 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 99.2% (140 of 141 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:42:46 +00:00
Weblate
0d92d2718d
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 97.1% (137 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.1% (137 of 141 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:42:26 +00:00
Weblate
22937dd314
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 85.1% (120 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 85.1% (120 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 85.1% (120 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:37:14 +00:00
Weblate
26a99b6bad
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 66.6% (94 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.6% (94 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.6% (94 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:24:09 +00:00
Weblate
4bf7f3e00c
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 59.5% (84 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 59.5% (84 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 59.5% (84 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:16:41 +00:00
Weblate
269c5ea7e3
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 54.6% (77 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 54.6% (77 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 54.6% (77 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:13:51 +00:00
Weblate
bac6212188
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 51.7% (73 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 51.7% (73 of 141 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:12:41 +00:00
Weblate
7a7d00220a
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 45.3% (64 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 45.3% (64 of 141 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:03:52 +00:00
Weblate
a20f94b68a
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 44.6% (63 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 44.6% (63 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 14:02:44 +00:00
Weblate
7c4c373851
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 31.2% (44 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 31.2% (44 of 141 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 13:57:44 +00:00
Weblate
8b0684a0ca
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 30.4% (43 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 30.4% (43 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 30.4% (43 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 13:55:49 +00:00
Weblate
c903a9df13
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 24.8% (35 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.8% (35 of 141 strings)
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 13:54:03 +00:00
Weblate
a5d4e4f491
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 20.5% (29 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.5% (29 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.5% (29 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 13:51:36 +00:00
Weblate
f3116e4729
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 12.7% (18 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 12.7% (18 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 12.7% (18 of 141 strings)
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 13:49:53 +00:00
Weblate
c0b88142d8
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 6.3% (9 of 141 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 6.3% (9 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 13:46:20 +00:00
Weblate
19adc6a441
Translated using Weblate (Hungarian)
...
Currently translated at 99.2% (140 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 99.2% (140 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:42:22 +00:00
Weblate
d9fa7a846c
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 0.7% (1 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 87.2% (123 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 87.2% (123 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: Gustavo Souza <gustavobat.gb@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_BR/
Translation: Homebox/Frontend
2024-09-18 13:37:27 +00:00
Weblate
aa30fba7af
Translated using Weblate (Hungarian)
...
Currently translated at 79.4% (112 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 79.4% (112 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:18:32 +00:00
Weblate
edbb4b9fa0
Translated using Weblate (Hungarian)
...
Currently translated at 78.7% (111 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 78.7% (111 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:17:51 +00:00
Weblate
7d8534ffc1
Translated using Weblate (Hungarian)
...
Currently translated at 76.5% (108 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 76.5% (108 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:14:46 +00:00
Weblate
28b79beb76
Translated using Weblate (Hungarian)
...
Currently translated at 74.4% (105 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 74.4% (105 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:13:53 +00:00
Weblate
8a7af9a98d
Translated using Weblate (Hungarian)
...
Currently translated at 73.0% (103 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 73.0% (103 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:07:04 +00:00
Weblate
47600ade0e
Translated using Weblate (Hungarian)
...
Currently translated at 71.6% (101 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 71.6% (101 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:06:06 +00:00
Weblate
2af0cfeb49
Translated using Weblate (Hungarian)
...
Currently translated at 70.9% (100 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 70.9% (100 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 13:05:24 +00:00
Weblate
f6690dc80f
Translated using Weblate (Hungarian)
...
Currently translated at 63.8% (90 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 63.8% (90 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:45:58 +00:00
Weblate
9de5cf8c58
Translated using Weblate (Hungarian)
...
Currently translated at 63.1% (89 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 63.1% (89 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:42:21 +00:00
Weblate
9e66bf0bc1
Translated using Weblate (Hungarian)
...
Currently translated at 60.2% (85 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 60.2% (85 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:40:49 +00:00
Weblate
5f27f5d9cc
Translated using Weblate (Hungarian)
...
Currently translated at 56.7% (80 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 56.7% (80 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:38:05 +00:00
Weblate
0a1667ed24
Translated using Weblate (Hungarian)
...
Currently translated at 50.3% (71 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 50.3% (71 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:32:06 +00:00
Weblate
6348aeac6e
Translated using Weblate (Hungarian)
...
Currently translated at 48.9% (69 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 48.9% (69 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:31:26 +00:00
Weblate
7e9bd7f44b
Translated using Weblate (Hungarian)
...
Currently translated at 43.2% (61 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 43.2% (61 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:27:41 +00:00
Weblate
cf780393c2
Translated using Weblate (Hungarian)
...
Currently translated at 41.8% (59 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 41.8% (59 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:26:28 +00:00
Weblate
e94f436ba6
Translated using Weblate (Hungarian)
...
Currently translated at 34.0% (48 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 34.0% (48 of 141 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-18 12:11:20 +00:00
Weblate
0c6be05b05
Translated using Weblate (Portuguese (Portugal))
...
Currently translated at 99.2% (140 of 141 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 99.2% (140 of 141 strings)
Translated using Weblate (Hungarian)
Currently translated at 34.0% (48 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Rui Silva <rds.mcc@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translation: Homebox/Frontend
2024-09-18 11:57:48 +00:00
Weblate
9297ac59ae
Translated using Weblate (Portuguese (Portugal))
...
Currently translated at 63.8% (90 of 141 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 63.8% (90 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Rui Silva <rds.mcc@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pt_PT/
Translation: Homebox/Frontend
2024-09-18 10:27:48 +00:00
Weblate
983dedfdad
Translated using Weblate (German)
...
Currently translated at 100.0% (141 of 141 strings)
Added translation using Weblate (Portuguese)
Co-authored-by: Nic <nicmeier1@gmx.net >
Co-authored-by: Rui Silva <rds.mcc@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2024-09-18 09:54:07 +00:00
tonya
d159908b91
feat: add char counts
2024-09-17 21:58:57 +00:00
Weblate
1b53a5235c
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (141 of 141 strings)
Translated using Weblate (French)
Currently translated at 99.2% (140 of 141 strings)
Translated using Weblate (French)
Currently translated at 99.2% (140 of 141 strings)
Translated using Weblate (French)
Currently translated at 99.2% (140 of 141 strings)
Translated using Weblate (German)
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: CanbiZ <mickey.leskowitz@gmail.com >
Co-authored-by: Jean-Philippe Baril <translate.sysadminsmedia.com@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: mcarbonne <maximilien.carbonne@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-09-17 09:58:06 +00:00
mcarbonne
f3f709748e
only accept common image formats ( #227 )
...
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
2024-09-16 21:14:00 -04:00
Tonya
64ceffefe9
show add photo button on mobile ( #229 )
...
* fix: show add photo button on mobile
* feat: improve on short wide devices
2024-09-16 15:05:51 -04:00
Matt Kilgore
4b24653b86
Better issue templates
2024-09-16 08:36:41 -04:00
Weblate
6a0ebb76ea
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (141 of 141 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (141 of 141 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: Daniel Barea <dbarelop@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2024-09-16 09:44:53 +00:00
Weblate
8e273730be
Translated using Weblate (Spanish)
...
Currently translated at 85.1% (120 of 141 strings)
Translated using Weblate (Dutch)
Currently translated at 77.3% (109 of 141 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Daniel Barea <dbarelop@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-09-16 09:36:13 +00:00
Weblate
5c09953e4c
Translated using Weblate (Dutch)
...
Currently translated at 77.3% (109 of 141 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-09-16 06:46:57 +00:00
Weblate
6866dc76c0
Translated using Weblate (Dutch)
...
Currently translated at 75.8% (107 of 141 strings)
Translated using Weblate (Dutch)
Currently translated at 75.8% (107 of 141 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-09-16 06:45:56 +00:00
Weblate
de16f09108
Translated using Weblate (Dutch)
...
Currently translated at 72.3% (102 of 141 strings)
Translated using Weblate (Dutch)
Currently translated at 72.3% (102 of 141 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-09-16 06:45:16 +00:00
Weblate
3f3ca345fd
Translated using Weblate (Dutch)
...
Currently translated at 70.2% (99 of 141 strings)
Translated using Weblate (Dutch)
Currently translated at 70.2% (99 of 141 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-09-16 06:43:51 +00:00
Weblate
9275d2db9c
Translated using Weblate (Dutch)
...
Currently translated at 68.0% (96 of 141 strings)
Translated using Weblate (Dutch)
Currently translated at 68.0% (96 of 141 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-09-16 06:43:14 +00:00
Weblate
d88b04b66f
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 98.5% (139 of 141 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.5% (139 of 141 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 98.5% (139 of 141 strings)
Translated using Weblate (Dutch)
Currently translated at 66.6% (94 of 141 strings)
Translated using Weblate (Dutch)
Currently translated at 66.6% (94 of 141 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: dongzh <whitefivefiveopen@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-16 06:42:12 +00:00
Weblate
62e6b08baf
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 74.4% (105 of 141 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 74.4% (105 of 141 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 74.4% (105 of 141 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: dongzh <whitefivefiveopen@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-16 02:06:10 +00:00
Weblate
6fa37cb474
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 65.9% (93 of 141 strings)
Translated using Weblate (Russian)
Currently translated at 67.3% (95 of 141 strings)
Co-authored-by: Fedor M <k930bx@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-16 01:23:56 +00:00
Matt Kilgore
d63d6e94dd
refactor: add doc head metadata
2024-09-14 23:15:51 -04:00
Matt Kilgore
0c8ce366eb
refactor: move english menu to separate file.
2024-09-14 22:59:18 -04:00
Matt Kilgore
3da3025935
chore: Update translation contribution documentation.
2024-09-14 22:53:09 -04:00
Matt Kilgore
d1a57e3ec5
fix: ignore localhost in docs as dead link
2024-09-14 22:46:02 -04:00
Weblate
969ef1941b
Translated using Weblate (Russian)
...
Currently translated at 65.2% (92 of 141 strings)
Translated using Weblate (Spanish)
Currently translated at 84.3% (119 of 141 strings)
Translated using Weblate (Spanish)
Currently translated at 84.3% (119 of 141 strings)
Translated using Weblate (German)
Currently translated at 80.1% (113 of 141 strings)
Co-authored-by: Kollskoya <haufey@outlook.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2024-09-14 22:48:35 +00:00
Matt Kilgore
214b16a26e
chore: update go dependencies
2024-09-14 10:24:07 -04:00
Katos
405d0c7487
Merge pull request #212 from tonyaellie/make-ItemViewTable-headers-customisable
...
make ItemViewTable headers customisable
2024-09-13 19:53:21 +01:00
Katos
6800c2112e
Merge pull request #221 from Gabrinator/update-docs
...
Update Documentation: Quick Start
2024-09-13 19:51:20 +01:00
Gabrinator
5fc7b3e25b
docs: update quick-stard.md
2024-09-13 12:49:02 -04:00
Gabrinator
88dc943b6b
docs: added Configure Homebox Page
2024-09-13 12:48:18 -04:00
Gabrinator
f8482b1c64
docs: fix typo in index.md
2024-09-13 12:41:37 -04:00
Gabrinator
a6e49295e0
docs: update navigation
2024-09-13 11:37:24 -04:00
Gabrinator
8ef1b8b6ce
docs: add installation page
2024-09-13 11:36:18 -04:00
Weblate
404791a344
Translated using Weblate (French)
...
Currently translated at 68.0% (96 of 141 strings)
Translated using Weblate (French)
Currently translated at 68.0% (96 of 141 strings)
Co-authored-by: Jean-Philippe Baril <translate.sysadminsmedia.com@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-09-12 03:26:35 +00:00
Tonya
073aade67f
feat: show item is archived in more places ( #210 )
2024-09-11 10:48:13 -04:00
Weblate
784cc409d4
Translated using Weblate (German)
...
Currently translated at 79.4% (112 of 141 strings)
Translated using Weblate (German)
Currently translated at 79.4% (112 of 141 strings)
Translated using Weblate (German)
Currently translated at 79.4% (112 of 141 strings)
Translated using Weblate (German)
Currently translated at 79.4% (112 of 141 strings)
Co-authored-by: Mats <sysadminsmedia@mats-bueser.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Nic <nicmeier1@gmx.net >
Co-authored-by: Sascha Brockel <gsydaydreamer@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2024-09-11 12:48:35 +00:00
Matt Kilgore
9e3f82fbac
fix: action should run at midnight for nightly builds
2024-09-10 09:44:28 -04:00
Weblate
19c6d4dec5
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 65.2% (92 of 141 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 65.2% (92 of 141 strings)
Translated using Weblate (German)
Currently translated at 73.7% (104 of 141 strings)
Translated using Weblate (German)
Currently translated at 73.7% (104 of 141 strings)
Translated using Weblate (German)
Currently translated at 73.7% (104 of 141 strings)
Translated using Weblate (English)
Currently translated at 100.0% (141 of 141 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Sascha Brockel <gsydaydreamer@gmail.com >
Co-authored-by: dongzh <whitefivefiveopen@gmail.com >
Co-authored-by: hirnchirurg <wilhelm.humerez@posteo.de >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-10 02:48:35 +00:00
tonya
b18f0c790b
feat: make ItemViewTable headers customisable
2024-09-09 19:38:58 +00:00
Tonya
fb62f51958
feat: refresh search on include archived change ( #208 )
2024-09-08 20:15:52 -04:00
Tonya
dafc6aa13f
update links ( #206 )
...
* chore: update links
* feat: update social link
2024-09-08 20:11:50 -04:00
Matt Kilgore
93f13b1e80
chore: update go dependencies
2024-09-08 15:25:39 -04:00
Matt Kilgore
5de649d85f
feat: update PNPM dependencies
2024-09-08 14:59:25 -04:00
Matt Kilgore
b37cf24f09
feat: user selectable language
2024-09-08 14:19:01 -04:00
Matt Kilgore
cf2edc8d34
fix: Use region specific chinese (instead of simplified vs traditional)
2024-09-08 13:36:01 -04:00
Matt Kilgore
f113de180b
docs: add demo link to doc site
2024-09-08 13:17:48 -04:00
Edward Shen
adb4b52752
Fix Registration Disabled button in login page ( #203 )
2024-09-08 13:13:15 -04:00
Weblate
baf8912dda
Added translation using Weblate (Portuguese (Brazil))
...
Co-authored-by: Daniel Zanardi de Souza <zz.uploader@gmail.com >
2024-09-07 22:56:18 +00:00
Matt Kilgore
489deda6a8
Update README.md
2024-09-07 15:45:13 -04:00
Matt Kilgore
2fee607327
feat: allow the hiding of the header ( #202 )
2024-09-07 15:09:40 -04:00
Matt Kilgore
c428a22b5b
docs: add screenshot of home screen
2024-09-07 14:31:35 -04:00
Matt Kilgore
42c01adb98
feat: translate tools page
2024-09-07 13:46:24 -04:00
Matt Kilgore
209bb2932c
refactor: cleaned up translation matching
2024-09-07 13:01:02 -04:00
Matt Kilgore
ec9cdb391a
Merge remote-tracking branch 'origin/main'
...
# Conflicts:
# frontend/plugins/i18n.ts
2024-09-07 12:41:37 -04:00
Matt Kilgore
a6aafeb374
fix: compare all browser languages with available offerings.
2024-09-07 12:41:26 -04:00
Weblate
ffb538ef21
Translated using Weblate (Hungarian)
...
Currently translated at 53.3% (48 of 90 strings)
Translated using Weblate (Catalan)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Catalan)
Currently translated at 100.0% (90 of 90 strings)
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/hu/
Translation: Homebox/Frontend
2024-09-07 07:48:36 +00:00
Tonya
15925de2f0
feat: add eslint-plugin-tailwindcss ( #199 )
2024-09-06 10:49:28 -04:00
Weblate
25d72044e9
Added translation using Weblate (Hungarian)
...
Co-authored-by: Adam Kleizer <adamkleizer@gmail.com >
2024-09-06 11:25:56 +00:00
Weblate
6b598383d3
Translated using Weblate (Polish)
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Catalan)
Currently translated at 83.3% (75 of 90 strings)
Translated using Weblate (Catalan)
Currently translated at 83.3% (75 of 90 strings)
Co-authored-by: Bart <bartosz.domanski97@gmail.com >
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-06 07:32:16 +00:00
Tonya
25c76522d6
Merge pull request #185
...
* feat: changeable items per table page
* Merge branch 'main' into main
2024-09-05 19:57:12 -04:00
Tonya
c0e2aa5c62
Merge pull request #197
...
* feat: add search to multi select and improve behaviour when multiple …
2024-09-05 19:52:26 -04:00
Weblate
d0b9f742ae
Translated using Weblate (Polish)
...
Currently translated at 88.8% (80 of 90 strings)
Translated using Weblate (Polish)
Currently translated at 88.8% (80 of 90 strings)
Co-authored-by: Bart <bartosz.domanski97@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translation: Homebox/Frontend
2024-09-05 20:53:24 +00:00
Weblate
80d56829c5
Translated using Weblate (German)
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Polish)
Currently translated at 81.1% (73 of 90 strings)
Translated using Weblate (Polish)
Currently translated at 81.1% (73 of 90 strings)
Translated using Weblate (Catalan)
Currently translated at 48.8% (44 of 90 strings)
Co-authored-by: Bart <bartosz.domanski97@gmail.com >
Co-authored-by: Mats <sysadminsmedia@mats-bueser.de >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/pl/
Translation: Homebox/Frontend
2024-09-05 20:52:03 +00:00
Weblate
0946310f60
Added translation using Weblate (Polish)
...
Co-authored-by: Bart <bartosz.domanski97@gmail.com >
2024-09-05 20:32:16 +00:00
Matt Kilgore
7c855cf55d
fix: regional languages not matching correctly
2024-09-05 15:48:00 -04:00
Tonya
0ab95fb670
feat: compare filter values on a unique field instead of by reference for finding unselected ( #195 )
2024-09-05 15:41:29 -04:00
Tonya
1e81b4bab4
feat: improve loading state for creation and fix types for adding image ( #196 )
2024-09-05 15:40:57 -04:00
Tonya
67c50068d9
fix: styles on home page ( #193 )
2024-09-05 14:29:33 -04:00
Weblate
c3628e36f7
Translated using Weblate (French)
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (French)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (French)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Dutch)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Catalan)
Currently translated at 43.3% (39 of 90 strings)
Translated using Weblate (Catalan)
Currently translated at 43.3% (39 of 90 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (German)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (German)
Currently translated at 100.0% (90 of 90 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Dest.Com <azevedo-a@hotmail.fr >
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: Maxklos <herzognikolaus@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Stair <nrjava06@gmail.com >
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
Co-authored-by: thehijacker <thehijacker@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ca/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-05 14:20:41 +00:00
Weblate
526799c6da
Added translation using Weblate (Catalan)
...
Co-authored-by: Xavier Clotet <x.clotetfons@gmail.com >
2024-09-05 12:35:43 +00:00
Weblate
4ef7529533
Translated using Weblate (Slovenian)
...
Currently translated at 37.7% (34 of 90 strings)
Translated using Weblate (Slovenian)
Currently translated at 37.7% (34 of 90 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (90 of 90 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Co-authored-by: thehijacker <thehijacker@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sl/
Translation: Homebox/Frontend
2024-09-05 04:36:37 +00:00
Weblate
b06d670dff
Added translation using Weblate (Slovenian)
...
Co-authored-by: thehijacker <thehijacker@gmail.com >
2024-09-05 04:29:38 +00:00
Weblate
02c0453ff3
Translated using Weblate (French)
...
Currently translated at 94.4% (85 of 90 strings)
Co-authored-by: Jean-Philippe Baril <weblate.org@alias.trebaxis.net >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-09-04 18:48:34 +00:00
Weblate
09358aa5b2
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Dutch)
Currently translated at 96.6% (87 of 90 strings)
Co-authored-by: Andreas Olsson <basen82@icloud.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: SKNTim <timmy444074@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hant/
Translation: Homebox/Frontend
2024-09-03 01:00:07 +00:00
Matt Kilgore
229d4db996
fix: types
2024-09-02 20:29:32 -04:00
zak
184be32f3a
Merge branch 'main' into label-report-prefill
2024-09-01 22:03:59 -07:00
Weblate
dbe77ea19d
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (90 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hant/
Translation: Homebox/Frontend
2024-09-02 02:01:14 +00:00
Weblate
85e5c7e8e7
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 97.7% (88 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 97.7% (88 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:38:10 +00:00
Weblate
3c273b370d
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 96.6% (87 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 96.6% (87 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:37:09 +00:00
Weblate
343e56b440
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 95.5% (86 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 95.5% (86 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:36:35 +00:00
Weblate
3a949aee5a
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 70.0% (63 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 70.0% (63 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:26:19 +00:00
Weblate
1601e52c9c
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 65.5% (59 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 65.5% (59 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:21:10 +00:00
Weblate
760cc8e35c
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 46.6% (42 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 46.6% (42 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:13:52 +00:00
Weblate
6051e1fb8b
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 45.5% (41 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 45.5% (41 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:13:02 +00:00
Weblate
7b146947df
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 36.6% (33 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 36.6% (33 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:08:11 +00:00
Weblate
5497a10f9f
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 25.5% (23 of 90 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 25.5% (23 of 90 strings)
Co-authored-by: Jackxwb <xwb9606@163.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hans/
Translation: Homebox/Frontend
2024-09-01 16:01:32 +00:00
Weblate
3e6f4b3657
Added translation using Weblate (Chinese (Simplified))
...
Co-authored-by: Jackxwb <xwb9606@163.com >
2024-09-01 15:45:59 +00:00
Weblate
7baf58ad61
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (90 of 90 strings)
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-09-01 10:42:51 +00:00
Matt Kilgore
d72437d18c
Update config.mts
2024-08-31 22:38:55 -04:00
Weblate
ea57981953
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (90 of 90 strings)
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-08-31 19:57:38 +00:00
Weblate
c2d0cce02d
Translated using Weblate (Turkish)
...
Currently translated at 71.1% (64 of 90 strings)
Translated using Weblate (Turkish)
Currently translated at 71.1% (64 of 90 strings)
Translated using Weblate (Turkish)
Currently translated at 71.1% (64 of 90 strings)
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Salad <selcuk.erbek@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-08-31 19:51:29 +00:00
Weblate
9f7a119e95
Translated using Weblate (Russian)
...
Currently translated at 100.0% (90 of 90 strings)
Translated using Weblate (Turkish)
Currently translated at 58.8% (53 of 90 strings)
Co-authored-by: Fedor M <k930bx@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-08-31 19:48:29 +00:00
Weblate
0dacc97e99
Translated using Weblate (French)
...
Currently translated at 94.4% (85 of 90 strings)
Translated using Weblate (French)
Currently translated at 94.4% (85 of 90 strings)
Co-authored-by: Jean-Philippe Baril <weblate.org@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-08-30 19:48:35 +00:00
Weblate
52a44da56b
Translated using Weblate (French)
...
Currently translated at 91.1% (82 of 90 strings)
Translated using Weblate (French)
Currently translated at 91.1% (82 of 90 strings)
Co-authored-by: Jean-Philippe Baril <weblate.org@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-08-29 19:28:00 +00:00
Weblate
7114f262c2
Translated using Weblate (French)
...
Currently translated at 90.0% (81 of 90 strings)
Translated using Weblate (French)
Currently translated at 90.0% (81 of 90 strings)
Co-authored-by: Jean-Philippe Baril <weblate.org@alias.trebaxis.net >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-08-29 19:13:29 +00:00
Cosmo
7647ea96d1
added the ability to add a photo in the item creation modal ( #173 )
...
* added the ability to add a photo in the item creation modal
* fixed problem with create button being hidden on tiny screens
* fix: ui, translations
---------
Co-authored-by: Matt Kilgore <matthew@kilgore.dev >
2024-08-28 20:26:45 -04:00
Oliver Larsson
593da25cdb
fix: CSV export not including item notes ( #180 )
2024-08-28 19:44:37 -04:00
Weblate
f22bce7ccb
Translated using Weblate (Russian)
...
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (German)
Currently translated at 100.0% (89 of 89 strings)
Co-authored-by: Dominik <account@kowanda.net >
Co-authored-by: Fedor M <k930bx@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2024-08-28 05:09:49 +00:00
Romulo Gatto
1688773bba
adding email validator ( #178 )
2024-08-25 18:46:55 -04:00
Weblate
b56b5d2400
Translated using Weblate (Russian)
...
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (Turkish)
Currently translated at 57.3% (51 of 89 strings)
Co-authored-by: Fedor M <k930bx@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-08-25 18:48:35 +00:00
Weblate
33ee208071
Translated using Weblate (Russian)
...
Currently translated at 33.7% (30 of 89 strings)
Translated using Weblate (Russian)
Currently translated at 33.7% (30 of 89 strings)
Co-authored-by: Fedor M <k930bx@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2024-08-24 18:39:26 +00:00
Weblate
fe880cc2c7
Translated using Weblate (Russian)
...
Currently translated at 25.8% (23 of 89 strings)
Translated using Weblate (Russian)
Currently translated at 25.8% (23 of 89 strings)
Co-authored-by: Fedor M <k930bx@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/ru/
Translation: Homebox/Frontend
2024-08-24 18:37:51 +00:00
Weblate
cffe57b74e
Added translation using Weblate (Russian)
...
Co-authored-by: Fedor M <k930bx@gmail.com >
2024-08-24 18:25:04 +00:00
Weblate
66882d6fd9
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (89 of 89 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2024-08-22 18:36:20 +00:00
Weblate
050f22f051
Translated using Weblate (Spanish)
...
Currently translated at 60.6% (54 of 89 strings)
Translated using Weblate (Spanish)
Currently translated at 60.6% (54 of 89 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2024-08-22 07:24:54 +00:00
Weblate
7891af3a9a
Translated using Weblate (Spanish)
...
Currently translated at 58.4% (52 of 89 strings)
Translated using Weblate (Spanish)
Currently translated at 58.4% (52 of 89 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2024-08-22 07:23:48 +00:00
Weblate
40cbccf50a
Translated using Weblate (Spanish)
...
Currently translated at 56.1% (50 of 89 strings)
Translated using Weblate (Spanish)
Currently translated at 56.1% (50 of 89 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2024-08-22 07:23:06 +00:00
Weblate
0348da362c
Translated using Weblate (Spanish)
...
Currently translated at 51.6% (46 of 89 strings)
Translated using Weblate (Spanish)
Currently translated at 51.6% (46 of 89 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/es/
Translation: Homebox/Frontend
2024-08-22 07:21:48 +00:00
Weblate
f0a3780f3a
Added translation using Weblate (Spanish)
...
Co-authored-by: Slydite4 <39199098+Slydite4@users.noreply.github.com >
2024-08-22 07:00:49 +00:00
zak
8058743c2f
Merge branch 'main' into label-report-prefill
2024-08-19 18:05:34 -07:00
Weblate
39163f3cfc
Translated using Weblate (French)
...
Currently translated at 88.7% (79 of 89 strings)
Translated using Weblate (French)
Currently translated at 88.7% (79 of 89 strings)
Co-authored-by: Julien <hydreliox@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-08-16 06:40:28 +00:00
Weblate
43676ab407
Translated using Weblate (French)
...
Currently translated at 77.5% (69 of 89 strings)
Translated using Weblate (French)
Currently translated at 77.5% (69 of 89 strings)
Translated using Weblate (French)
Currently translated at 77.5% (69 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 96.6% (86 of 89 strings)
Co-authored-by: Julien <hydreliox@gmail.com >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-08-15 18:28:54 +00:00
zak
a6bdadedb1
Merge branch 'main' into label-report-prefill
2024-08-14 18:17:21 -07:00
Lukas
639f795b9a
[LANGUAGE UPDATE] Frontend translations for Italian and German ( #170 )
...
* Update it.json
Translate all strings into italian and reorder alphabetically
* Update de.json
Translated all strings into German and sorted them alphabetically.
* Update it.json
Added missing commas
* Update it.json
Fix indentation and remove unnecessary curly bracket left behind during the translation
* Replace 'Edit', 'Create', and 'Other' with their Italian equivalents
* Replace 'Edit', 'Create', and 'Other' with their German equivalents
2024-08-14 09:08:12 -04:00
Weblate
fc95d2cab8
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 94.3% (84 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 94.3% (84 of 89 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: SKNTim <timmy444074@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/zh_Hant/
Translation: Homebox/Frontend
2024-08-13 18:48:34 +00:00
Weblate
695b6d68e6
Added translation using Weblate (Chinese (Traditional))
...
Co-authored-by: SKNTim <timmy444074@gmail.com >
2024-08-13 02:40:59 +00:00
Weblate
b6c265098d
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (89 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 91.0% (81 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 91.0% (81 of 89 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Andreas Olsson <basen82@icloud.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2024-08-12 15:05:56 +00:00
Weblate
2a80d348bd
Translated using Weblate (Swedish)
...
Currently translated at 80.8% (72 of 89 strings)
Translated using Weblate (Turkish)
Currently translated at 47.1% (42 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 74.1% (66 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 74.1% (66 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 74.1% (66 of 89 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Andreas Olsson <basen82@icloud.com >
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-08-12 10:16:48 +00:00
zak
d08dafd965
Merge branch 'main' into label-report-prefill
2024-08-11 19:03:05 -07:00
Weblate
c6542de93d
Translated using Weblate (Swedish)
...
Currently translated at 58.4% (52 of 89 strings)
Translated using Weblate (Turkish)
Currently translated at 39.3% (35 of 89 strings)
Translated using Weblate (Turkish)
Currently translated at 39.3% (35 of 89 strings)
Translated using Weblate (French)
Currently translated at 65.1% (58 of 89 strings)
Translated using Weblate (German)
Currently translated at 58.4% (52 of 89 strings)
Translated using Weblate (Italian)
Currently translated at 39.3% (35 of 89 strings)
Translated using Weblate (Italian)
Currently translated at 39.3% (35 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 61.7% (55 of 89 strings)
Translated using Weblate (Dutch)
Currently translated at 61.7% (55 of 89 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Anonymous <noreply@weblate.org >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-08-11 23:45:32 +00:00
Weblate
5928678564
Update translation files
...
Updated by "Cleanup translation files" add-on in Weblate.
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/
Translation: Homebox/Frontend
2024-08-11 23:44:45 +00:00
Matt Kilgore
fac52ca122
chore: alphabetize english JSON
2024-08-11 19:42:03 -04:00
Matt Kilgore
e9d270269f
Merge remote-tracking branch 'origin/main'
2024-08-11 19:40:27 -04:00
Matt Kilgore
0a4c5fbb28
chore: translate items page
2024-08-11 19:40:13 -04:00
Weblate
2bfb0283d9
Translated using Weblate (Dutch)
...
Currently translated at 90.1% (55 of 61 strings)
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-08-11 19:46:14 +00:00
Weblate
94e8aee36f
Translated using Weblate (French)
...
Currently translated at 96.7% (59 of 61 strings)
Translated using Weblate (Dutch)
Currently translated at 85.2% (52 of 61 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Chevdor <chevdor@gmail.com >
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: https://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-08-11 19:45:11 +00:00
Matthew Kilgore
8051956a2e
Deleted translation using Weblate (English (Pirate))
2024-08-11 18:51:00 +00:00
Matt Kilgore
c7020503be
Merge remote-tracking branch 'origin/main'
2024-08-11 14:09:58 -04:00
Matt Kilgore
28edce96d9
chore: Finish profile page translations
2024-08-11 14:09:51 -04:00
Weblate
b4481fcc84
Translated using Weblate (German)
...
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (53 of 53 strings)
Co-authored-by: Andreas Olsson <basen82@icloud.com >
Co-authored-by: Philipp Walter <philippwalter21@gmail.com >
Co-authored-by: Weblate <noreply@weblate.org >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2024-08-11 07:11:39 +00:00
Weblate
2be2bebb4e
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Swedish)
Currently translated at 100.0% (53 of 53 strings)
Co-authored-by: Andreas Olsson <basen82@icloud.com >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/sv/
Translation: Homebox/Frontend
2024-08-10 05:47:28 +00:00
Weblate
d4bb8def62
Added translation using Weblate (Swedish)
...
Co-authored-by: Andreas Olsson <basen82@icloud.com >
2024-08-10 05:22:48 +00:00
Weblate
7442cb01b7
Translated using Weblate (French)
...
Currently translated at 96.2% (51 of 53 strings)
Translated using Weblate (English)
Currently translated at 100.0% (53 of 53 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: MyMemory <noreply-mt-mymemory@weblate.org >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translation: Homebox/Frontend
2024-08-09 14:48:19 +00:00
Weblate
95ba8275e8
Translated using Weblate (Dutch)
...
Currently translated at 92.4% (49 of 53 strings)
Translated using Weblate (French)
Currently translated at 98.1% (52 of 53 strings)
Translated using Weblate (English (Pirate))
Currently translated at 13.3% (6 of 45 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: thhurt <th.hurtado+weblate@gmail.com >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/en@pirate/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-08-08 14:45:24 +00:00
Matt Kilgore
2f4a0dd212
fix : #146 add version info to every page
2024-08-07 21:55:05 -04:00
Matt Kilgore
52a621e9ba
fix: use the browser default language
2024-08-07 20:57:40 -04:00
Matt Kilgore
1f77fad829
fix: i18n ICU loading failure due to original auto-loading.
2024-08-07 20:26:40 -04:00
Weblate
8d93a3f56e
Translated using Weblate (German)
...
Currently translated at 100.0% (35 of 35 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (35 of 35 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translation: Homebox/Frontend
2024-08-06 13:54:10 +00:00
Weblate
9c572e7ab2
Translated using Weblate (French)
...
Currently translated at 100.0% (35 of 35 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (35 of 35 strings)
Translated using Weblate (German)
Currently translated at 100.0% (35 of 35 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (35 of 35 strings)
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
Co-authored-by: Jean-Philippe Baril <weblate.org@alias.trebaxis.net >
Co-authored-by: Lukas Hofer <naluso@protonmail.com >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/fr/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/it/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/tr/
Translation: Homebox/Frontend
2024-08-05 13:04:00 +00:00
A3
1f15e74730
changed companyname and url to sysadminsmedia.com ( #158 )
2024-08-05 08:59:53 -04:00
Weblate
7570a04c02
Added translation using Weblate (Turkish)
...
Co-authored-by: Hakan Bildir <divxtr@gmail.com >
2024-08-05 07:56:36 +00:00
Weblate
fc2e89c448
Added translation using Weblate (French)
...
Co-authored-by: Jean-Philippe Baril <weblate.org@alias.trebaxis.net >
2024-08-05 07:56:25 +00:00
Weblate
be216ff7fe
Translated using Weblate (German)
...
Currently translated at 40.0% (14 of 35 strings)
Co-authored-by: Benjamin Kahlau <nyhkkbjyek@roanapur.de >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/de/
Translation: Homebox/Frontend
2024-08-05 00:10:39 +00:00
Weblate
388208571b
Added translation using Weblate (German)
...
Co-authored-by: Benjamin Kahlau <nyhkkbjyek@roanapur.de >
2024-08-04 22:34:52 +00:00
Weblate
1891903007
Translated using Weblate (English (Pirate))
...
Currently translated at 11.4% (4 of 35 strings)
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/en@pirate/
Translation: Homebox/Frontend
2024-08-04 22:25:05 +00:00
Matt Kilgore
41a7e73ff4
Merge remote-tracking branch 'origin/main'
2024-08-04 17:36:11 -04:00
Matt Kilgore
81d9fb0700
chore: add translations to contributions sections
2024-08-04 17:36:02 -04:00
Weblate
76312d6eb6
Added translation using Weblate (Italian)
...
Co-authored-by: Lukas Hofer <naluso@protonmail.com >
2024-08-04 21:26:53 +00:00
Weblate
f31528c841
Added translation using Weblate (English (Pirate))
...
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
2024-08-04 20:53:17 +00:00
Weblate
6d869fdece
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (35 of 35 strings)
Translated using Weblate (English)
Currently translated at 100.0% (35 of 35 strings)
Co-authored-by: 101br03k <warmerdamm03@gmail.com >
Co-authored-by: Weblate Admin <admin@sysadminsmedia.com >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/nl/
Translation: Homebox/Frontend
2024-08-04 20:16:58 +00:00
Weblate
d0784a7773
Added translation using Weblate (Dutch)
...
Co-authored-by: Matthew Kilgore <matthew@kilgore.dev >
2024-08-04 19:27:09 +00:00
Weblate Admin
791f843bc8
Deleted translation using Weblate (Chinese (Simplified))
2024-08-04 18:21:20 +00:00
Matt Kilgore
a0cdb231fd
chore: translate components
2024-08-04 14:08:05 -04:00
Matt Kilgore
e0004842e6
fix: bad translation
2024-08-04 13:37:37 -04:00
Matt Kilgore
fdbfa0e76f
refactor: better translation formatting
2024-08-04 13:11:27 -04:00
Matt Kilgore
005516013f
chore: delete unneeded translation file
2024-08-04 12:56:12 -04:00
Weblate
9ec3dd4b16
Added translation using Weblate (Chinese (Simplified))
...
Translated using Weblate (English)
Currently translated at 100.0% (19 of 19 strings)
Co-authored-by: Weblate <noreply@weblate.org >
Co-authored-by: Weblate Admin <admin@sysadminsmedia.com >
Translate-URL: http://translate.sysadminsmedia.com/projects/homebox/frontend/en/
Translation: Homebox/Frontend
2024-08-04 16:47:43 +00:00
Matt Kilgore
4dacf981a9
Merge branch 'refs/heads/mk/i18n'
...
# Conflicts:
# frontend/pages/index.vue
2024-08-04 11:35:37 -04:00
Matt Kilgore
9f7b76b37d
chore: minor tweak
2024-08-04 11:31:16 -04:00
Matt Kilgore
0d51558e74
chore: more translations
2024-08-04 11:26:07 -04:00
Matt Kilgore
236c257892
feat: adding initial i18n support ( #155 )
2024-08-04 11:02:29 -04:00
Matt Kilgore
3540ce4297
feat: adding initial i18n support
2024-08-03 23:04:26 -04:00
zak
fef026ed47
Merge branch 'main' into label-report-prefill
2024-08-01 21:28:50 -07:00
Rylie Pavlik
0bcb155756
Fixes to the Tools page ( #154 )
...
* Correct the description of the import feature on the tools page.
* Fix page title on Tools page.
2024-08-01 21:52:13 -04:00
Fuzzy
12219522ab
Document search tips, cleanup documentation ( #152 )
...
* Update tips-tricks.md
Add instructions for search by ID
* Update get-started.md
Fixing typos and redundancies
2024-07-31 19:51:43 -04:00
zak
6001bf90c5
Merge branch 'main' into label-report-prefill
2024-07-29 17:01:29 -07:00
Katos
13864997ab
Merge pull request #149 from victorhooi/patch-1
...
Fix small typo in label discussion thread URL
2024-07-27 16:01:35 +01:00
Victor Hooi
2ab2766534
Fix small typo in label discussion thread URL
2024-07-28 00:56:49 +10:00
Matt Kilgore
e051352070
chore: update openapi documentation ( #148 )
2024-07-27 09:10:47 -04:00
Matt Kilgore
3bf1e50620
Splitting dependencies into separate docker layers (better caching) ( #142 )
...
* Initial test with NodeJS
* Fix screw up
* Try again
* Try Golang caching
* Test with some more cache
2024-07-21 10:40:03 -04:00
github-actions[bot]
42f3c88396
Update currencies.json ( #143 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
2024-07-21 10:39:47 -04:00
Ryan Sheppard
c9f31ef934
Enable Sorting on Search By Created and Updated At ( #140 )
...
- Required updating query value to use first.value
to set the value of the initial sort
- Ordering starts with name but can be changed to
createdAt or updatedAt by the user
2024-07-21 09:30:03 -04:00
Ryan Sheppard
01f54aeb52
Add URL column to CSV export for items ( #141 )
...
* feat: Add URL column to CSV export for items
Enhanced the CSV export functionality to include a URL field for each item. This change required updating the export logic to generate and include item URLs based on the request's referer header.
* chore: add URL configuration to V1Controller for dynamic URL handling in item export
2024-07-21 09:29:46 -04:00
Zak Strassberg
f51de34355
fix issues with api usage and import
2024-07-19 06:09:51 +00:00
zak
4e9647651c
label generation tool prefills already allocated items
2024-07-18 20:06:44 -07:00
PatrickDaG
2d1016d362
Add nmprc to automatically hoist dependencies ( #136 )
2024-07-17 07:47:35 -04:00
Katos
b48c961ac1
Merge pull request #133 from sysadminsmedia/update-currencies
...
Update currencies
2024-07-14 17:25:08 +01:00
github-actions[bot]
4d47567995
Update currencies.json
2024-07-14 16:21:40 +00:00
Katos
6b2e3accf7
Merge pull request #132 from sysadminsmedia/katos/currencies-workflow
...
Force rebase on Update-currencies action
2024-07-14 17:21:27 +01:00
Katos
c1f8520c4f
Rectify issue with Github action
2024-07-14 17:20:50 +01:00
Katos
41eb99ec40
Force rebase on Update-currencies action
2024-07-14 16:45:04 +01:00
Katos
97a74127fb
Merge pull request #131 from sysadminsmedia/katos/currencies-api-sync
...
Skip commit attempt if currencies already synced with API
2024-07-14 16:38:31 +01:00
Katos
a9396167bf
Fix my stupid mistakes....
2024-07-14 16:35:28 +01:00
Katos
3385e5684e
Update currencies automation to use a PR instead of comitting directly
2024-07-14 16:33:42 +01:00
Katos
bb9672214c
Update error handling for Currencies sync, if already synced then just skip.
2024-07-14 16:25:41 +01:00
Katos
1b93672417
Merge pull request #130 from sysadminsmedia/katosdev-patch-1
...
Update update_currencies.py to fix error handling
2024-07-14 16:23:47 +01:00
Katos
8b1cedd4a8
Update update_currencies.py to fix error handling
2024-07-14 16:08:37 +01:00
Katos
2c34047b6d
Merge pull request #129 from sysadminsmedia/katos/currencies-auto-update
...
Create a Github Workflow to keep currencies in sync from API
2024-07-14 16:05:48 +01:00
Katos
f0942f0714
Add error handling to API pulls
2024-07-14 16:00:25 +01:00
Katos
967e574ea8
Create a Github Workflow to keep currencies in sync from API
2024-07-14 15:52:25 +01:00
Katos
625730f37c
Merge pull request #123 from sysadminsmedia/katos/fix-location-pricing
...
Update location pricing to include quantity in calculation
2024-07-12 21:38:09 +01:00
Katos
0a72fa95b3
Rectify issues with mismatched types float64 and int
2024-07-12 21:15:07 +01:00
Katos
c39a65ec21
Update location pricing to include quantity in calculation
2024-07-12 20:59:01 +01:00
Ikko Eltociear Ashimine
9403fb27e0
docs: update get-started.md ( #106 )
...
* docs: update get-started.md
seperated -> separated
* Apply suggestions from code review
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-07-08 11:50:28 -04:00
Matt Kilgore
ab34791737
fix(docker): fixes the health check wget ( #104 )
2024-07-08 11:48:46 -04:00
Michael Manganiello
d03e60d580
fix: Use subrouter for API and correctly handle 404 errors ( #105 )
...
Currently, the implementation for API v1 routes has the main drawback
that any unknown path gets the fallback `notFoundHandler`, trying to
access filesystem paths.
However, for API routes specifically, we can have a subrouter, and a
default NotFound handler that returns 404.
With this change, requests to `api/v1/<unknown>` now correctly returns
status code 404 instead of 200.
2024-07-08 11:44:55 -04:00
Katos
6fcf9965bb
Merge pull request #101 from sysadminsmedia/katosdev-Readme-Screenshots
...
Update README
2024-07-07 22:38:38 +01:00
Matt Kilgore
d53dcd37e6
Update README.md
...
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-07-07 17:35:55 -04:00
Katos
f3531cacb3
Update README.md
2024-07-07 22:35:19 +01:00
Katos
10cdca94dc
Update README
...
Add screenshots to Readme file
2024-07-07 22:31:37 +01:00
Katos
0b2b7bc4fd
Merge pull request #98 from sysadminsmedia/fix/docs-discord
...
Update Discord link to new
2024-07-07 21:55:52 +01:00
Katos
105f63487b
Merge pull request #97 from 101br03k/main
...
set documentation url to homebox.sysadminmedia.com
2024-07-07 21:52:59 +01:00
Katos
f3c745e42e
Update Discord link to new
2024-07-07 21:52:24 +01:00
A3
f3e7d7a19b
set documentation url to homebox.sysadminmedia.com
2024-07-07 21:27:29 +02:00
Katos
af1ab9d1af
Merge pull request #95 from sysadminsmedia/katos/docker-healthcheck
...
Update WGET from Busybox to APK
2024-07-07 17:40:53 +01:00
Katos
69e5a877c0
Update WGET from Busybox to APK
2024-07-07 17:18:18 +01:00
Matt Kilgore
5c0d161eb4
fix(ci): remove linting temp, and always build on docker changes ( #94 )
...
* fix(ci): remove linting temp, and always build on docker changes
* fix(ci): always re-build on workflow changes
2024-07-07 11:32:22 -04:00
Katos
91cd0d1bca
Merge pull request #93 from sysadminsmedia/fix/dockerbuild
...
Rectify Docker build errors due to broken imports
2024-07-07 16:18:51 +01:00
Katos
b12011f4a6
Rectify Docker build errors due to broken imports
2024-07-07 16:13:02 +01:00
Katos
0223fbbb3f
Add docker healthcheck
...
Add Dockerfile healthcheck endpoint
2024-07-06 14:24:55 +01:00
Katos
a709d38946
Update Dockerfile with Healthcheck endpoint
2024-07-06 14:20:29 +01:00
Katos
bd2eb8b5ac
Update Dockerfile.rootless to include explicitly version tags
...
Tag the version of the base image explicitly on the Dockerfile
2024-07-06 14:20:29 +01:00
Katos
5a015b9581
Add Dockerfile healthcheck
2024-07-06 14:20:29 +01:00
Matt Kilgore
552cb0bf53
chore: General cleanup tasks ( #88 )
...
* chore: cleanup
* chore: remove uneeded pull request info
* chore: update security policy
* Update docs/en/quick-start.md
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Update docs/en/quick-start.md
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Update docs/en/quick-start.md
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-07-02 14:03:21 -04:00
dependabot[bot]
a93f4ff1ad
chore(deps): bump github.com/gorilla/schema ( #87 )
...
Bumps the go_modules group with 1 update in the /backend directory: [github.com/gorilla/schema](https://github.com/gorilla/schema ).
Updates `github.com/gorilla/schema` from 1.2.1 to 1.4.1
- [Release notes](https://github.com/gorilla/schema/releases )
- [Commits](https://github.com/gorilla/schema/compare/v1.2.1...v1.4.1 )
---
updated-dependencies:
- dependency-name: github.com/gorilla/schema
dependency-type: direct:production
dependency-group: go_modules
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-01 19:55:27 -04:00
Matt Kilgore
3d283c2d81
Update README.md ( #83 )
2024-06-30 16:47:59 -04:00
Katos
ea1d92207a
Merge pull request #81 from sysadminsmedia/katos/currency
...
Update currencies to include more currencies
2024-06-30 16:24:10 +01:00
Katos
bcd826ed4f
Merge pull request #70 from zebrapurring/negate-labels
...
Implement filter option for negated labels
2024-06-30 16:02:04 +01:00
Katos
499bb90b09
Update currencies to include more currencies
2024-06-30 15:50:16 +01:00
Katos
4f00822849
Merge pull request #77 from zebrapurring/fix-tooltip-overflow-top
...
Move the link tooltip to the top to prevent overflows
2024-06-29 19:53:21 +01:00
ff28175838
Move the link tooltip to the top to prevent overflows
2024-06-29 19:51:35 +01:00
Katos
0f482aebad
Merge pull request #42 from sysadminsmedia/katos/location-prices
...
Add total pricing to Homebox locations
2024-06-29 18:14:01 +01:00
Katos
76fe0d3522
Merge pull request #69 from sysadminsmedia/docs/i18n
...
feat(docs): i18n support added to docs
2024-06-29 18:12:29 +01:00
Katos
4995e04cf0
Appease the bot overlords.
2024-06-29 18:08:42 +01:00
Katos
76123e00d6
Minor rewording
2024-06-29 18:08:42 +01:00
Katos
0b7de9557d
Minor grammar change
2024-06-29 18:08:42 +01:00
Katos
0f25983278
Improve link readability in Markdown
2024-06-29 18:08:42 +01:00
Matt Kilgore
40a093656b
chore(docs): remove home link (it's broken)
2024-06-29 18:08:42 +01:00
Matt Kilgore
8b8a96f93b
fix(docs): redirect default to english
2024-06-29 18:08:42 +01:00
Matt Kilgore
7b9c3d52cd
fix(docs): redirect default to english
2024-06-29 18:08:42 +01:00
Matt Kilgore
a0198fb66f
fix(docs): broken link
2024-06-29 18:08:42 +01:00
Matt Kilgore
04eb136ab0
feat(docs): i18n support added to docs
2024-06-29 18:08:42 +01:00
zebrapurring
16f3fb19e8
Merge branch 'main' into negate-labels
2024-06-29 18:05:35 +02:00
Harrison Conlin
6a1ffd7700
Add redirect functionality after login ( #76 )
...
Gone is the frustration of scanning a qr code to only be sent to the homepage
2024-06-29 09:02:23 -04:00
zebrapurring
fff0f4344c
Fix overflow caused by long URL tooltips ( #73 )
...
* Fix overflow caused by long URL tooltips
* Break URL tooltips to prevent horizontal page overflows
---------
Co-authored-by: zebrapurring <>
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com >
2024-06-28 14:27:02 -04:00
Matt Kilgore
24dc182c0e
Merge branch 'main' into negate-labels
2024-06-28 11:36:12 -04:00
Matt Kilgore
b4be462ce5
fix(ci): broken CI/CD ( #71 )
...
* fix(ci): broken CI/CD
* fix(ci): rootless docker build
* Update .github/workflows/docker-publish-rootless.yaml
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-06-28 11:27:28 -04:00
9ed618d45e
Fix quoting for GitHub Action
2024-06-28 17:22:01 +02:00
e79905b608
Implement filtering feature to negate selected labels
2024-06-28 17:21:05 +02:00
e929c38e37
Ignore Go debug binary
2024-06-28 17:21:05 +02:00
e406bb2d04
Fix VSCode debug configuration
2024-06-28 17:21:05 +02:00
Matt Kilgore
a3f4c97049
fix(ci): add version info to docker builds ( #68 )
2024-06-27 20:51:14 -04:00
dependabot[bot]
51c21edb67
chore(deps): bump golang.org/x/image ( #65 )
...
Bumps the go_modules group with 1 update in the /backend directory: [golang.org/x/image](https://github.com/golang/image ).
Updates `golang.org/x/image` from 0.14.0 to 0.18.0
- [Commits](https://github.com/golang/image/compare/v0.14.0...v0.18.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/image
dependency-type: indirect
dependency-group: go_modules
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-26 17:59:29 -04:00
icanc0
892635b5e8
fix(backend): moving to csv for consistency with import/export ( #54 )
2024-06-26 08:35:41 -04:00
Matt Kilgore
c9e603c1c2
fix(backend): assetID incorrectly made 32 bit ( #61 )
2024-06-25 13:30:30 -04:00
Matt Kilgore
02bc58ed20
fix(devcontainer): Update features to work correctly ( #50 )
2024-06-23 10:40:26 -04:00
Graeme B
7931003cb7
Revert links back to original repo ( #49 )
...
Links were 404-ing as these were original issues from hay-kot
2024-06-23 10:36:59 -04:00
Matt Kilgore
79c811f65e
chore(docs): update doc links ( #46 )
2024-06-22 22:52:37 -04:00
Katos
07c0193e55
Update README to amend Discord ( #43 )
...
* Update README to amend Discord
Updated README file to new Discord server following migration to Sysadmins Media
* Update README
Improve readability following feedback from botty mcbotface.
---------
Co-authored-by: Matt Kilgore <tankerkiller125@gmail.com >
2024-06-22 16:41:09 -04:00
Matt Kilgore
87e2464599
fix(ci): only run on code changes ( #44 )
2024-06-22 16:34:56 -04:00
Matt Kilgore
30abdd4d36
chore(backend): removed extra unneeded property to pagination
2024-06-22 16:15:22 -04:00
Katos
8a57ca41bf
Update error handling
...
Code review suggestion
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-06-22 17:26:39 +01:00
Katos
b57efa02ff
Update location to include total pricing
2024-06-22 17:16:32 +01:00
Katos
d7bf64742e
Update label to include total pricing
2024-06-22 17:16:32 +01:00
Katos
7e150aa8d7
Update to a
2024-06-22 17:16:32 +01:00
Katos
4d916a69af
Update to add total price
2024-06-22 17:16:32 +01:00
Katos
7096616414
Update docs for new location pricing
2024-06-22 17:16:32 +01:00
Katos
2292d72802
Update repo_locations
2024-06-22 17:16:32 +01:00
Katos
a8d21f0465
Add totalprice to pagination
2024-06-22 17:16:32 +01:00
Katos
53d542413b
Update swagger to include total location cost
2024-06-22 17:16:32 +01:00
Katos
aaeac8ca9d
Add Total Price Calculation to locations
2024-06-22 17:16:32 +01:00
Katos
a780c6fac4
Add Total Price Calculation to ctrl_items
2024-06-22 17:16:32 +01:00
Matt Kilgore
2a54933cef
chore: add code of conduct ( #29 )
...
* chore: add code of conduct
* fix: mail link correction
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* fix: more link updates
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-06-22 10:46:14 -04:00
Matt Kilgore
fa67e7d09f
fix(frontend): stat card title ( #41 )
...
* fix(frontend): stat card title
* fix(frontend): better stat title fix
2024-06-21 23:37:39 -04:00
Matt Kilgore
add57a8962
fix(ci): ignore non-code paths ( #31 )
2024-06-19 21:29:02 -04:00
Phill Price
22c76c52a2
fix(docs): typo fix ( #28 )
...
Mertials > Materials
2024-06-19 20:11:43 -04:00
Matt Kilgore
dd1c09fe0c
fix(ci): updates existing ci job to work with new docker publishing. ( #30 )
2024-06-19 20:05:28 -04:00
dependabot[bot]
b4f7d2152a
chore(deps): bump golang.org/x/net ( #26 )
...
Bumps the go_modules group with 1 update in the /backend directory: [golang.org/x/net](https://github.com/golang/net ).
Updates `golang.org/x/net` from 0.21.0 to 0.23.0
- [Commits](https://github.com/golang/net/compare/v0.21.0...v0.23.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: indirect
dependency-group: go_modules
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-19 13:32:24 -04:00
dependabot[bot]
25e1c41335
chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates ( #21 )
...
Bumps the npm_and_yarn group with 6 updates in the /frontend directory:
| Package | From | To |
| --- | --- | --- |
| [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse ) | `7.22.1` | `7.24.7` |
| [braces](https://github.com/micromatch/braces ) | `3.0.2` | `3.0.3` |
| [follow-redirects](https://github.com/follow-redirects/follow-redirects ) | `1.15.2` | `1.15.6` |
| [tar](https://github.com/isaacs/node-tar ) | `6.1.13` | `6.2.1` |
| [undici](https://github.com/nodejs/undici ) | `5.22.1` | `5.28.4` |
| [word-wrap](https://github.com/jonschlinkert/word-wrap ) | `1.2.3` | `1.2.5` |
Updates `@babel/traverse` from 7.22.1 to 7.24.7
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-traverse )
Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3 )
Updates `ejs` from 3.1.9 to 3.1.10
- [Release notes](https://github.com/mde/ejs/releases )
- [Commits](https://github.com/mde/ejs/compare/v3.1.9...v3.1.10 )
Updates `follow-redirects` from 1.15.2 to 1.15.6
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases )
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.2...v1.15.6 )
Updates `tar` from 6.1.13 to 6.2.1
- [Release notes](https://github.com/isaacs/node-tar/releases )
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md )
- [Commits](https://github.com/isaacs/node-tar/compare/v6.1.13...v6.2.1 )
Updates `undici` from 5.22.1 to 5.28.4
- [Release notes](https://github.com/nodejs/undici/releases )
- [Commits](https://github.com/nodejs/undici/compare/v5.22.1...v5.28.4 )
Updates `word-wrap` from 1.2.3 to 1.2.5
- [Release notes](https://github.com/jonschlinkert/word-wrap/releases )
- [Commits](https://github.com/jonschlinkert/word-wrap/compare/1.2.3...1.2.5 )
---
updated-dependencies:
- dependency-name: "@babel/traverse"
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: braces
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: ejs
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: follow-redirects
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: tar
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: undici
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: word-wrap
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-19 12:53:13 -04:00
Matt Kilgore
bde7ccbb2c
feat(docs): add sitemap to docs ( #25 )
2024-06-19 09:23:27 -04:00
Matthew Kilgore
c9841513cd
fix(ci): rootless suffix
2024-06-19 06:46:53 -04:00
Matthew Kilgore
eeedb94716
fix(ci): better version tagging
2024-06-19 06:44:08 -04:00
Matthew Kilgore
bf6151ed61
fix(ci): better version tagging
2024-06-18 22:12:15 -04:00
Matthew Kilgore
101e6b0802
fix(ci): fix ci permissions
2024-06-18 21:59:46 -04:00
Matt Kilgore
c844fcd185
ci: update cd/cd build processes for docker ( #22 )
...
* ci: update cd/cd build processes for docker
* chore(backend): update go namespaces
2024-06-18 21:17:23 -04:00
Katos
2111ee182d
fix: CSV has wrong file extension ( #19 )
...
* Update v1_ctrl_reporting.go
Amend BOM export to CSV
* Update v1_ctrl_reporting.go
---------
Co-authored-by: Matt Kilgore <tankerkiller125@gmail.com >
2024-06-18 19:28:33 -04:00
Matthew Kilgore
0980ee41cf
chore(backend): update go namespaces
2024-06-18 19:22:51 -04:00
Katos
0c2181fce9
Chore: Fix references to new branding
...
Updating docs link and resolve references to new sysadmins media branding.
2024-06-18 20:13:38 +01:00
Matthew Kilgore
7d4e5d17fc
chore: docs updates for landing page
2024-06-18 12:38:33 -04:00
Matt Kilgore
ea79d2d279
fix: Doc links
2024-06-18 12:15:37 -04:00
Matt Kilgore
36d64737e0
chore: Add project description to readme
2024-06-18 11:59:37 -04:00
Matt Kilgore
0acb9316f9
chore: update funding
...
Fixed katosdev username
2024-06-18 09:24:17 -04:00
Matt Kilgore
1233606d19
fix: Incorrect int size conversion
2024-06-18 09:16:29 -04:00
Matt Kilgore
8d98780a7c
chore: add hay-kot to credits
2024-06-18 08:32:34 -04:00
Matt Kilgore
b81bac0bf7
fix(docs): quick start formatting
2024-06-18 08:15:49 -04:00
Matthew Kilgore
ada49f6957
fix: broken doc link
2024-06-18 06:56:24 -04:00
Matthew Kilgore
919671d9c9
fix: error doc
2024-06-18 06:53:52 -04:00
Matthew Kilgore
dd986e4481
chore: remove mkdocs
2024-06-18 06:52:44 -04:00
Matthew Kilgore
829458562f
chore: Rebranding
2024-06-18 06:48:03 -04:00
Matt Kilgore
e652507714
Update feature_request.yml
2024-06-17 20:53:52 -04:00
Matt Kilgore
b6c4d8c966
Update bug_report.yml
2024-06-17 20:52:55 -04:00
Matt Kilgore
96b0c8606c
Update FUNDING.yml
2024-06-17 20:41:59 -04:00
Matt Kilgore
69a25e3aba
Update publish.yaml
2024-06-17 20:38:26 -04:00
Matt Kilgore
320ca2d48a
Update tag.yaml
2024-06-17 19:08:27 -04:00
Matt Kilgore
421c57267b
Update partial-publish.yaml
2024-06-17 19:07:29 -04:00
CollapsingStar
6fd8457e5a
chore: remove deprecated version tag for Docker v2 ( #902 )
2024-05-23 07:53:43 -08:00
Graeme B
c2511d56d7
Update README.md ( #891 )
...
Add a Contributing section and the Buy Me A Coffee link since I had to hunt for it.
2024-05-23 07:52:56 -08:00
renovate[bot]
fbb17d66aa
fix(deps): update dependency @vueuse/nuxt to v10.9.0 ( #827 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-28 08:11:54 -08:00
renovate[bot]
98429ae8c2
fix(deps): update dependency @vueuse/router to v10.9.0 ( #828 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-28 08:11:46 -08:00
renovate[bot]
69adbacd25
fix(deps): update dependency h3 to v1.11.1 ( #831 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-28 08:11:34 -08:00
renovate[bot]
43ff04317a
fix(deps): update dependency pinia to v2.1.7 ( #833 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-28 08:11:22 -08:00
renovate[bot]
361c2121d8
fix(deps): update dependency daisyui to v2.52.0 ( #830 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-28 08:09:16 -08:00
Spreadcat
0041c277ad
Add currency "norwegian krones" ( #836 )
...
* add: norwegian kroner
Adding the currency of norwegian krones back into the file. There was an earlier commit where this seems to have dropped of the table.
* fix: using the correct terms for the currency.
2024-03-12 14:48:51 -08:00
Hayden
f621d3ad5d
fix blocking error during startup when in demo mode ( #838 )
2024-03-05 06:44:43 -09:00
Hayden
af9aa239af
add email banner
2024-03-02 12:03:13 -06:00
renovate[bot]
f8a2c70f2c
chore(deps): update typescript-eslint monorepo to v6.21.0 ( #824 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-02 08:14:23 -09:00
renovate[bot]
89b68da86e
fix(deps): update dependency @vuepic/vue-datepicker to v8.2.0 ( #826 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-02 08:14:03 -09:00
renovate[bot]
03e9596b7a
fix(deps): update dependency @nuxtjs/tailwindcss to v6.11.4 ( #825 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-02 08:06:01 -09:00
renovate[bot]
90535c8691
chore(deps): update dependency typescript to v5.3.3 ( #822 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 18:32:52 -09:00
renovate[bot]
b7fc0e903c
chore(deps): update dependency vitest to v1.3.1 ( #823 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 18:32:40 -09:00
renovate[bot]
eb420d50b1
chore(deps): update dependency eslint-config-prettier to v9.1.0 ( #820 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 16:44:52 -09:00
renovate[bot]
8f3a081670
chore(deps): update dependency eslint-plugin-vue to v9.22.0 ( #821 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 16:44:46 -09:00
Hayden
2867a05c92
chore: bump http kit ( #817 )
...
* use new httpkit runner
* refactor out last httpkit changes
* fix timeout defaults
* fix wrong time input - closes #819
2024-03-01 15:07:03 -09:00
renovate[bot]
77b4d594af
fix(deps): update module ariga.io/atlas to v0.19.1 ( #814 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 15:06:12 -09:00
renovate[bot]
8f4fed1df9
fix(deps): update dependency postcss to v8.4.35 ( #812 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 15:05:54 -09:00
renovate[bot]
b65da05d11
chore(deps): update dependency @nuxtjs/eslint-config-typescript to v12.1.0 ( #816 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 15:05:34 -09:00
renovate[bot]
c2c8441625
chore(deps): update dependency @faker-js/faker to v8.4.1 ( #815 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 15:05:24 -09:00
renovate[bot]
a1eb6e314c
fix(deps): update dependency dompurify to v3.0.9 ( #811 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 10:52:03 -09:00
renovate[bot]
b0c9dcdeee
fix(deps): update dependency autoprefixer to v10.4.18 ( #809 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 10:51:57 -09:00
renovate[bot]
0a609adb0b
fix(deps): update dependency @tailwindcss/typography to v0.5.10 ( #806 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 10:51:47 -09:00
renovate[bot]
19ee6c2687
fix(deps): update dependency @headlessui/vue to v1.7.19 ( #803 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 10:51:40 -09:00
Hayden
b77c9be36f
chore: bump deps ( #810 )
...
* bump prettier/eslint-plugin
* bump nuxt pwa
* use typed imports
* set vue version to fix layout errors
* disable import
2024-03-01 09:08:14 -09:00
Hayden
be2910e0df
fix missing icon
2024-03-01 11:34:07 -06:00
Hayden
749ee367d4
upgrade dependency
2024-03-01 10:54:31 -06:00
renovate[bot]
c36ce7ac2d
fix(deps): update module github.com/swaggo/http-swagger to v2 ( #514 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-01 07:51:26 -09:00
renovate[bot]
d0128c7bd7
fix(deps): update dependency @tailwindcss/forms to v0.5.7 ( #804 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-29 16:20:51 -09:00
Hayden
f91b33db38
fix: remove external dependency for icones ( #805 )
...
* change all icons to use iconify
* fix minor UI elements
* fix layout of table
2024-02-29 16:20:18 -09:00
renovate[bot]
cf166ac641
chore(deps): update dependency prettier to v2.8.8 ( #802 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-29 12:17:27 -09:00
renovate[bot]
ae86e09970
chore(deps): update dependency @types/markdown-it to v13.0.7 ( #801 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-29 12:17:19 -09:00
renovate[bot]
a7e0d2d127
fix(deps): update dependency postcss to v8.4.31 [security] ( #791 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-29 10:48:33 -09:00
renovate[bot]
9866fdddb8
fix(deps): update module modernc.org/sqlite to v1.29.2 ( #790 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-29 10:48:07 -09:00
renovate[bot]
ff9759ab20
chore(deps): update dependency mkdocs-material to v9.5.12 ( #778 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-29 10:47:58 -09:00
Hayden
b655cfab28
feat: improve search matching ( #800 )
...
* offload search to lunr.js
* update location search when locations are mutated
2024-02-29 10:45:05 -09:00
Hayden
4c9ddac395
fix: date picker improvements ( #793 )
...
* use vue component for date picker
* zero out database fields even when set to 0001-xx-xx
* fix wrong datetime display + improved datepicker
* fix ts error
* zero out times
* add date-fns to dependencies
2024-02-29 09:58:26 -09:00
Hayden
c708b1759e
fix: profile bugs and add full path ( #792 )
...
* fix template rendering
* tidy
* fix missing currencies and profile errors
* endpoint for fullpath of an item
* endpoint test
* fix assertions
2024-02-25 13:04:24 -09:00
renovate[bot]
3ed50f5a1b
fix(deps): update module modernc.org/sqlite to v1.29.1 ( #754 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-18 09:30:08 -09:00
renovate[bot]
e6d77b3f72
fix(deps): update module github.com/go-chi/chi/v5 to v5.0.12 ( #775 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-18 09:29:53 -09:00
renovate[bot]
747815982e
fix(deps): update module github.com/go-playground/validator/v10 to v10.18.0 ( #753 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 10:43:58 -09:00
renovate[bot]
7e23a75908
fix(deps): update module github.com/hay-kot/httpkit to v0.0.6 ( #751 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 10:43:41 -09:00
renovate[bot]
4c8a97fe0d
chore(deps): update dependency mkdocs-material to v9.5.9 ( #750 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 10:43:25 -09:00
renovate[bot]
87b07ab47d
chore(deps): update golangci/golangci-lint-action action to v4 ( #747 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 06:13:34 -09:00
renovate[bot]
cf8000d8ee
chore(deps): update pnpm/action-setup action to v3 ( #744 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 06:11:03 -09:00
renovate[bot]
31b10194f1
fix(deps): update module golang.org/x/crypto to v0.19.0 ( #743 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 06:10:55 -09:00
renovate[bot]
3d748021dc
chore(deps): update dependency mkdocs-material to v9.5.8 ( #742 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-07 09:45:51 -09:00
renovate[bot]
0f8e1fee35
fix(deps): update module github.com/rs/zerolog to v1.32.0 ( #740 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-07 09:45:44 -09:00
renovate[bot]
8d18b06012
fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.22 ( #735 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-04 10:43:08 -09:00
renovate[bot]
6a32762c98
fix(deps): update module github.com/swaggo/swag to v1.16.3 ( #731 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-04 10:42:59 -09:00
renovate[bot]
2311eda44b
fix(deps): update module ariga.io/atlas to v0.19.0 ( #734 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-04 10:42:50 -09:00
renovate[bot]
5b52aa8abf
chore(deps): update dependency mkdocs-material to v9.5.7 ( #736 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-04 10:42:39 -09:00
LINKIWI
aace77ec40
backend: Periodically send client aliveness pings in event stream websocket connection ( #729 )
...
* backend: Periodically send client aliveness pings following event websocket connection
* backend: Single persistent global ping goroutine instead of per-session ticker
2024-01-31 10:20:56 -09:00
renovate[bot]
c55d421326
chore(deps): update dependency mkdocs-material to v9.5.6 ( #728 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-31 10:20:31 -09:00
renovate[bot]
5ca8e0c35d
fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.21 ( #730 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-31 10:16:31 -09:00
Hayden
aba853d598
redo atlas upgrade with huge binary
2024-01-28 10:50:43 -06:00
Hayden
2c8fd163ee
chore: ignore common bin output
2024-01-27 22:03:46 -06:00
Hayden
d9497bd69e
remove large bin + go tidy
...
Former-commit-id: 830b4d8e3efb66874f0310d6c49d37d57481f986
2024-01-27 21:48:32 -06:00
LINKIWI
893f3f6df6
chore: Enable gofmt in linter, fix all outstanding errors ( #727 )
...
Former-commit-id: 1d9477f510bb2d6ada4b720933f113f24c25913e
Former-commit-id: b22ff272ca37181c93c6e83db8f1e1e67a767ebd
2024-01-27 18:29:10 -09:00
LINKIWI
ca55e5ba94
fix: Case-insensitive attachment extension matching for item photo inference ( #725 )
...
Former-commit-id: 3a6865079e68e9c1ee9beda651cbf123c58fcfc6
2024-01-27 18:28:58 -09:00
LINKIWI
7753213657
fix: Use zerolog level parser, set global log level correctly from configuration ( #724 )
...
Former-commit-id: 08b46c2fe32bda46158eac46f82a2341bb1a93c2
2024-01-27 18:28:43 -09:00
renovate[bot]
b3f7b59243
fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.20 ( #723 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 858cdec2d59198bb84cb4b713343e9bd503ebb6b
2024-01-26 06:10:22 -09:00
renovate[bot]
18a9b21a87
fix(deps): update module github.com/google/uuid to v1.6.0 ( #719 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 59a5a1782bd7c9c63684a300a808932fd0072a3f
2024-01-24 08:46:07 -09:00
renovate[bot]
853b473668
chore(deps): update dependency mkdocs-material to v9.5.5 ( #720 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: b8b706ee7447990546fd7d5cb9d257be9a3f23de
2024-01-24 08:42:19 -09:00
renovate[bot]
40905bc100
fix(deps): update module modernc.org/sqlite to v1.28.0 ( #667 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: de4081d0d29fe010d56baed60f0d3e08b13475cc
2024-01-20 07:32:34 -09:00
renovate[bot]
8be9df2b8d
fix(deps): update module github.com/go-playground/validator/v10 to v10.17.0 ( #717 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 94399a93dc1d848fae46c596aa7ed0e719be09b0
2024-01-20 07:32:21 -09:00
renovate[bot]
bd9eb69313
fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.19 ( #668 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 6ee41038b16e87c68bc1f3ca749265c927a80b5a
2024-01-19 05:55:39 -09:00
renovate[bot]
fa31bb2448
chore(deps): update dependency mkdocs-material to v9.5.4 ( #716 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: b3b81a3ccc025e67d60e1b6fa8aacad4bc84a51e
2024-01-19 05:52:33 -09:00
renovate[bot]
fcd33e59d9
fix(deps): update module golang.org/x/crypto to v0.18.0 ( #706 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: d374fae88f6c64760922bc8b62fe5be40389eb36
2024-01-18 10:46:51 -09:00
zebrapurring
84aee20208
feat: enable search by serial number or model number ( #677 )
...
Co-authored-by: zebrapurring <>
Former-commit-id: f2f780936066eb5bb3dbbdbe0d0f9ef319662e73
2024-01-18 10:46:40 -09:00
Hayden
2b79788fbe
feat: user defined currencies ( #700 )
...
* basic currency service for loading at runtime
* api endpoint for currencies
* sort slice before return
* remove currency validation
* validate using currency service
* implement selecting dynamic currency options
* bump go version
* fix type definition
* specify explicit type
* change go versions
* proper types for assetId
* log/return currency error
* make case insensative
* use ToUpper instead
* feat: adding new currencies (#715 )
* fix: task swag (#710 )
Co-authored-by: Quoing <pavel.cadersky@mavenir.com >
* [feat] Adding new currencies
---------
Co-authored-by: quoing <quoing@users.noreply.github.com >
Co-authored-by: Quoing <pavel.cadersky@mavenir.com >
Co-authored-by: Bradley <41597815+userbradley@users.noreply.github.com >
* remove ts file and consoldate new values into json
* move flag to options namespace
* add env config for currencies
* basic documentaion
* remove in sync test
---------
Co-authored-by: quoing <quoing@users.noreply.github.com >
Co-authored-by: Quoing <pavel.cadersky@mavenir.com >
Co-authored-by: Bradley <41597815+userbradley@users.noreply.github.com >
Former-commit-id: c4b923847a1b695dcddd1b346adcccfd3f3ce706
2024-01-18 10:45:42 -09:00
quoing
ce923a5b4c
fix: task swag ( #710 )
...
Co-authored-by: Quoing <pavel.cadersky@mavenir.com >
Former-commit-id: d2bde3f24112aaa033e813546631b194c569694d
2024-01-16 17:39:25 -09:00
renovate[bot]
e83ff89c9d
chore(deps): update dependency mkdocs-material to v9.5.3 ( #697 )
...
Former-commit-id: d920e1e215426f8f432f0ff0fa55310b7ec17ef1
2024-01-04 15:49:56 -06:00
renovate[bot]
c71c4f3b16
fix(deps): update module github.com/go-chi/chi/v5 to v5.0.11 ( #698 )
...
Former-commit-id: 6d8260b4fe276c4766c8d99330cbf8707bd4f88e
2024-01-04 15:48:08 -06:00
renovate[bot]
33661587fd
fix(deps): update module github.com/google/uuid to v1.5.0 ( #664 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 8ede42f79bfadeff674dfc576225eaf2d3a943f4
2024-01-04 12:12:20 -09:00
Marcel K
27b72603e1
feat: show quantity in card view if quantity == 0 (hay-kot/homebox#672) ( #673 )
...
* feat: show quantity in card view if quantity == 0 (hay-kot/homebox#672 )
* Update frontend/components/Item/Card.vue
---------
Co-authored-by: bee-eater <bee-eater@users.noreply.github.com >
Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com >
Former-commit-id: d8e49622e52a45346485fc052932ee39b6518c63
2024-01-04 12:10:44 -09:00
renovate[bot]
a4d91adc1e
fix(deps): update module golang.org/x/crypto to v0.17.0 [security] ( #676 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: f3f2116a2b1b0b975693002bf4ce1224fb373a8e
2024-01-04 12:09:24 -09:00
Hayden
03df23d97c
fix: inaccruate 401 & sql busy error ( #679 )
...
* fix inaccruate 401 error on SQL db error
* init golangci-lint config
* linter autofix
* testify auto fixes
* fix sqlite busy errors
* fix naming
* more linter errors
* fix rest of linter issues
Former-commit-id: e8449b3a73
2024-01-04 08:55:26 -09:00
zebrapurring
5e83b28ff5
fix: Render newlines in markdown fields ( #682 )
...
Co-authored-by: zebrapurring <>
Former-commit-id: b9183109f2
2023-12-24 18:27:58 -09:00
Hayden
d759fad40c
feat: add log statements + remove auto redirect ( #671 )
...
Former-commit-id: 3ee150e7d6
2023-12-15 18:32:44 -09:00
Hayden
1cc9bf459a
fix: ensure rows are closed ( #670 )
...
Former-commit-id: 85c8e47016
2023-12-15 18:07:17 -09:00
Hayden
0c535aa8d8
feat: extract auth into provider ( #663 )
...
* extract auth into provider
* bump go version
* use pointer
* rebase
Former-commit-id: 8538877f52
2023-12-12 05:49:46 -09:00
renovate[bot]
3eb4c21263
fix(deps): update dependency markdown-it to v14 ( #655 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 522943687e
2023-12-12 05:44:48 -09:00
renovate[bot]
19c53dce2f
chore(deps): update dependency vitest to v1 ( #652 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: ff2577a739
2023-12-12 05:44:38 -09:00
renovate[bot]
3967bc86d0
chore(deps): update actions/setup-go action to v5 ( #653 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 0bc3969c0c
2023-12-12 05:44:23 -09:00
renovate[bot]
2b6e42b11f
chore(deps): update dependency mkdocs-material to v9.5.2 ( #654 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 8a85b18997
2023-12-12 05:44:11 -09:00
renovate[bot]
d48de6b9f6
fix(deps): update github.com/gocarina/gocsv digest to b87c2d0 ( #629 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: b5592167a2
2023-12-01 09:39:52 -09:00
renovate[bot]
477a5fce97
fix(deps): update module golang.org/x/crypto to v0.16.0 ( #645 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 126c06a0fa
2023-12-01 09:39:44 -09:00
renovate[bot]
65efe7f575
fix(deps): update module github.com/hay-kot/httpkit to v0.0.5 ( #643 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 014fdea4ff
2023-12-01 09:39:37 -09:00
Hayden
1b77b15db4
fix: ignore /api paths from service workers ( #649 )
...
Former-commit-id: f2363b85cb
2023-12-01 08:57:59 -09:00
Hayden
fc3bc3f010
fix: loading causing stale data to present in form( #650 )
...
Former-commit-id: 4d9131ba7e
2023-12-01 08:57:43 -09:00
Hayden
81e76d9dd4
fix/feat: primary photo auto set and auto-set primary photo ( #651 )
...
* fix error when item doesn't have photo attachment
* automatically detect image types and set primary photo if first
* remove charts.js from libs
Former-commit-id: 321a83b634
2023-12-01 08:57:29 -09:00
renovate[bot]
bd1a241be1
chore(deps): update docker/setup-qemu-action action to v3 ( #625 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: d1d98bcb06
2023-11-30 14:25:55 -09:00
renovate[bot]
bc4c0c0b89
chore(deps): update goreleaser/goreleaser-action action to v5 ( #626 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: db00e7a268
2023-11-30 14:25:47 -09:00
renovate[bot]
c7936fc478
chore(deps): update dependency mkdocs-material to v9.4.14 ( #630 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 7ec22ed9bd
2023-11-30 14:25:30 -09:00
Kevin Holtkamp
09ee4fef3a
docs: Fix a bunch of grammar and spelling, rephrased some sentences to be more readable ( #635 )
...
Former-commit-id: 10c030a56b
2023-11-30 14:25:22 -09:00
Hayden
d6b0062ae9
feat: set version flag ( #632 )
...
Former-commit-id: 9edbda3daa
2023-11-24 10:02:02 -09:00
Hayden
df26a3eeb7
fix: allow zeroing out asset ids ( #624 )
...
Former-commit-id: 8cc0f30291
2023-11-15 18:46:47 -09:00
Hayden
798d873f76
fix: images in child items ( #623 )
...
* support parentID search
* fetch images for item children
Former-commit-id: afbc6a49ac
2023-11-15 18:41:24 -09:00
renovate[bot]
a26ea3bac5
chore(deps): update dependency @types/markdown-it to v13 ( #577 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 2594d4cdb4
2023-11-15 18:18:19 -09:00
renovate[bot]
812b464bc7
chore(deps): update dependency @vite-pwa/nuxt to ^0.2.0 ( #616 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 2eafa8e72f
2023-11-15 18:18:07 -09:00
renovate[bot]
e1f34c2507
fix(deps): update dependency @pinia/nuxt to ^0.5.0 ( #620 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: e65d44fa9e
2023-11-15 18:17:57 -09:00
Hayden
79be938531
feat: expose timeout variables ( #622 )
...
* expose timeout variables
* formatting
Former-commit-id: eeae790fe4
2023-11-15 18:17:43 -09:00
renovate[bot]
e3ddc68eb2
chore(deps): update actions/setup-node action to v4 ( #621 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: a70ee33759
2023-11-15 18:15:31 -09:00
Hayden
eb9175ab27
fix: use theme aware background color ( #619 )
...
Former-commit-id: 80e2071300
2023-11-15 18:01:03 -09:00
renovate[bot]
54b7b2c35f
chore(deps): update pnpm/action-setup action to v2.4.0 ( #511 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: db27d34b4f
2023-11-15 17:58:30 -09:00
Owen Valentine
ab98870350
feat : Validate bark, ntfy, generic+ shortcut ( #591 )
...
Former-commit-id: da22074ed3
2023-11-15 17:53:06 -09:00
Hayden
13c437c418
fix: ensure urls isn't encoded ( #618 )
...
Former-commit-id: 51ba15f84c
2023-11-15 17:51:19 -09:00
Hayden
ba2e66a014
fix: filepath sep on windows ( #615 )
...
Former-commit-id: b408318acb
2023-11-15 17:43:44 -09:00
Hayden
1adf24e109
chore: bump all go dependencies ( #614 )
...
* bump all
* code-generation
Former-commit-id: c0e8e34065
2023-11-15 17:30:49 -09:00
Hayden
742ece7923
chore: rewrite generator to resolve strange name generation ( #612 )
...
* rewrite generator to resolve strange name generation
* fix asset id types
* ignore errored types
* remove depreciated calls
* use more random words
* random user
Former-commit-id: 4738a9b131
2023-11-15 17:19:51 -09:00
renovate[bot]
f74736b369
chore(deps): update actions/checkout action to v4 ( #575 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: b08e52104c
2023-11-15 08:08:46 -09:00
renovate[bot]
3a3be89b90
chore(deps): update docker/setup-buildx-action action to v3 ( #579 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 3e2ab29054
2023-11-15 08:08:37 -09:00
renovate[bot]
4082092560
chore(deps): update dependency mkdocs-material to v9.4.8 ( #592 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: e5f66d99bc
2023-11-15 08:08:26 -09:00
Hayden
31839eb444
fix: restore location section ( #587 )
...
Former-commit-id: 0995478cc0
2023-10-15 06:37:47 -08:00
Hayden
6e203e7833
fix: infinite redirect issue ( #583 )
...
Former-commit-id: ae4b95301f
2023-10-10 05:43:44 -08:00
Hayden
0ef9d0deb8
Revert "chore(deps): update dependency nuxt to v3.7.4 ( #554 )" ( #580 )
...
This reverts commit 36e13ab03b [formerly 2cd3c15215 ].
Former-commit-id: d8482f3a13
2023-10-06 20:29:27 -08:00
Hayden
c71f077466
refactor: rewrite to cookie based auth ( #578 )
...
* rewrite to cookie based auth
* remove interceptor
Former-commit-id: 1365bdfd46
2023-10-06 19:44:43 -08:00
renovate[bot]
36e13ab03b
chore(deps): update dependency nuxt to v3.7.4 ( #554 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 2cd3c15215
2023-10-06 18:51:54 -08:00
renovate[bot]
c0f19cdf05
fix(deps): update module modernc.org/sqlite to v1.26.0 ( #574 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 0dc4fa5d98
2023-10-06 18:51:44 -08:00
Hayden
b20c88e256
feat: primary images ( #576 )
...
* add support for primary images
* fix locked loading state issue
* add action to auto-set images
Former-commit-id: 318b8be192
2023-10-06 18:51:08 -08:00
Hayden
ce16b37b97
fix: field values request fails ( #573 )
...
Former-commit-id: 63a966c526
2023-10-06 14:10:44 -08:00
Hayden
6ed1893bed
feat: make selectables clearable ( #572 )
...
Former-commit-id: db16d3fb23
2023-10-06 13:32:49 -08:00
renovate[bot]
bd9ea571aa
fix(deps): update module golang.org/x/crypto to v0.14.0 ( #570 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 1952b9f1cb
2023-10-06 13:24:12 -08:00
renovate[bot]
10d9c4fbcc
fix(deps): update module github.com/rs/zerolog to v1.31.0 ( #569 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 2b31d46ab3
2023-10-06 13:24:00 -08:00
Hayden
eff5db3664
fix: ensure loading in toggled ( #571 )
...
Former-commit-id: f3f96723b2
2023-10-06 13:22:16 -08:00
renovate[bot]
f8a6160039
fix(deps): update module github.com/yeqown/go-qrcode/writer/standard to v1.2.2 ( #567 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: b28bb2c4a8
2023-10-06 13:06:00 -08:00
renovate[bot]
4375ff8bd6
fix(deps): update module github.com/containrrr/shoutrrr to v0.8.0 ( #555 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: a33cf54a33
2023-10-06 13:05:53 -08:00
Hayden
9bee6e9863
pr: fixed incorrect sum of the total items price ( #568 )
...
* Fixed incorrect sum of the total items price
https://github.com/hay-kot/homebox/issues/458
* fix eslint errors
---------
Co-authored-by: Adamko <33964772+cRaZy92@users.noreply.github.com >
Former-commit-id: f13bf2958d
2023-10-06 12:50:55 -08:00
renovate[bot]
b42d20b6a6
chore(deps): update dependency mkdocs-material to v9.4.4 ( #553 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: a9712c48af
2023-10-06 12:31:51 -08:00
renovate[bot]
ba1e3a905b
fix(deps): update module github.com/go-playground/validator/v10 to v10.15.5 ( #556 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: e68b7cf500
2023-10-06 12:30:31 -08:00
renovate[bot]
973d5ca97d
fix(deps): update module github.com/swaggo/swag to v1.16.2 ( #552 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 744a5bbb47
2023-09-14 06:19:57 -08:00
renovate[bot]
57baf22534
fix(deps): update module github.com/google/uuid to v1.3.1 ( #551 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: fc5698410b
2023-09-14 06:19:37 -08:00
renovate[bot]
c615707cbc
fix(deps): update module golang.org/x/crypto to v0.13.0 ( #532 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 455163d637
2023-09-14 06:19:28 -08:00
Aaron von Awesome
992eea3278
fix: minor typo ( #546 )
...
Former-commit-id: fbc7e6e33a
2023-09-14 06:13:42 -08:00
renovate[bot]
03288b52ee
chore(deps): update dependency eslint-config-prettier to v9 ( #533 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 5739b2005a
2023-09-14 06:11:08 -08:00
renovate[bot]
a274bbcf64
fix(deps): update module modernc.org/sqlite to v1.25.0 ( #531 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 5f41960c0a
2023-09-14 06:10:46 -08:00
renovate[bot]
64e9889d41
fix(deps): update module github.com/rs/zerolog to v1.30.0 ( #517 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: c89aa738cf
2023-09-14 06:10:37 -08:00
Jonathan Gawrych
58e80ab3e0
fix: mobile "Create and Add Another" goes off screen ( #540 )
...
Former-commit-id: 94fd9c314d
2023-08-31 09:07:45 -08:00
Hayden
94e81d14fa
fix websocket over secure connection ( #542 )
...
* fix https connection
* explicity dependency
Former-commit-id: 0876deb1e9
2023-08-24 06:28:56 -08:00
tctlrd
0b021e898f
feat: add currencies XAG and XAU ( #535 )
...
* Added currencies XAG and XAU to currency.ts
I added XAG and XAU for myself and others who prefer to measure value with something of substance.
Review the ISO 4217 standard to view a full list of official currency codes including the ones I have added.
https://www.iso.org/iso-4217-currency-codes.html
https://en.wikipedia.org/wiki/ISO_4217
Example:
https://www.xe.com/currencyconverter/convert/?Amount=100&From=XAG&To=USD
API for exchange rates:
https://openexchangerates.org/
* Added field values xag and xau to group.go
* Update group.go
Former-commit-id: 5438898b49
2023-08-23 09:29:22 -08:00
Hayden
be8d6e8235
update lock file
...
Former-commit-id: 9fa17bec90
2023-08-09 21:49:32 -05:00
Cheng Gu
d3dcb599ca
feat: set cookies' expires attribute and fix remember me ( #530 )
...
Former-commit-id: b5987f2e8d
2023-08-09 18:48:39 -08:00
Hayden
0cbe516ca3
feat: WebSocket based implementation of server sent events for cache busting ( #527 )
...
* rough implementation of WS based event system for server side notifications of mutation
* fix test construction
* fix deadlock on event bus
* disable linter error
* add item mutation events
* remove old event bus code
* refactor event system to use composables
* refresh items table when new item is added
* fix create form errors
* cleanup unnecessary calls
* fix importer erorrs + limit fn calls on import
Former-commit-id: 2cbcc8bb1d
2023-08-02 13:00:57 -08:00
Hayden
26911e9530
specify h3 dependency
...
Former-commit-id: cceec06148
2023-08-02 09:05:07 -05:00
Hayden
5524dfa83d
try node 18
...
Former-commit-id: 2e2eed143d
2023-08-02 09:01:47 -05:00
renovate[bot]
21d54eb2ac
chore(deps): update dependency vitest to ^0.34.0 ( #529 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 272cc5a370
2023-08-02 05:59:31 -08:00
Hayden
4152199f3b
build nightly rootless
...
Former-commit-id: 275e106d72
2023-08-02 08:47:53 -05:00
Hayden
1d40251f29
include rootless dockerfile
...
Former-commit-id: 3f0e65a2ad
2023-08-02 08:45:22 -05:00
Hayden
97e137c411
feat: add support for create + add more for all create modals and support k… ( #526 )
...
* add support for create + add more for all create modals and support keyboard bindings
* listen for esc to close modals
Former-commit-id: 22bbaae08f
2023-07-31 09:53:26 -08:00
Hayden
0de6c2338d
fix: prevent resetting dialog state on error ( #524 )
...
Former-commit-id: 8c7d91ea52
2023-07-31 08:22:08 -08:00
Hayden
a2479155b2
feat: support cmd+s / ctrl+s and rework button display on edit ( #523 )
...
Former-commit-id: 5a219f6a9c
2023-07-31 06:57:42 -08:00
Hayden
e2dace75f4
fix: label prop not being passed to password input ( #522 )
...
Former-commit-id: 895017b28e
2023-07-31 06:08:35 -08:00
Hayden
ef9a7cd811
fix: assert/asserts ( #521 )
...
Former-commit-id: 02ce52dbe3
2023-07-31 06:05:37 -08:00
Hayden
964270e054
feat: more currency support ( #520 )
...
* add multiple new currencies
* add multiple new currencies
* remove duplicate yen
Former-commit-id: c5ae6b17f9
2023-07-31 05:59:36 -08:00
renovate[bot]
6b9cdf3294
chore(deps): update dependency mkdocs-material to v9.1.21 ( #512 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 371fc0a6af
2023-07-29 09:54:55 -08:00
Hayden
6fd228f1f4
ui: rework location/labels pages ( #475 )
...
* formatting
* slimdown locations page
* update location/labels
* fix dependency issues
* fix type generator
* cleanup unused variables
Former-commit-id: 016780920d
2023-07-27 13:21:28 -08:00
db8200
0eb0b283b2
fix 3 places where API URLs were not constructed by function route ( #451 )
...
* Fixed 3 places where API URLs were not constructed by function route(path, params).
* autofix
---------
Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com >
Former-commit-id: 06eb6c1f91
2023-07-22 20:11:29 -08:00
renovate[bot]
4b071bccda
fix(deps): update module github.com/swaggo/http-swagger to v2 ( #508 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: 27dad0e118
2023-07-22 20:10:52 -08:00
renovate[bot]
65a7947932
fix(deps): update module github.com/swaggo/http-swagger to v2 ( #506 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Former-commit-id: dc9446516a
2023-07-22 20:09:43 -08:00
Hayden
a3e607a887
chore: bump all go deps ( #507 )
...
* bump all deps
* run code-gen
Former-commit-id: a042496c71
2023-07-22 19:57:51 -08:00
renovate[bot]
feab9f4c46
chore(deps): update dependency @vite-pwa/nuxt to ^0.1.0 ( #474 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-22 19:46:08 -08:00
renovate[bot]
fe5622d62a
fix(deps): update module golang.org/x/crypto to v0.11.0 ( #495 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-22 19:45:56 -08:00
renovate[bot]
e759f2817e
chore(deps): update dependency nuxt to v3.6.5 ( #503 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-22 19:45:35 -08:00
renovate[bot]
60cc5c2710
chore(deps): update dependency mkdocs-material to v9.1.19 ( #497 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-22 19:44:19 -08:00
renovate[bot]
25ccd678c9
chore(deps): update typescript-eslint monorepo to v6 ( #500 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-20 11:13:42 -08:00
Pranshu Agrawal
a77b4cbe71
update "h3" verison to 1.7.1 ( #502 )
2023-07-20 11:13:18 -08:00
renovate[bot]
aae32b0d74
fix(deps): update module github.com/go-chi/chi/v5 to v5.0.10 ( #493 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-18 12:08:23 -08:00
renovate[bot]
a94b43a19e
fix(deps): update module github.com/ardanlabs/conf/v3 to v3.1.6 ( #492 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-18 12:08:05 -08:00
renovate[bot]
9a4c2df552
chore(deps): update dependency vitest to ^0.33.0 ( #494 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-18 12:07:55 -08:00
renovate[bot]
d5b89a755e
chore(deps): update actions/setup-go action to v4 ( #496 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-18 12:07:45 -08:00
renovate[bot]
a9acf62d93
chore(deps): update dependency mkdocs-material to v9.1.18 ( #491 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 17:51:13 -08:00
renovate[bot]
c896e198dd
fix(deps): update module github.com/swaggo/http-swagger to v2 ( #490 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 17:39:42 -08:00
Cappy-Bara
c538518b4b
fix: add parseDependency to swag ( #486 )
2023-07-16 17:37:56 -08:00
renovate[bot]
f66d14eeea
fix(deps): update module github.com/stretchr/testify to v1.8.4 ( #468 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 17:34:51 -08:00
renovate[bot]
bc8feac83c
chore(deps): update dependency nuxt to v3.6.3 ( #350 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 17:34:23 -08:00
renovate[bot]
40a98bcf30
fix(deps): update module modernc.org/sqlite to v1.24.0 ( #437 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 17:34:00 -08:00
renovate[bot]
045e91d9ac
fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.17 ( #470 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 17:33:35 -08:00
renovate[bot]
a80ab0f3e9
fix(deps): update module github.com/go-playground/validator/v10 to v10.14.1 ( #478 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 17:33:22 -08:00
renovate[bot]
e5d209d407
chore(deps): update dependency mkdocs-material to v9.1.15 ( #467 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-02 13:57:09 -08:00
Hayden
ef1531e561
feat: easily increment quantity ( #473 )
...
* fix vue version issue
* new patch API endpoint
* doc-gen
* new API class method for patch operations
* add quantity patch UI support
* fix typegen errors
* fix ts errors
2023-06-02 13:56:40 -08:00
renovate[bot]
4dd036abb2
chore(deps): update dependency @vite-pwa/nuxt to ^0.0.9 ( #453 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-28 10:59:57 -08:00
Hayden
81e909ccfb
chore: tidy ( #466 )
2023-05-28 10:59:44 -08:00
Hayden
0cb9d2a8e4
bump nuxt + fix CookieRef ( #465 )
2023-05-28 09:51:23 -08:00
renovate[bot]
cb16c0e829
fix(deps): update module github.com/go-playground/validator/v10 to v10.14.0 ( #462 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-23 10:43:42 -08:00
renovate[bot]
9e067ee230
fix(deps): update module github.com/stretchr/testify to v1.8.3 ( #460 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-23 10:43:34 -08:00
renovate[bot]
8b53d40a2a
chore(deps): update dependency mkdocs-material to v9.1.14 ( #461 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-23 10:42:49 -08:00
renovate[bot]
4c0ad7a5d8
chore(deps): update dependency mkdocs-material to v9.1.13 ( #457 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-16 18:24:19 -08:00
D M
66e25ba068
feat: Low-Privileged and Distroless Docker Image ( #372 )
...
* feat: use distroless image and non-root user
* fix: remove conflicts after merge
* chore: Commen the Dockerfile
* chore: Update documentation to reflect image changes
* Split docker build in latest and latest-rootless
One more job added to the publish Github Action, to build and push TAG-rootless
images.
* fix: add missing workflow
* feat: update documentation about double tags
* feat: update readme with double tags
---------
Co-authored-by: daniele <daniele@coolbyte.eu >
2023-05-13 10:38:57 -08:00
renovate[bot]
56c98e6e3a
chore(deps): update dependency @faker-js/faker to v8 ( #449 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-13 10:34:57 -08:00
renovate[bot]
01f305a98e
fix(deps): update github.com/gocarina/gocsv digest to 7f30c79 ( #448 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-13 10:34:45 -08:00
renovate[bot]
e14cdaccdd
fix(deps): update module golang.org/x/crypto to v0.9.0 ( #447 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-13 10:34:33 -08:00
renovate[bot]
4ece25b58d
chore(deps): update dependency mkdocs-material to v9.1.12 ( #444 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-13 10:34:23 -08:00
renovate[bot]
c1957bb927
chore(deps): update dependency vitest to ^0.31.0 ( #442 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-06 10:00:40 -08:00
renovate[bot]
636ca155e5
fix(deps): update module github.com/go-playground/validator/v10 to v10.13.0 ( #438 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-06 10:00:33 -08:00
renovate[bot]
17a5b43609
chore(deps): update dependency mkdocs-material to v9.1.9 ( #440 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-02 17:09:15 -08:00
renovate[bot]
b2b3ccf923
chore(deps): update dependency mkdocs-material to v9.1.8 ( #435 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-24 23:08:32 -08:00
renovate[bot]
2272c7eb6b
fix(deps): update module modernc.org/sqlite to v1.22.0 ( #427 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-24 18:30:53 -08:00
renovate[bot]
181c324dd4
chore(deps): update dependency mkdocs-material to v9.1.7 ( #432 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-24 18:30:41 -08:00
renovate[bot]
89912b18d7
fix(deps): update dependency @vueuse/router to v10 ( #418 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-21 22:54:09 -08:00
renovate[bot]
85f2af4bc3
fix(deps): update module github.com/swaggo/swag to v1.16.1 ( #426 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-21 22:53:29 -08:00
Hayden
21ad5a32c1
fix: add generic shoutrrr prefix to validators( #422 )
2023-04-16 11:21:33 -08:00
renovate[bot]
4b51a4ad9a
fix(deps): update module ariga.io/atlas to v0.10.1 ( #395 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-14 20:37:57 -08:00
renovate[bot]
dd7e634b69
fix(deps): update dependency @vueuse/nuxt to v10 ( #415 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-14 20:37:00 -08:00
renovate[bot]
351ec64bbc
fix(deps): update module github.com/rs/zerolog to v1.29.1 ( #414 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-14 20:36:14 -08:00
renovate[bot]
3a758e012f
chore(deps): update dependency vitest to ^0.30.0 ( #403 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-14 20:35:55 -08:00
renovate[bot]
c16084d99f
chore(deps): update dependency mkdocs-material to v9.1.6 ( #401 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-14 20:35:42 -08:00
renovate[bot]
5591267124
fix(deps): update module golang.org/x/crypto to v0.8.0 ( #400 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-14 20:35:27 -08:00
renovate[bot]
d46c16f01f
fix(deps): update github.com/gocarina/gocsv digest to 6445c2b ( #398 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-14 20:35:18 -08:00
zodac
18c22e8a68
Fixing minor typos ( #368 )
...
* Adding fullstops for consistency
* Fixing typos
* Fixing eslints
2023-04-14 20:34:40 -08:00
Hayden
64b3ac3e94
change safeserve -> httpkit ( #405 )
2023-04-09 10:39:43 -08:00
verybadsoldier
c36b9dcf5d
update go version in devcontainer to 1.20 to match version in go.mod ( #402 )
2023-04-09 10:38:17 -08:00
Hayden
d3b6c93b63
use ref_name
2023-04-03 14:21:54 -08:00
Hayden
3b862e36c8
fix CI
2023-04-03 14:18:08 -08:00
Hayden
f3bb86d905
change publish workflow ( #390 )
2023-04-03 14:10:45 -08:00
Hayden
4dd925caf0
fix: other minor fixes ( #388 )
...
* remove overflow-hidden on when no collapsed
* fix recently added on homescreen
* fix delete account formatting
* add manufacturer to search
* move nav button to left
2023-04-01 22:01:21 -08:00
Hayden
ced5aef6d1
fix: export child relationships ( #385 )
...
* tidy
* ensure export contains locations path
* update pnpm lock file
* fix swagger stuff
* code gen
* fix linter issue
* fix reverse order bug in test
2023-04-01 15:10:27 -08:00
Hayden
6a853c07a0
fix: various minor bugs ( #384 )
...
* fix insufficiently large max height for cards
* fix listener for resetItemDateTimes
* support YYYY/MM/DD format for imports
* fix columns in docs
* use comma deliminator
2023-04-01 14:07:44 -08:00
renovate[bot]
f0b9a0fce4
chore(deps): update dependency mkdocs-material to v9.1.5 ( #382 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-01 12:22:34 -08:00
renovate[bot]
00f09fec2f
fix(deps): update module modernc.org/sqlite to v1.21.1 ( #381 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-28 19:49:16 -08:00
renovate[bot]
6e1863b515
fix(deps): update module github.com/hay-kot/safeserve to v0.0.2 ( #378 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-28 19:49:07 -08:00
renovate[bot]
dfe2084c74
fix(deps): update github.com/gocarina/gocsv digest to 9a18a84 ( #375 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-28 19:48:59 -08:00
renovate[bot]
0825f055a7
fix(deps): update module github.com/swaggo/swag to v1.8.12 ( #380 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-28 19:48:49 -08:00
Hayden
e1e04d49aa
update git ignore
2023-03-25 11:20:38 -08:00
Hayden
9020587c9e
set working directory
2023-03-25 11:17:07 -08:00
Hayden
bd0db1ea37
remove go tidy
2023-03-25 11:13:23 -08:00
Hayden
d2985ff72c
go tidy
2023-03-25 11:12:48 -08:00
Hayden
8c57ff841e
fix: redirect issues for authorized users ( #374 )
2023-03-25 11:07:22 -08:00
renovate[bot]
0264bfb8c1
chore(deps): update dependency mkdocs-material to v9.1.4 ( #371 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-24 08:03:56 -08:00
Hayden
5dd6844536
feat: change shit to things ( #369 )
2023-03-23 19:10:19 -08:00
Hayden
0f8db862b4
feat: pwa support ( #366 )
...
* add PWA support
* fix broken URLs for query
* remove unused variable
* restore authURL
2023-03-23 10:27:12 -08:00
Hayden
be6b5c9c56
run frontend build before publish via goreleaser
2023-03-23 09:41:15 -08:00
Hayden
faed343eda
fix: cookie-auth-issues ( #365 )
...
* fix session clearing on error
* use singleton context to manage user state
* implement remember-me functionality
* fix errors
* fix more errors
2023-03-22 21:52:25 -08:00
Hayden
ed1230e17d
feat: goreleaser + remove cgo dependency ( #363 )
...
* wip: goreleaser
* update image path
* spelling
* set working dir
* change main.go
* remove unused field
* drop cgo requirement
* remove unused workflow step
* generate code
* drop cgo from docker file
* update publish workflow
* annotate as unfinished
2023-03-22 20:49:49 -08:00
zodac
2d768e2b9c
feat Adding NZD currency ( #360 )
...
* Adding NZD as currency option
* Updating frontend
* Sorting alphabetically
* Fixing typo
2023-03-22 20:26:51 -08:00
Hayden
40e76bac0c
feat: filter details for zero values ( #364 )
...
* filter details for zero values
* ensure exhaustive checks
* update event listener to only bind when collapsable
2023-03-22 19:05:13 -08:00
Hayden
840d220d4f
feat: use notifiers on schedule ( #362 )
...
* fix potential memory leak with time.After
* add new background service to manage scheduled notifications
* update docs
* remove old js reference
* closes #278
* tidy
2023-03-21 11:32:48 -08:00
renovate[bot]
975e636fb6
fix(deps): update module github.com/swaggo/swag to v1.8.11 ( #361 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-21 11:27:40 -08:00
renovate[bot]
d1076baf84
fix(deps): update module github.com/swaggo/http-swagger to v2 ( #358 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-21 11:26:46 -08:00
renovate[bot]
40fcef4e9b
chore(deps): update dependency typescript to v5 ( #355 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-21 11:23:30 -08:00
Hayden
97fb94d231
fix: refactoring errors ( #359 )
...
* #352 - require one date to be set to save
* fix many type regressions
2023-03-20 21:48:22 -08:00
renovate[bot]
4a8ba6231d
fix(deps): update module entgo.io/ent to v0.11.10 ( #328 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 20:32:48 -08:00
Hayden
db80f8a159
chore: refactor api endpoints ( #339 )
...
* move typegen code
* update taskfile to fix code-gen caches and use 'dir' attribute
* enable dumping stack traces for errors
* log request start and stop
* set zerolog stack handler
* fix routes function
* refactor context adapters to use requests directly
* change some method signatures to support GID
* start requiring validation tags
* first pass on updating handlers to use adapters
* add errs package
* code gen
* tidy
* rework API to use external server package
2023-03-20 20:32:10 -08:00
renovate[bot]
184b494fc3
fix(deps): update module github.com/go-playground/validator/v10 to v10.12.0 ( #357 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 18:43:56 -08:00
renovate[bot]
5a3fa23332
fix(deps): update module github.com/swaggo/http-swagger to v1.3.4 ( #356 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 18:43:49 -08:00
renovate[bot]
ef0690d511
chore(deps): update actions/setup-go action to v4 ( #351 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 18:43:33 -08:00
renovate[bot]
9e55c880f6
chore(deps): update dependency @types/dompurify to v3 ( #346 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 18:43:04 -08:00
renovate[bot]
cb9b20e2d2
fix(deps): update module github.com/ardanlabs/conf/v3 to v3.1.5 ( #341 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 18:42:49 -08:00
renovate[bot]
a79e780b4e
chore(deps): update dependency mkdocs-material to v9.1.3 ( #340 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 18:42:38 -08:00
renovate[bot]
90cbb9bfd1
fix(deps): update module ariga.io/atlas to v0.10.0 ( #327 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-20 18:42:25 -08:00
Vitalij Dovhanyc
dc08dbbd7a
feat: add czech currency ( #323 )
2023-03-20 18:42:11 -08:00
renovate[bot]
1f47d96e4c
chore(deps): update dependency nuxt to v3.2.3 ( #326 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-07 10:12:32 -09:00
Hayden
23b5892aef
feat: Notifiers CRUD ( #337 )
...
* introduce scaffold for new models
* wip: shoutrrr wrapper (may remove)
* update schema files
* gen: ent code
* gen: migrations
* go mod tidy
* add group_id to notifier
* db migration
* new mapper helpers
* notifier repo
* introduce experimental adapter pattern for hdlrs
* refactor adapters to fit more common use cases
* new routes for notifiers
* update errors to fix validation panic
* go tidy
* reverse checkbox label display
* wip: notifiers UI
* use badges instead of text
* improve documentation
* add scaffold schema reference
* remove notifier service
* refactor schema folder
* support group edges via scaffold
* delete test file
* include link to API docs
* audit and update documentation + improve format
* refactor schema edges
* refactor
* add custom validator
* set validate + order fields by name
* fix failing tests
2023-03-06 21:18:58 -09:00
renovate[bot]
2665b666f1
fix(deps): update github.com/gocarina/gocsv digest to 70c27cb ( #308 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-06 10:09:17 -09:00