fixed missing translation #1324

This commit is contained in:
Andy Miller
2018-01-30 13:34:16 -07:00
parent e6ee8ba56b
commit ec45448e5f
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
# v1.7.0-rc.3
## mm/dd/2018
1. [](#bugfix)
* Rolled back JS to known working versions [#1323](https://github.com/getgrav/grav-plugin-admin/issues/1323)
* Fixed missing translation in order field [#1324](https://github.com/getgrav/grav-plugin-admin/issues/1324)
# v1.7.0-rc.2
## 01/24/2018

View File

@@ -668,7 +668,7 @@ PLUGIN_ADMIN:
GPM_OFFICIAL_ONLY_HELP: "Only allow direct installs from the official GPM repository only."
NO_CHILD_TYPE: "No child type for this rawroute"
SORTABLE_PAGES: "Sortable Pages:"
UNSORTABLE_PAGES: "Unsortable Pages:"
UNSORTABLE_PAGES: "Unsortable Pages"
ADMIN_SPECIFIC_OVERRIDES: "Admin Specific Overrides"
ADMIN_CHILDREN_DISPLAY_ORDER: "Children Display Order"
ADMIN_CHILDREN_DISPLAY_ORDER_HELP: "The order that children of this page should be displayed in the 'Pages' view of Admin plugin"

View File

@@ -36,7 +36,7 @@
{% endfor %}
</ul>
{% if sortable_count < siblings|length %}
<label>Unsortable Pages</label>
<label>{{ "PLUGIN_ADMIN.UNSORTABLE_PAGES"|tu }}</label>
<ul class="orderable disabled">
{% for page in siblings if not page.order %}
<li {{ page.slug == data.slug ? 'data-active-id' : ''}}>{{ page.title|e }} <a href="{{ getPageUrl(page) }}"><i class="fa fa-external-link"></i></a></li>