aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-11-05 15:28:36 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2020-04-28 10:13:57 +0200
commiteb7b632ee6f898dbe5c861623f59fa62fc4d5235 (patch)
tree9ff38b5481718f705a2eb866cd947c349360642f /src/Wallabag/CoreBundle/Resources/views/themes
parent96295ec84796551590d24a3516ccbba43469b6f6 (diff)
downloadwallabag-eb7b632ee6f898dbe5c861623f59fa62fc4d5235.tar.gz
wallabag-eb7b632ee6f898dbe5c861623f59fa62fc4d5235.tar.zst
wallabag-eb7b632ee6f898dbe5c861623f59fa62fc4d5235.zip
Added translations and tweak parameters
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig9
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig2
2 files changed, 5 insertions, 6 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
index 7e48619e..deeb19a3 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
@@ -216,17 +216,16 @@
216 216
217 <div class="row"> 217 <div class="row">
218 <div class="col s12"> 218 <div class="col s12">
219 <label>{{ 'entry.sort_by.status_label'|trans }}</label> 219 <label>{{ 'entry.sort.status_label'|trans }}</label>
220 </div> 220 </div>
221 221
222 <div class="input-field col s12 with-checkbox"> 222 <div class="input-field col s12 with-checkbox">
223 <select> 223 <select>
224 <option value="" disabled selected>Creation date</option> 224 <option value="" disabled selected>Creation date</option>
225 <option value="1">Sort by creation date</option> 225 <option value="createdAt">{{ 'entry.sort.by.creation_date' | trans }}</option>
226 <option value="2">Sort by title</option> 226 <option value="title">{{ 'entry.sort.by.title' | trans }}</option>
227 <option value="3">Sort by last updated</option> 227 <option value="updatedAt">{{ 'entry.sort.by.last_updated' | trans }}</option>
228 </select> 228 </select>
229 {{ form_label(form.isArchived) }}
230 </div> 229 </div>
231 230
232 <div class="col s12"> 231 <div class="col s12">
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
index b4c1a628..95d7da9a 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
@@ -93,7 +93,7 @@
93 </a> 93 </a>
94 </li> 94 </li>
95 <li id="button_sort"> 95 <li id="button_sort">
96 <a title="{{ 'menu.top.filter_entries'|trans }}" href="#" data-activates="sort" class="nav-panel-menu button-collapse-right"> 96 <a title="{{ 'menu.top.sort_entries'|trans }}" href="#" data-activates="sort" class="nav-panel-menu button-collapse-right">
97 <i class="material-icons">sort_by_alpha</i> 97 <i class="material-icons">sort_by_alpha</i>
98 </a> 98 </a>
99 </li> 99 </li>