diff options
Diffstat (limited to 'apps/projects/src/app/lib/i18n')
| -rw-r--r-- | apps/projects/src/app/lib/i18n/i18n-types.ts | 16 | ||||
| -rw-r--r-- | apps/projects/src/app/lib/i18n/nb/index.ts | 8 |
2 files changed, 20 insertions, 4 deletions
diff --git a/apps/projects/src/app/lib/i18n/i18n-types.ts b/apps/projects/src/app/lib/i18n/i18n-types.ts index f9fd9cc..b0031f6 100644 --- a/apps/projects/src/app/lib/i18n/i18n-types.ts +++ b/apps/projects/src/app/lib/i18n/i18n-types.ts @@ -117,6 +117,10 @@ type RootTranslation = { * No categories */ noCategories: string + /** + * Categories + */ + categories: string } settingsLabelsTile: { /** @@ -152,6 +156,10 @@ type RootTranslation = { * No labels */ noLabels: string + /** + * Labels + */ + labels: string } entryForm: { /** @@ -516,6 +524,10 @@ export type TranslationFunctions = { * No categories */ noCategories: () => LocalizedString + /** + * Categories + */ + categories: () => LocalizedString } settingsLabelsTile: { /** @@ -551,6 +563,10 @@ export type TranslationFunctions = { * No labels */ noLabels: () => LocalizedString + /** + * Labels + */ + labels: () => LocalizedString } entryForm: { /** diff --git a/apps/projects/src/app/lib/i18n/nb/index.ts b/apps/projects/src/app/lib/i18n/nb/index.ts index af3a487..28e4bc1 100644 --- a/apps/projects/src/app/lib/i18n/nb/index.ts +++ b/apps/projects/src/app/lib/i18n/nb/index.ts @@ -104,16 +104,16 @@ const nb: Translation = { hourSingleChar: "t", minSingleChar: "m", confirmDeleteEntry: "Er du sikker på at du vil slette denne raden?", - newEntry: "Ny rad", + newEntry: "Ny tidsoppføring", editEntry: "Rediger rad", deleteEntry: "Slett rad", loggedTimeToday: "Registrert tid hittil idag", currentTime: "Klokken", loading: "Laster", stopwatch: "Stoppeklokke", - todayEntries: "Dagens rader", - noEntriesToday: "Ingen rader i dag", - refreshTodayEntries: "Last inn dagens rader på nytt", + todayEntries: "Dagens tidsoppføringer", + noEntriesToday: "Ingen oppføringer i dag", + refreshTodayEntries: "Last inn dagens tidsoppføringer på nytt", category: "Kategori", timespan: "Tidsrom", }, |
