Text in dataview delete buttons
Hi - I'm pretty sure there's no way to override the text that is displayed in the delete button associated with a dataview: "Delete? Are you sure?" Any suggestions for a workaround?
Not a really nice solution, but you could overwrite the components in your meteor kitchen install home. But if you update or reinstall meteorkitchen your changes may be lost:
look at for example:
Second chance - not realy beautifuler - generate your app, copy the corresponding js. file (like myapp/client/views/admin/organisations.js), edit it, and use the "copy_files" directive from meteor-kitchen to overwrite the generated file with your version.
Third - write only the event for the delete-button in a new js file, copy this to the destination with "copy_files" with a different filename wich is loaded after the original one and remove the first (autogenerated) event handler
@xauxatz I started adding i18n support, that will enable you to change every string that appears in the UI. Until then, see @adnoh 's solution