Skip to content

Commit

Permalink
Merge pull request #6848 from stangri/master-luci-app-adblock-fast
Browse files Browse the repository at this point in the history
luci-app-adblock-fast: remove unnecessary translation calls
  • Loading branch information
stangri authored Jan 23, 2024
2 parents 87734b8 + 126443a commit 704526a
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 98 deletions.
2 changes: 1 addition & 1 deletion applications/luci-app-adblock-fast/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk

PKG_LICENSE:=GPL-3.0-or-later
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca>
PKG_VERSION:=1.1.1-1
PKG_VERSION:=1.1.1-3

LUCI_TITLE:=AdBlock-Fast Web UI
LUCI_DESCRIPTION:=Provides Web UI for adblock-fast service.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ return view.extend({

status = new adb.status();
m = new form.Map(pkg.Name, _("AdBlock-Fast - Configuration"));

s1 = m.section(form.NamedSection, "config", pkg.Name);
s1.tab("tab_basic", _("Basic Configuration"));
s1.tab("tab_advanced", _("Advanced Configuration"));
Expand Down Expand Up @@ -238,7 +239,7 @@ return view.extend({
key = element[".name"];
description = element[".name"];
}
o.value(key, _("%s").format(description));
o.value(key, description);
});
o.depends("dnsmasq_instance_option", "+");
o.retain = true;
Expand Down Expand Up @@ -301,7 +302,7 @@ return view.extend({
key = element[".name"];
description = element[".name"];
}
o.value(key, _("%s").format(description));
o.value(key, description);
});
o.depends("smartdns_instance_option", "+");
o.retain = true;
Expand Down
Loading

0 comments on commit 704526a

Please sign in to comment.