Addon Manager: Unabbreviate "asc" and "desc".
@jyrkive https://github.com/wesnoth/wesnoth/pull/3418#issuecomment-410433850
This commit is contained in:
parent
5bbb55dbd3
commit
6e49feb77f
1 changed files with 2 additions and 4 deletions
|
@ -360,14 +360,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);
|
||||
|
|
Loading…
Add table
Reference in a new issue