/** * amCharts 5 locale * * Locale: nl_NL * Language: Dutch * * Follow instructions in [on this page](https://www.amcharts.com/docs/v5/concepts/locales/creating-translations/) to make corrections or add new translations. */ export default { // Number formatting options. // // Please check with the local standards which separator is accepted to be // used for separating decimals, and which for thousands. "_decimalSeparator": ",", "_thousandSeparator": ".", // Position of the percent sign in numbers "_percentPrefix": null, "_percentSuffix": "%", // Default date formats for various periods. // // This should reflect official or de facto formatting universally accepted // in the country translation is being made for // Available format codes here: // https://www.amcharts.com/docs/v5/concepts/formatters/formatting-dates/#Format_codes // // This will be used when formatting date/time for particular granularity, // e.g. "_date_hour" will be shown whenever we need to show time as hours. "_date_millisecond": "mm:ss SSS", "_date_millisecond_full": "HH:mm:ss SSS", "_date_second": "HH:mm:ss", "_date_second_full": "HH:mm:ss", "_date_minute": "HH:mm", "_date_minute_full": "HH:mm - d MMM", "_date_hour": "HH:mm", "_date_hour_full": "HH:mm - d MMM", "_date_day": "d MMM", "_date_day_full": "d MMM", "_date_week": "ww", "_date_week_full": "d MMM", "_date_month": "MMM", "_date_month_full": "MMM, yyyy", "_date_year": "yyyy", // Default duration formats for various base units. // // This will be used by DurationFormatter to format numeric values into // duration. // // Available codes here: // https://www.amcharts.com/docs/v4/concepts/formatters/formatting-duration/#Available_Codes "_duration_millisecond": "SSS", "_duration_second": "ss", "_duration_minute": "mm", "_duration_hour": "hh", "_duration_day": "dd", "_duration_week": "ww", "_duration_month": "MM", "_duration_year": "yyyy", // Era translations "_era_ad": "AD", "_era_bc": "v.C.", // Day part, used in 12-hour formats, e.g. 5 P.M. // Please note that these come in 3 variants: // * one letter (e.g. "A") // * two letters (e.g. "AM") // * two letters with dots (e.g. "A.M.") // // All three need to to be translated even if they are all the same. Some // users might use one, some the other. "A": "A", "P": "P", "AM": "AM", "PM": "PM", "A.M.": "a.m.", "P.M.": "p.m.", // Date-related stuff. // // When translating months, if there's a difference, use the form which is // best for a full date, e.g. as you would use it in "2018 January 1". // // Note that May is listed twice. This is because in English May is the same // in both long and short forms, while in other languages it may not be the // case. Translate "May" to full word, while "May(short)" to shortened // version. "January": "januari", "February": "februari", "March": "maart", "April": "april", "May": "mei", "June": "juni", "July": "juli", "August": "augustus", "September": "september", "October": "oktober", "November": "november", "December": "december", "Jan": "jan", "Feb": "feb", "Mar": "mrt", "Apr": "apr", "May(short)": "mei", "Jun": "jun", "Jul": "jul", "Aug": "aug", "Sep": "sep", "Oct": "okt", "Nov": "nov", "Dec": "dec", // Weekdays. "Sunday": "zondag", "Monday": "maandag", "Tuesday": "dinsdag", "Wednesday": "woensdag", "Thursday": "donderdag", "Friday": "vrijdag", "Saturday": "zaterdag", "Sun": "Zo", "Mon": "Ma", "Tue": "Di", "Wed": "Wo", "Thu": "Do", "Fri": "Vr", "Sat": "Za", // Date ordinal function. // // This is used when adding number ordinal when formatting days in dates. // // E.g. "January 1st", "February 2nd". // // The function accepts day number, and returns a string to be added to the // day, like in default English translation, if we pass in 2, we will receive // "nd" back. "_dateOrd": function (day) { let res = "de"; if (day == 1 || day == 8 || day > 19) { res = "ste"; } return res; }, // Various chart controls. // Shown as a tooltip on zoom out button. "Zoom Out": "Uitzoomen", // Timeline buttons "Play": "Afspelen", "Stop": "Stoppen", // Chart's Legend screen reader title. "Legend": "Legenda", // Legend's item screen reader indicator. "Press ENTER to toggle": "Klik, tik of druk op Enter om aan of uit te zetten", // Shown when the chart is busy loading something. "Loading": "Laden", // Shown as the first button in the breadcrumb navigation, e.g.: // Home > First level > ... "Home": "Home", // Chart types. // Those are used as default screen reader titles for the main chart element // unless developer has set some more descriptive title. "Chart": "Grafiek", "Serial chart": "Periodieke grafiek", "X/Y chart": "X-Y grafiek", "Pie chart": "Taartdiagram", "Gauge chart": "Meterdiagram", "Radar chart": "Radardiagram", "Sankey diagram": "Sankey-diagram", "Chord diagram": "Chord-diagram", "Flow diagram": "Flow-diagram", "TreeMap chart": "Treemap-grafiek", // Series types. // Used to name series by type for screen readers if they do not have their // name set. "Series": "Reeks", "Candlestick Series": "Candlestick-reeks", "Column Series": "Kolomreeks", "Line Series": "Lijnreeks", "Pie Slice Series": "Taartpuntreeks", "X/Y Series": "XY reeks", // Map-related stuff. "Map": "Kaart", "Press ENTER to zoom in": "Druk op Enter om in te zoomen", "Press ENTER to zoom out": "Druk op Enter om uit te zoomen", "Use arrow keys to zoom in and out": "Zoom in of uit met de pijltjestoetsen", "Use plus and minus keys on your keyboard to zoom in and out": "Zoom in of uit met de plus- en minustoetsen", // Export-related stuff. // These prompts are used in Export menu labels. // // "Export" is the top-level menu item. // // "Image", "Data", "Print" as second-level indicating type of export // operation. // // Leave actual format untranslated, unless you absolutely know that they // would convey more meaning in some other way. "Export": "Exporteren", "Image": "Afbeelding", "Data": "Data", "Print": "Printen", "Press ENTER to open": "Klik, tik of druk op Enter om te openen", "Press ENTER to print.": "Klik, tik of druk op Enter om te printen", "Press ENTER to export as %1.": "Klik, tik of druk op Enter om te exporteren als %1", "(Press ESC to close this message)": "(Druk op ESC om dit bericht te sluiten)", "Image Export Complete": "Afbeelding exporteren gereed", "Export operation took longer than expected. Something might have gone wrong.": "Exportproces duurt langer dan verwacht. Er is misschien iets fout gegaan.", "Saved from": "Opgeslagen via:", "PNG": "PNG", "JPG": "JPG", "GIF": "GIF", "SVG": "SVG", "PDF": "PDF", "JSON": "JSON", "CSV": "CSV", "XLSX": "XLSX", "HTML": "", // Scrollbar-related stuff. // // Scrollbar is a control which can zoom and pan the axes on the chart. // // Each scrollbar has two grips: left or right (for horizontal scrollbar) or // upper and lower (for vertical one). // // Prompts change in relation to whether Scrollbar is vertical or horizontal. // // The final section is used to indicate the current range of selection. "Use TAB to select grip buttons or left and right arrows to change selection": "Gebruik Tab om de hendels te selecteren of linker- en rechterpijltje om de selectie te veranderen", "Use left and right arrows to move selection": "Gebruik linker- en rechterpijltje om de selectie te verplaatsen", "Use left and right arrows to move left selection": "Gebruik linker- en rechterpijltje om de linkerselectie te verplaatsen", "Use left and right arrows to move right selection": "Gebruik linker- en rechterpijltje om de rechterselectie te verplaatsen", "Use TAB select grip buttons or up and down arrows to change selection": "Gebruik Tab om de hendels te selecteren of pijltje omhoog en omlaag om de selectie te veranderen", "Use up and down arrows to move selection": "Gebruik pijltje omhoog en omlaag om de selectie te verplaatsen", "Use up and down arrows to move lower selection": "Gebruik pijltje omhoog en omlaag om de onderste selectie te verplaatsen", "Use up and down arrows to move upper selection": "Gebruik pijltje omhoog en omlaag om de bovenste selectie te verplaatsen", "From %1 to %2": "Van %1 tot %2", "From %1": "Van %1", "To %1": "Tot %2", // Data loader-related. "No parser available for file: %1": "Geen data-parser beschikbaar voor dit bestand: %1", "Error parsing file: %1": "Fout tijdens parsen van bestand: %1", "Unable to load file: %1": "Kan bestand niet laden: %1", "Invalid date": "Ongeldige datum", }; //# sourceMappingURL=nl_NL.js.map