Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8bd35b3
New translations en.json (French)
Flomp Oct 14, 2025
39eb35a
New translations en.json (Dutch)
Flomp Oct 16, 2025
ebaccb7
New translations en.json (Dutch)
Flomp Oct 21, 2025
ee8f1d8
New translations en.json (Russian)
Flomp Nov 21, 2025
5780367
New translations en.json (Russian)
Flomp Nov 21, 2025
cfe32d6
New translations en.json (French)
Flomp Nov 22, 2025
6e597e2
New translations en.json (French)
Flomp Nov 22, 2025
48a38f4
New translations en.json (Spanish)
Flomp Dec 2, 2025
1a58ebf
New translations en.json (Spanish)
Flomp Dec 2, 2025
a5f2428
New translations en.json (Czech)
Flomp Dec 15, 2025
fa87693
New translations en.json (Czech)
Flomp Dec 15, 2025
e1d4c04
New translations en.json (Czech)
Flomp Dec 16, 2025
5174b98
New translations en.json (Czech)
Flomp Dec 16, 2025
9dd8124
New translations en.json (Czech)
Flomp Dec 16, 2025
b4d761a
New translations en.json (Czech)
Flomp Dec 16, 2025
bcf94e5
New translations en.json (Czech)
Flomp Dec 16, 2025
23a9287
New translations en.json (Czech)
Flomp Dec 16, 2025
d823f2a
New translations en.json (Czech)
Flomp Dec 16, 2025
8ac113c
New translations en.json (Czech)
Flomp Dec 16, 2025
260bf87
New translations en.json (Czech)
Flomp Dec 16, 2025
41223b4
New translations en.json (Czech)
Flomp Dec 17, 2025
bcd3113
New translations en.json (German)
Flomp Dec 29, 2025
7359e15
New translations en.json (French)
Flomp Jan 1, 2026
3b4f61a
New translations en.json (German)
Flomp Jan 5, 2026
a5feb1c
New translations en.json (German)
Flomp Jan 5, 2026
75a5213
New translations en.json (German)
Flomp Jan 6, 2026
11099f6
New translations en.json (German)
Flomp Jan 6, 2026
e67e07d
Merge remote-tracking branch 'origin/main' into i10n_main
Feb 2, 2026
bcbb976
fixes valhalla spelling
Feb 2, 2026
db127cf
Added Norwegian translation (#668)
palhaland Feb 2, 2026
e26d036
adds norwegian
Feb 2, 2026
306e45c
minor fixes in de
Feb 2, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions db/migrations/1770043888_updated_settings.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
package migrations

import (
"github.com/pocketbase/pocketbase/core"
m "github.com/pocketbase/pocketbase/migrations"
)

func init() {
m.Register(func(app core.App) error {
collection, err := app.FindCollectionByNameOrId("uavt73rsqcn1n13")
if err != nil {
return err
}

// update field
if err := collection.Fields.AddMarshaledJSONAt(1, []byte(`{
"hidden": false,
"id": "0sepzvkh",
"maxSelect": 1,
"name": "language",
"presentable": false,
"required": false,
"system": false,
"type": "select",
"values": [
"en",
"de",
"fr",
"hu",
"it",
"nl",
"pl",
"pt",
"zh",
"es",
"eu",
"ru",
"no"
]
}`)); err != nil {
return err
}

return app.Save(collection)
}, func(app core.App) error {
collection, err := app.FindCollectionByNameOrId("uavt73rsqcn1n13")
if err != nil {
return err
}

// update field
if err := collection.Fields.AddMarshaledJSONAt(1, []byte(`{
"hidden": false,
"id": "0sepzvkh",
"maxSelect": 1,
"name": "language",
"presentable": false,
"required": false,
"system": false,
"type": "select",
"values": [
"en",
"de",
"fr",
"hu",
"it",
"nl",
"pl",
"pt",
"zh",
"es",
"eu",
"ru"
]
}`)); err != nil {
return err
}

return app.Save(collection)
})
}
1 change: 1 addition & 0 deletions web/src/lib/i18n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ register('fr', () => import('./locales/fr.json'))
register('hu', () => import('./locales/hu.json'))
register('it', () => import('./locales/it.json'))
register('nl', () => import('./locales/nl.json'))
register('no', () => import('./locales/no.json'))
register('pl', () => import('./locales/pl.json'))
register('pt', () => import('./locales/pt.json'))
register('ru', () => import('./locales/ru.json'))
Expand Down
Loading
Loading