form
9 years ago
newsletter
9 years ago
settings
9 years ago
subscribers
9 years ago
forms.html
9 years ago
index.html
9 years ago
index.php
9 years ago
layout.html
9 years ago
limit.html
9 years ago
newsletters.html
9 years ago
segments.html
9 years ago
settings.html
9 years ago
update.html
9 years ago
welcome.html
9 years ago
segments.html
68 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <div id="segments_container"></div> |
| 5 | |
| 6 | <script type="text/javascript"> |
| 7 | var mailpoet_listing_per_page = <%= items_per_page %>; |
| 8 | </script> |
| 9 | <% endblock %> |
| 10 | |
| 11 | <% block translations %> |
| 12 | <%= localize({ |
| 13 | 'pageTitle': __('Lists'), |
| 14 | 'searchLabel': __('Search'), |
| 15 | 'loadingItems': __('Loading lists...'), |
| 16 | 'noItemsFound': __('No lists found'), |
| 17 | 'selectAllLabel': __('All lists on this page are selected'), |
| 18 | 'selectedAllLabel': __('All %d lists are selected'), |
| 19 | 'selectAllLink': __('Select all lists on all pages'), |
| 20 | 'clearSelection': __('Clear selection'), |
| 21 | 'permanentlyDeleted': __('%d lists were permanently deleted'), |
| 22 | 'selectBulkAction': __('Select bulk action'), |
| 23 | 'bulkActions': __('Bulk Actions'), |
| 24 | 'apply': __('Apply'), |
| 25 | 'name': __('Name'), |
| 26 | 'description': __('Description'), |
| 27 | 'segmentUpdated': __('List successfully updated!'), |
| 28 | 'segmentAdded': __('List successfully added!'), |
| 29 | 'segment': __('List'), |
| 30 | 'subscribed': __('Subscribed'), |
| 31 | 'unconfirmed': __('Unconfirmed'), |
| 32 | 'unsubscribed': __('Unsubscribed'), |
| 33 | 'createdOn': __('Created on'), |
| 34 | 'oneSegmentTrashed': __('1 list was moved to the trash'), |
| 35 | 'multipleSegmentsTrashed': __('%$1d lists were moved to the trash'), |
| 36 | 'oneSegmentDeleted': __('1 list was permanently deleted'), |
| 37 | 'multipleSegmentsDeleted': __('%$1d list were permanently deleted'), |
| 38 | 'oneSegmentRestored': __('1 list has been restored from the trash'), |
| 39 | 'multipleSegmentsRestored': __('%$1d lists have been restored from the trash'), |
| 40 | 'duplicate': __('Duplicate'), |
| 41 | 'listDuplicated': __('List "%$1s" has been duplicated'), |
| 42 | 'update': __('Update'), |
| 43 | 'forceSync': __('Force Sync'), |
| 44 | 'readMore': __('Read More'), |
| 45 | 'listSynchronized': __('List "%$1s" has been synchronized'), |
| 46 | 'viewSubscribers': __('View Subscribers'), |
| 47 | 'new': __('Add New'), |
| 48 | 'edit': __('Edit'), |
| 49 | 'trash': __('Trash'), |
| 50 | 'emptyTrash': __('Empty Trash'), |
| 51 | 'selectAll': __('Select All'), |
| 52 | 'restore': __('Restore'), |
| 53 | 'deletePermanently': __('Delete permanently'), |
| 54 | 'save': __('Save'), |
| 55 | |
| 56 | 'previousPage': __('Previous page'), |
| 57 | 'firstPage': __('First page'), |
| 58 | 'nextPage': __('Next page'), |
| 59 | 'lastPage': __('Last page'), |
| 60 | 'currentPage': __('Current page'), |
| 61 | 'pageOutOf': __('of'), |
| 62 | 'numberOfItems': __('%$1d item(s)'), |
| 63 | |
| 64 | 'segmentDescriptionTip': __('This text box is for your own use and is never shown to your subscribers'), |
| 65 | 'backToList': __('Back') |
| 66 | }) %> |
| 67 | <% endblock %> |
| 68 |