MessageBox.js 341 B

1234567891011121314151617
  1. Ext.define("Ext.locale.it.window.MessageBox", {
  2. override: "Ext.window.MessageBox",
  3. buttonText: {
  4. ok: "OK",
  5. cancel: "Annulla",
  6. yes: "Si",
  7. no: "No"
  8. },
  9. titleText: {
  10. confirm: 'Conferma',
  11. prompt: 'Richiesta',
  12. wait: 'Attesa...',
  13. alert: 'Attenzione'
  14. }
  15. });