setup
2 years ago
alias.php
2 years ago
conf.php
1 month ago
inc-po-links.php
1 month ago
inc-po-table.php
1 year ago
locale.php
2 years ago
setup.php
1 month ago
view.php
2 years ago
alias.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Special case for viewing Hello Dolly plugin |
| 4 | * TODO implement package aliasing in a generic fashion as part of bundle configuration. |
| 5 | */ |
| 6 | $this->extend('../layout'); |
| 7 | ?> |
| 8 | |
| 9 | <div class="panel panel-info"> |
| 10 | <h3 class="has-icon"> |
| 11 | <?php esc_attr_e('"Hello Dolly" is part of the WordPress core','loco-translate')?> |
| 12 | </h3> |
| 13 | <p> |
| 14 | <?php esc_html_e("This plugin doesn't have its own translation files, but can be translated in the default text domain", 'loco-translate')?>. |
| 15 | </p> |
| 16 | <p> |
| 17 | <a href="<?php $params->e('redirect')?>"><?php esc_html_e('Go to WordPress Core','loco-translate')?></a> |
| 18 | </p> |
| 19 | </div> |
| 20 |