Partial localization of the Toolbar set as inline JSON

Customizing the Toolbar

by Flexmonster Pivot Table

HTML

<script src="https://cdn.flexmonster.com/flexmonster.js"></script>

<div id="pivot-container"></div>

CSS

@import url(https://cdn.flexmonster.com/assets/jsfiddle-styles.css);

JavaScript

const pivot = new Flexmonster({
  container: "pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
  toolbar: true,
  global: {
    localization: {
      "toolbar": {
        "connect": "Relier",
        "open": "Ouvrir",
        "save": "Sauvegarder",
        "export": "Exporter",
      }
    }
  },
  report: {
    /*   localization: {
          "toolbar": {
            "connect": "Relier",
            "open": "Ouvrir",
            "save": "Sauvegarder",
            "export": "Exporter",
          }
        }, */
    dataSource: {
      filename: "data/retail-data.json"
    }
  }
});