From 91b9831548157f3cf1791f2e38254ca8067da9c3 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sat, 22 Apr 2023 09:30:24 -0700
Subject: [PATCH] Add Catalan translation
---
src-ui/angular.json | 1 +
src-ui/messages.xlf | 91 +++++++++++----------
src-ui/src/app/app.module.ts | 2 +
src-ui/src/app/services/settings.service.ts | 6 ++
src/paperless/settings.py | 1 +
5 files changed, 59 insertions(+), 42 deletions(-)
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
+ 165The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.src/app/app.component.ts
- 176
+ 178Any 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
+ 189Tags, 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
+ 199File 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
+ 209Check 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
+ 219Thank you! 🙏src/app/app.component.ts
- 222
+ 229There 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
+ 231Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!src/app/app.component.ts
- 226
+ 233Initiating upload...src/app/app.component.ts
- 281
+ 288
@@ -2070,7 +2070,7 @@
Privatesrc/app/components/common/input/select/select.component.ts
- 36
+ 57src/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,597Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 611
+ 618src/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
+ 619This operation cannot be undone.src/app/components/document-detail/document-detail.component.ts
- 613
+ 620src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -2841,7 +2841,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 615
+ 622src/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 thatsrc/app/guards/permissions.guard.ts
- 31
+ 35
@@ -5104,158 +5104,165 @@
171
+
+ Catalan
+
+ src/app/services/settings.service.ts
+ 177
+
+ Czechsrc/app/services/settings.service.ts
- 177
+ 183Danishsrc/app/services/settings.service.ts
- 183
+ 189Germansrc/app/services/settings.service.ts
- 189
+ 195English (GB)src/app/services/settings.service.ts
- 195
+ 201Spanishsrc/app/services/settings.service.ts
- 201
+ 207Frenchsrc/app/services/settings.service.ts
- 207
+ 213Italiansrc/app/services/settings.service.ts
- 213
+ 219Luxembourgishsrc/app/services/settings.service.ts
- 219
+ 225Dutchsrc/app/services/settings.service.ts
- 225
+ 231Polishsrc/app/services/settings.service.ts
- 231
+ 237Portuguese (Brazil)src/app/services/settings.service.ts
- 237
+ 243Portuguesesrc/app/services/settings.service.ts
- 243
+ 249Romaniansrc/app/services/settings.service.ts
- 249
+ 255Russiansrc/app/services/settings.service.ts
- 255
+ 261Sloveniansrc/app/services/settings.service.ts
- 261
+ 267Serbiansrc/app/services/settings.service.ts
- 267
+ 273Swedishsrc/app/services/settings.service.ts
- 273
+ 279Turkishsrc/app/services/settings.service.ts
- 279
+ 285Chinese Simplifiedsrc/app/services/settings.service.ts
- 285
+ 291ISO 8601src/app/services/settings.service.ts
- 302
+ 308Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 413
+ 419Unable 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")),