Skip to content

Commit

Permalink
Addon Manager: Unabbreviate "asc" and "desc".
Browse files Browse the repository at this point in the history
  • Loading branch information
jostephd authored and jyrkive committed Aug 4, 2018
1 parent 569e1d8 commit ef71d0e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/gui/dialogs/addon/manager.cpp
Expand Up @@ -350,14 +350,12 @@ void addon_manager::pre_show(window& window)
for(const auto& f : all_orders_) {
utils::string_map symbols;

// TRANSLATORS: ascending
symbols["order"] = _("asc");
symbols["order"] = _("ascending");
// TRANSLATORS: Sorting order of dates, oldest first
symbols["datelike_order"] = _("oldest to newest");
config entry{"label", VGETTEXT(f.label.c_str(), symbols)};
order_dropdown_entries.push_back(entry);
// TRANSLATORS: descending
symbols["order"] = _("desc");
symbols["order"] = _("descending");
// TRANSLATORS: Sorting order of dates, newest first
symbols["datelike_order"] = _("newest to oldest");
entry["label"] = VGETTEXT(f.label.c_str(), symbols);
Expand Down

0 comments on commit ef71d0e

Please sign in to comment.