diff options
| author | Sondre <[email protected]> | 2026-01-22 13:47:19 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-22 06:47:19 -0600 |
| commit | 8427f40e8dc1ca6e187af789387a6e756cea557f (patch) | |
| tree | 23c3736145eb97a61dc4d0277081fcfbe387cbab /packages/ui/src | |
| parent | e9c6a4a2d4b853014dfd965c9e8451adfc2f5c6d (diff) | |
| download | opencode-8427f40e8dc1ca6e187af789387a6e756cea557f.tar.gz opencode-8427f40e8dc1ca6e187af789387a6e756cea557f.zip | |
feat: Add support for Norwegian translations (#10018)
Diffstat (limited to 'packages/ui/src')
| -rw-r--r-- | packages/ui/src/i18n/no.ts | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/packages/ui/src/i18n/no.ts b/packages/ui/src/i18n/no.ts new file mode 100644 index 000000000..4b9937076 --- /dev/null +++ b/packages/ui/src/i18n/no.ts @@ -0,0 +1,95 @@ +import { dict as en } from "./en" +type Keys = keyof typeof en + +export const dict: Record<Keys, string> = { + "ui.sessionReview.title": "Sesjonsendringer", + "ui.sessionReview.diffStyle.unified": "Samlet", + "ui.sessionReview.diffStyle.split": "Delt", + "ui.sessionReview.expandAll": "Utvid alle", + "ui.sessionReview.collapseAll": "Fold sammen alle", + + "ui.sessionTurn.steps.show": "Vis trinn", + "ui.sessionTurn.steps.hide": "Skjul trinn", + "ui.sessionTurn.summary.response": "Svar", + "ui.sessionTurn.diff.showMore": "Vis flere endringer ({{count}})", + + "ui.sessionTurn.retry.retrying": "Prøver igjen", + "ui.sessionTurn.retry.inSeconds": "om {{seconds}}s", + + "ui.sessionTurn.status.delegating": "Delegerer arbeid", + "ui.sessionTurn.status.planning": "Planlegger neste trinn", + "ui.sessionTurn.status.gatheringContext": "Samler inn kontekst", + "ui.sessionTurn.status.searchingCodebase": "Søker i kodebasen", + "ui.sessionTurn.status.searchingWeb": "Søker på nettet", + "ui.sessionTurn.status.makingEdits": "Gjør endringer", + "ui.sessionTurn.status.runningCommands": "Kjører kommandoer", + "ui.sessionTurn.status.thinking": "Tenker", + "ui.sessionTurn.status.thinkingWithTopic": "Tenker - {{topic}}", + "ui.sessionTurn.status.gatheringThoughts": "Samler tanker", + "ui.sessionTurn.status.consideringNextSteps": "Vurderer neste trinn", + + "ui.messagePart.diagnostic.error": "Feil", + "ui.messagePart.title.edit": "Rediger", + "ui.messagePart.title.write": "Skriv", + "ui.messagePart.option.typeOwnAnswer": "Skriv ditt eget svar", + "ui.messagePart.review.title": "Gjennomgå svarene dine", + + "ui.list.loading": "Laster", + "ui.list.empty": "Ingen resultater", + "ui.list.clearFilter": "Tøm filter", + "ui.list.emptyWithFilter.prefix": "Ingen resultater for", + "ui.list.emptyWithFilter.suffix": "", + + "ui.messageNav.newMessage": "Ny melding", + + "ui.textField.copyToClipboard": "Kopier til utklippstavlen", + "ui.textField.copied": "Kopiert", + + "ui.imagePreview.alt": "Bildeforhåndsvisning", + + "ui.tool.read": "Les", + "ui.tool.list": "Liste", + "ui.tool.glob": "Glob", + "ui.tool.grep": "Grep", + "ui.tool.webfetch": "Webhenting", + "ui.tool.shell": "Shell", + "ui.tool.patch": "Patch", + "ui.tool.todos": "Gjøremål", + "ui.tool.todos.read": "Les gjøremål", + "ui.tool.questions": "Spørsmål", + "ui.tool.agent": "{{type}}-agent", + + "ui.common.file.one": "fil", + "ui.common.file.other": "filer", + "ui.common.question.one": "spørsmål", + "ui.common.question.other": "spørsmål", + + "ui.common.add": "Legg til", + "ui.common.cancel": "Avbryt", + "ui.common.confirm": "Bekreft", + "ui.common.dismiss": "Avvis", + "ui.common.close": "Lukk", + "ui.common.next": "Neste", + "ui.common.submit": "Send inn", + + "ui.permission.deny": "Avslå", + "ui.permission.allowAlways": "Tillat alltid", + "ui.permission.allowOnce": "Tillat én gang", + + "ui.message.expand": "Utvid melding", + "ui.message.collapse": "Skjul melding", + "ui.message.copy": "Kopier", + "ui.message.copied": "Kopiert!", + "ui.message.attachment.alt": "vedlegg", + + "ui.patch.action.deleted": "Slettet", + "ui.patch.action.created": "Opprettet", + "ui.patch.action.moved": "Flyttet", + "ui.patch.action.patched": "Oppdatert", + + "ui.question.subtitle.answered": "{{count}} besvart", + "ui.question.answer.none": "(ingen svar)", + "ui.question.review.notAnswered": "(ikke besvart)", + "ui.question.multiHint": "(velg alle som gjelder)", + "ui.question.custom.placeholder": "Skriv svaret ditt...", +}
\ No newline at end of file |
