Skip to content

Commit a79d37f

Browse files
committed
fix(translations): fixed some translations
1 parent 96a20a9 commit a79d37f

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/app/core/interceptors/auth.interceptor.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ export const authInterceptor: HttpInterceptorFn = (
1212
const cookieService = inject(CookieService);
1313

1414
const csrfToken = cookieService.get('api-csrf');
15+
const staging = cookieService.get('osf_staging4');
16+
console.log(staging);
1517

1618
if (!req.url.includes('/api.crossref.org/funders')) {
1719
const headers: Record<string, string> = {

src/app/features/registries/components/review/review.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<section class="flex flex-column flex-1 bg-white p-5 gap-4 w-full">
22
<p-card>
3-
<h2 class="mb-4">{{ 'navigation.registration.metadata' | translate }}</h2>
3+
<h2 class="mb-4">{{ 'navigation.metadata' | translate }}</h2>
44

55
<div class="mb-4">
66
<h4 class="mb-2">{{ 'common.labels.title' | translate }}</h4>
@@ -25,7 +25,7 @@ <h4 class="mb-2">{{ 'common.labels.description' | translate }}</h4>
2525
</div>
2626

2727
<div class="mb-4">
28-
<h4 class="mb-2">{{ 'navigation.registration.contributors' | translate }}</h4>
28+
<h4 class="mb-2">{{ 'navigation.contributors' | translate }}</h4>
2929
<div class="flex flex-wrap gap-2">
3030
@for (contributor of contributors(); let last = $last; track contributor.id) {
3131
<span>

src/app/features/registry/pages/registry-components/registry-components.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<section class="flex flex-column flex-1">
2-
<osf-sub-header [title]="'navigation.registration.components' | translate" />
2+
<osf-sub-header [title]="'navigation.components' | translate" />
33

44
<div class="flex flex-column gap-6 p-4 bg-white">
55
<section class="flex flex-column gap-4">

0 commit comments

Comments
 (0)