diff --git a/src-ui/angular.json b/src-ui/angular.json index 2dcf486be..836b2a290 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -18,6 +18,7 @@ "locales": { "ar-AR": "src/locale/messages.ar_AR.xlf", "be-BY": "src/locale/messages.be_BY.xlf", + "ca-ES": "src/locale/messages.ca_ES.xlf", "cs-CZ": "src/locale/messages.cs_CZ.xlf", "da-DK": "src/locale/messages.da_DK.xlf", "de-DE": "src/locale/messages.de_DE.xlf", diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 1d34d690e..91c11de15 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -347,70 +347,70 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Thank you! 🙏 src/app/app.component.ts - 222 + 229 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Initiating upload... src/app/app.component.ts - 281 + 288 @@ -2070,7 +2070,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2782,17 +2782,17 @@ - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 591 + 595,597 Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 611 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2803,14 +2803,14 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 612 + 619 This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 613 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2841,7 +2841,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 615 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2868,7 +2868,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 623 + 630 @@ -2877,7 +2877,7 @@ )"/> src/app/components/document-detail/document-detail.component.ts - 634,636 + 641,643 @@ -4907,7 +4907,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 @@ -5104,158 +5104,165 @@ 171 + + Catalan + + src/app/services/settings.service.ts + 177 + + Czech src/app/services/settings.service.ts - 177 + 183 Danish src/app/services/settings.service.ts - 183 + 189 German src/app/services/settings.service.ts - 189 + 195 English (GB) src/app/services/settings.service.ts - 195 + 201 Spanish src/app/services/settings.service.ts - 201 + 207 French src/app/services/settings.service.ts - 207 + 213 Italian src/app/services/settings.service.ts - 213 + 219 Luxembourgish src/app/services/settings.service.ts - 219 + 225 Dutch src/app/services/settings.service.ts - 225 + 231 Polish src/app/services/settings.service.ts - 231 + 237 Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portuguese src/app/services/settings.service.ts - 243 + 249 Romanian src/app/services/settings.service.ts - 249 + 255 Russian src/app/services/settings.service.ts - 255 + 261 Slovenian src/app/services/settings.service.ts - 261 + 267 Serbian src/app/services/settings.service.ts - 267 + 273 Swedish src/app/services/settings.service.ts - 273 + 279 Turkish src/app/services/settings.service.ts - 279 + 285 Chinese Simplified src/app/services/settings.service.ts - 285 + 291 ISO 8601 src/app/services/settings.service.ts - 302 + 308 Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index 446f63254..51204ad7e 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -91,6 +91,7 @@ import { IfObjectPermissionsDirective } from './directives/if-object-permissions import localeAr from '@angular/common/locales/ar' import localeBe from '@angular/common/locales/be' +import localeCa from '@angular/common/locales/ca' import localeCs from '@angular/common/locales/cs' import localeDa from '@angular/common/locales/da' import localeDe from '@angular/common/locales/de' @@ -114,6 +115,7 @@ import { PermissionsFormComponent } from './components/common/input/permissions/ registerLocaleData(localeAr) registerLocaleData(localeBe) +registerLocaleData(localeCa) registerLocaleData(localeCs) registerLocaleData(localeDa) registerLocaleData(localeDe) diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index 4767162f6..1361d5cad 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -172,6 +172,12 @@ export class SettingsService { englishName: 'Belarusian', dateInputFormat: 'dd.mm.yyyy', }, + { + code: 'ca-es', + name: $localize`Catalan`, + englishName: 'Catalan', + dateInputFormat: 'dd/mm/yyyy', + }, { code: 'cs-cz', name: $localize`Czech`, diff --git a/src/paperless/settings.py b/src/paperless/settings.py index bcf616ef3..4930a168c 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -542,6 +542,7 @@ LANGUAGES = [ ("en-us", _("English (US)")), # needs to be first to act as fallback language ("ar-ar", _("Arabic")), ("be-by", _("Belarusian")), + ("ca-es", _("Catalan")), ("cs-cz", _("Czech")), ("da-dk", _("Danish")), ("de-de", _("German")),