-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #418 from MikLay/norwegian-translation
Add Norwegian translation
- Loading branch information
Showing
5 changed files
with
28 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import type { TranslationsType } from './utils' | ||
|
||
const noNO: TranslationsType = { | ||
save: 'Lagre', | ||
selectSingle: 'Velg dato', | ||
selectMultiple: 'Velg datoer', | ||
selectRange: 'Velg periode', | ||
notAccordingToDateFormat: (inputFormat) => | ||
`Datoformatet må være ${inputFormat}`, | ||
mustBeHigherThan: (date) => `Må være senere enn ${date}`, | ||
mustBeLowerThan: (date) => `Må være tidligere enn ${date}`, | ||
mustBeBetween: (startDate, endDate) => | ||
`Må være mellom ${startDate} - ${endDate}`, | ||
dateIsDisabled: 'Denne dagen er ikke tillatt', | ||
previous: 'Forrige', | ||
next: 'Neste', | ||
typeInDate: 'Skriv inn dato', | ||
pickDateFromCalendar: 'Velg dato fra kalenderen', | ||
close: 'Lukk', | ||
hour: 'Time', | ||
minute: 'Minutt', | ||
} | ||
export default noNO |
This file was deleted.
Oops, something went wrong.