mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-05-07 00:17:11 +02:00
fixed missing translation #1324
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user