diff options
author | Anton Kikin <a.kikin@tano-systems.com> | 2018-10-25 19:40:23 +0300 |
---|---|---|
committer | Anton Kikin <a.kikin@tano-systems.com> | 2018-10-25 19:40:23 +0300 |
commit | 6958e0d10cb31458afb3afe57b7fdf7011faa739 (patch) | |
tree | 3844a7900726baa50e62ff86dc71f6b234a1fcb8 | |
parent | 9deb5c11d9692160a19801072516dafd9f05e7ec (diff) |
luci-mod-system: fstab: "SWAP" section title is made translatable
Signed-off-by: Anton Kikin <a.kikin@tano-systems.com>
-rw-r--r-- | modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua index 02fe9cc05..6f0921fdc 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua @@ -233,7 +233,7 @@ ck.cfgvalue = function(self, section) end -swap = m:section(TypedSection, "swap", "SWAP", translate("If your physical memory is insufficient unused data can be temporarily swapped to a swap-device resulting in a higher amount of usable <abbr title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very slow process as the swap-device cannot be accessed with the high datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>.")) +swap = m:section(TypedSection, "swap", translate("SWAP"), translate("If your physical memory is insufficient unused data can be temporarily swapped to a swap-device resulting in a higher amount of usable <abbr title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very slow process as the swap-device cannot be accessed with the high datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>.")) swap.anonymous = true swap.addremove = true swap.template = "cbi/tblsection" |