- Items per page
+ Items per page
@@ -31,36 +31,36 @@
- Saved views
+ Saved views
-
No saved views defined.
+
No saved views defined.
diff --git a/src-ui/src/app/components/manage/settings/settings.component.ts b/src-ui/src/app/components/manage/settings/settings.component.ts
index f839010b1..bec85e039 100644
--- a/src-ui/src/app/components/manage/settings/settings.component.ts
+++ b/src-ui/src/app/components/manage/settings/settings.component.ts
@@ -46,14 +46,14 @@ export class SettingsComponent implements OnInit {
this.savedViewService.delete(savedView).subscribe(() => {
this.savedViewGroup.removeControl(savedView.id.toString())
this.savedViews.splice(this.savedViews.indexOf(savedView), 1)
- this.toastService.showToast(Toast.make("Information", `Saved view "${savedView.name} deleted.`))
+ this.toastService.showToast(Toast.make("Information", $localize`Saved view "${savedView.name} deleted.`))
})
}
private saveLocalSettings() {
localStorage.setItem(GENERAL_SETTINGS.DOCUMENT_LIST_SIZE, this.settingsForm.value.documentListItemPerPage)
this.documentListViewService.updatePageSize()
- this.toastService.showToast(Toast.make("Information", "Settings saved successfully."))
+ this.toastService.showToast(Toast.make("Information", $localize`Settings saved successfully.`))
}
saveSettings() {
@@ -65,7 +65,7 @@ export class SettingsComponent implements OnInit {
this.savedViewService.patchMany(x).subscribe(s => {
this.saveLocalSettings()
}, error => {
- this.toastService.showToast(Toast.makeError(`Error while storing settings on server: ${JSON.stringify(error.error)}`))
+ this.toastService.showToast(Toast.makeError($localize`Error while storing settings on server: ${JSON.stringify(error.error)}`))
})
} else {
this.saveLocalSettings()
diff --git a/src-ui/src/app/components/not-found/not-found.component.html b/src-ui/src/app/components/not-found/not-found.component.html
index 6b21cf3ba..4d7e0f7e0 100644
--- a/src-ui/src/app/components/not-found/not-found.component.html
+++ b/src-ui/src/app/components/not-found/not-found.component.html
@@ -4,5 +4,5 @@
- 404 Not Found
+ 404 Not Found
\ No newline at end of file
diff --git a/src-ui/src/app/components/search/search.component.html b/src-ui/src/app/components/search/search.component.html
index de6f0133f..ba2253401 100644
--- a/src-ui/src/app/components/search/search.component.html
+++ b/src-ui/src/app/components/search/search.component.html
@@ -1,7 +1,7 @@
-
Invalid search query: {{errorMessage}}
+
Invalid search query: {{errorMessage}}
Showing documents similar to
diff --git a/src-ui/src/app/data/matching-model.ts b/src-ui/src/app/data/matching-model.ts
index 698c32da5..dd9ae95ff 100644
--- a/src-ui/src/app/data/matching-model.ts
+++ b/src-ui/src/app/data/matching-model.ts
@@ -9,12 +9,12 @@ export const MATCH_FUZZY = 5
export const MATCH_AUTO = 6
export const MATCHING_ALGORITHMS = [
- {id: MATCH_ANY, name: "Any"},
- {id: MATCH_ALL, name: "All"},
- {id: MATCH_LITERAL, name: "Literal"},
- {id: MATCH_REGEX, name: "Regular Expression"},
- {id: MATCH_FUZZY, name: "Fuzzy Match"},
- {id: MATCH_AUTO, name: "Auto"},
+ {id: MATCH_ANY, name: $localize`Any`},
+ {id: MATCH_ALL, name: $localize`All`},
+ {id: MATCH_LITERAL, name: $localize`Literal`},
+ {id: MATCH_REGEX, name: $localize`Regular expression`},
+ {id: MATCH_FUZZY, name: $localize`Fuzzy match`},
+ {id: MATCH_AUTO, name: $localize`Auto`},
]
export interface MatchingModel extends ObjectWithId {
diff --git a/src-ui/src/app/services/rest/document.service.ts b/src-ui/src/app/services/rest/document.service.ts
index c132fa856..ec5c7689b 100644
--- a/src-ui/src/app/services/rest/document.service.ts
+++ b/src-ui/src/app/services/rest/document.service.ts
@@ -13,13 +13,13 @@ import { TagService } from './tag.service';
import { FILTER_RULE_TYPES } from 'src/app/data/filter-rule-type';
export const DOCUMENT_SORT_FIELDS = [
- { field: "correspondent__name", name: "Correspondent" },
- { field: "document_type__name", name: "Document type" },
- { field: 'title', name: 'Title' },
- { field: 'archive_serial_number', name: 'ASN' },
- { field: 'created', name: 'Created' },
- { field: 'added', name: 'Added' },
- { field: 'modified', name: 'Modified' }
+ { field: "correspondent__name", name: $localize`Correspondent` },
+ { field: "document_type__name", name: $localize`Document type` },
+ { field: 'title', name: $localize`Title` },
+ { field: 'archive_serial_number', name: $localize`ASN` },
+ { field: 'created', name: $localize`Created` },
+ { field: 'added', name: $localize`Added` },
+ { field: 'modified', name: $localize`Modified` }
]
@Injectable({