partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

PatreonStatusDialog.js (596B)


      1 Ext.define("PartKeepr.Components.PatreonStatusDialog", {
      2     extend: "Ext.window.Window",
      3 
      4     title: i18n("Patreon Status"),
      5     width: 400,
      6     height: 400,
      7 
      8     items: [{
      9         xtype: 'component',
     10         html: i18n("<h1>PartKeepr needs your support</h1>") +
     11         i18n("<p>We need you to support development, so we can create new cool features, user interface improvements and regular releases!</p>") +
     12         i18n("<p>Every cent helps to keep development alive!</p>") +
     13         i18n('<a href="https://www.patreon.com/partkeepr" target="_blank" class="patreonButton"></a>')
     14 
     15     }]
     16 
     17 
     18 });