diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-01 01:37:03 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-01 01:37:03 +0000 |
commit | b50e08149c4e3dff9c5ebc6f3448a56f508d8d1c (patch) | |
tree | 5b7521f5b15146200f5b7313fc841d9fbe884977 /modules/admin-full/luasrc/model/cbi/admin_system/system.lua | |
parent | e3ac0fd78d7fe7660954348675094d02d5f42aa0 (diff) |
all: yet another round of translation fixes
Diffstat (limited to 'modules/admin-full/luasrc/model/cbi/admin_system/system.lua')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_system/system.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/system.lua b/modules/admin-full/luasrc/model/cbi/admin_system/system.lua index 99ab64df02..1d6163a083 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_system/system.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_system/system.lua @@ -36,11 +36,11 @@ s:option(DummyValue, "_memtotal", translate("Memory")).value = string.format("%.2f MB (%.0f%% %s, %.0f%% %s, %.0f%% %s)", tonumber(memtotal) / 1024, 100 * memcached / memtotal, - tostring(translate("mem_cached", "")), + tostring(translate("cached")), 100 * membuffers / memtotal, - tostring(translate("mem_buffered", "")), + tostring(translate("buffered")), 100 * memfree / memtotal, - tostring(translate("mem_free", "")) + tostring(translate("free")) ) s:option(DummyValue, "_systime", translate("Local Time")).value = |