diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-10-25 19:51:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 19:51:36 +0300 |
commit | 35b543e270428357d22ede5ceff39653b3371a1b (patch) | |
tree | cafe9e98f1a035568a535040667a0bd966c421bd /modules | |
parent | b412a4c231c2f0d715f8a650824448a328913567 (diff) | |
parent | 6958e0d10cb31458afb3afe57b7fdf7011faa739 (diff) |
Merge pull request #2248 from tano-systems/fstab-translateble-swap
luci-mod-system: fstab: "SWAP" section title is made translatable
Diffstat (limited to 'modules')
-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" |