localization = (function () { "use strict"; var dict = { "Remove": "Fjern", "Select file": "Vælg fil", "Select files": "Vælg filer", "Replace": "Erstat", "Saved {0}": "Sidst gemt {0}", "Too many files selected - you can not select more than {0} {1} for this field.": "For mange filer er valgt - der kan ikke vælges mere end {0} {1} til dette felt.", "file": "fil", "files": "filer", "The file is too large - you can not upload more than {0} KB.": "Dokumentet er for stort - der kan ikke uploades mere end {0} KB.", "Do you want to automatically mark your current location?\n\nSelect cancel to mark your location manually.": "Vil du markere din aktuelle placering?\n\nVælg fortryd for at foretage markering manuelt på kortet.", "The website does not have access to your current location (this can be changed in your browsers settings).\n\nSelect your location manually from the map.": "Siden har ikke tilladelse til at bruge din aktuelle placering (dette kan ændres i browserens indstillinger).\n\nKlik på kortet for at angive en placering.", "Unable to detect your location.": "Kan ikke bestemme aktuel placering.", "The address is not within the valid area.": "Adressen er ikke inden for kommunens grænser.", "Unknown location.": "Ukendt sted.", "You can only select {0} location(s).": "Der kan kun angives {0} placering(er).", "You must zoom in closer in order for the selected location to be accurate.": "Der skal zoomes længere ind for at få tilstrækkelig præcis angivelse af placering.", "The selected location is not within the valid area.": "Den valgte placering er uden for kommunen.", "Zoom in": "Zoom ind", "Zoom out": "Zoom ud", "Add marker": "Tilføj markør", "Remove marker": "Fjern markør", "Move marker here": "Flyt markør til her", "Center map on marker": "Centrer kort ved markøren", "Center map here": "Centrer kort her", "The selected document(s) ({0} KB) would cause the combined size of all documents to exceed the combined maximum of {1} KB.": "Valgte dokument(er) ({0} KB) ville få den samlede størrelse for alle dokumenter til at overskride det samlede maksimum på {1} KB.", "A document was too large ({0} KB). The allowed size limit for this field is {1} KB.": "Et dokument var for stort ({0} KB). Den tilladte filstørrelse for dette felt er {1} KB.", "entry": "indtastning", "entries": "indtastninger", "Hide": "Skjul", "Show": "Vis", "Are you sure you want to remove this entry?": "Er du sikker på, at du vil fjerne denne indtastning?", "Illegal email address.": "Ugyldig e-mailadresse.", "Do you want to save your contactinformation?": "Vil du gemme dine kontaktoplysninger til næste gang?", "Entry contains errors": "Der er fejl i denne indtastning", "Entries contain errors": "Der er fejl i indtastningerne", "Are you sure you want to log out?\n\nAny unsubmitted data will be saved for {0} days.": "Er du sikker på at du vil logge ud?\n\nInformationer der ikke er blevet indberettet vil blive husket i {0} dage.", "Are you sure you want to cancel?\n\nAny unsubmitted information will be lost.": "Er du sikker på at du vil afbryde?\n\nIndtastede informationer vil blive tabt.", "YearSuffix": "YearSuffix", "CloseDatePicker": "Luk", "\u003cPrev": "\u003cForrig", "Next\u003e": "Næste\u003e", "Today": "Idag", "Week": "Uge", "Monday": "Mandag", "Tuesday": "Tirsdag", "Wednesday": "Onsdag", "Thursday": "Torsdag", "Friday": "Fredag", "Saturday": "Lørdag", "Sunday": "Søndag", "Mon": "Man", "Tue": "Tir", "Wed": "Ons", "Thu": "Tor", "Fri": "Fre", "Sat": "Lør", "Sun": "Søn", "Mo": "Ma", "Tu": "Ti", "We": "On", "Th": "To", "Fr": "Fr", "Sa": "Lø", "Su": "Sø", "January": "Januar", "February": "Febuar", "March": "Marts", "April": "April", "June": "Juni", "July": "Juli", "August": "August", "September": "September", "October": "Oktober", "November": "November", "December": "December", "Jan": "Jan", "Feb": "Feb", "Mar": "Mar", "Apr": "Apr", "May": "Maj", "Jun": "Jun", "Jul": "Jul", "Aug": "Aug", "Sep": "Sep", "Oct": "Okt", "Nov": "Nov", "Dec": "Dec", "\u0027{0}\u0027 cannot be before \u0027{1}\u0027": "\u0027{0}\u0027 kan ikke være før \u0027{1}\u0027", "\u0027{0}\u0027 cannot be after \u0027{1}\u0027": "\u0027{0}\u0027 kan ikke være efter \u0027{1}\u0027", "Show _MENU_ entries": "Vis _MENU_ linjer", "No matching records found": "Ingen rækker matcher søgningen", "Showing _START_ to _END_ of _TOTAL_ entries": "Viser _START_ til _END_ af _TOTAL_ rækker", "Showing 0 to 0 of 0 entries": "Viser 0 til 0 af 0 rækker", "(filtered from _MAX_ total entries)": "(filtreret fra _MAX_ rækker)", "Previous": "Forrige", "Last": "Sidste", "First": "Første", "Next": "Næste", ": activate to sort column ascending": ": aktivér for stigende sortering", ": activate to sort column descending": ": aktivér for faldende sortering", "No data available in the table": "Ingen data tilgængelige i tabellen", "Search:": "Søg:", }; function formatString(format, args) { for (var i = 0; i < args.length; i++) { format = format.replace('{' + i + '}', args[i]) } return format } function localize(format /* , [ arg1, arg2, ... ] */) { var args = Array.prototype.slice.call(arguments, 1); return localizeInternal(format, args); }; function localizeRecursive(format /* , [ arg1, arg2, ... ] */) { var args = Array.prototype.slice.call(arguments, 1); return localizeInternal(format, args, true); }; function localizeInternal(key, args, localizeArgs) { if (!key) { return key } var s = dict[key]; if (!s) { console.warn("Missing localization for \"" + key + "\",") s = key } if (!args || args.length === 0) { return s; } if (localizeArgs) { args = args.map(localize); } return formatString(s, args); } return { localize: localize, localizeRecursive: localizeRecursive } }()); var localize = localization.localize, localizeRecursive = localization.localizeRecursive;