X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=applications%2Fluci-statistics%2Fluasrc%2Fstatistics%2Fi18n.lua;h=213131bd318a29246fcb24cbb9f49929e1b5e87a;hb=45d9fe0b165467b808bf2fa56edb9e9ebaa89c7b;hp=4cbcdd4cf3a1a5d83a640a24a01af749729e3c3b;hpb=d82340ada43ccbc098e6f40dfee8603ec1231385;p=project%2Fluci.git diff --git a/applications/luci-statistics/luasrc/statistics/i18n.lua b/applications/luci-statistics/luasrc/statistics/i18n.lua index 4cbcdd4cf..213131bd3 100644 --- a/applications/luci-statistics/luasrc/statistics/i18n.lua +++ b/applications/luci-statistics/luasrc/statistics/i18n.lua @@ -43,13 +43,13 @@ end function Instance.title( self, plugin, pinst, dtype, dinst ) - local title = self.i18n.translate( + local title = self.i18n.string( string.format( "stat_dg_title_%s_%s_%s", plugin, pinst, dtype ), - self.i18n.translate( + self.i18n.string( string.format( "stat_dg_title_%s_%s", plugin, pinst ), - self.i18n.translate( + self.i18n.string( string.format( "stat_dg_title_%s__%s", plugin, dtype ), - self.i18n.translate( + self.i18n.string( string.format( "stat_dg_title_%s", plugin ), self.graph:_mkpath( plugin, pinst, dtype ) ) @@ -68,13 +68,13 @@ end function Instance.label( self, plugin, pinst, dtype, dinst ) - local label = self.i18n.translate( + local label = self.i18n.string( string.format( "stat_dg_label_%s_%s_%s", plugin, pinst, dtype ), - self.i18n.translate( + self.i18n.string( string.format( "stat_dg_label_%s_%s", plugin, pinst ), - self.i18n.translate( + self.i18n.string( string.format( "stat_dg_label_%s__%s", plugin, dtype ), - self.i18n.translate( + self.i18n.string( string.format( "stat_dg_label_%s", plugin ), self.graph:_mkpath( plugin, pinst, dtype ) ) @@ -93,13 +93,13 @@ end function Instance.ds( self, source ) - local label = self.i18n.translate( + local label = self.i18n.string( string.format( "stat_ds_%s_%s_%s", source.type, source.instance, source.ds ), - self.i18n.translate( + self.i18n.string( string.format( "stat_ds_%s_%s", source.type, source.instance ), - self.i18n.translate( + self.i18n.string( string.format( "stat_ds_label_%s__%s", source.type, source.ds ), - self.i18n.translate( + self.i18n.string( string.format( "stat_ds_%s", source.type ), source.type .. "_" .. source.instance:gsub("[^%w]","_") .. "_" .. source.ds )