https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36796 Bug ID: 36796 Summary: Fix mistake in database column descriptions for statistics table Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Reports Assignee: koha-bugs@lists.koha-community.org Reporter: katrin.fischer@bsz-bw.de QA Contact: testopia@bugs.koha-community.org CC: magnus@libriotech.no Depends on: 32312 from bug 32312: (In reply to Jonathan Druart from comment #12)
Something wrong here, statistics was present already.
245 statistics => { 246 "datetime" => __("Statistics date and time"), 247 "branch" => __("Library"), 248 "value" => __("Value"), 249 "type" => __("Transaction type"), 250 "other" => __("SIP mode"), 251 "itemnumber" => __("Item number"), 252 "itemtype" => __("Koha item type"), 253 "location" => __("Shelving location"), 254 "borrowernumber" => __("Borrower number"), 255 "ccode" => __("Collection"), 256 "categorycode" => __("Patron category"), 257 },
302 statistics => { 303 "borrowernumber" => __("Borrower number"), 304 "branch" => __("Library"), 305 "datetime" => __("Statistics date and time"), 306 "itemnumber" => __("Item number"), 307 "itemtype" => __("Itemtype"), 308 "other" => __(""), 309 "type" => __("Type"), 310 "value" => __("Value"), 311 },
In this second block "other" is getting __("") which leads to displaying the header of the po file when using a translated interface.
Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32312 [Bug 32312] Complete database column descriptions for circulation module in guided reports -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.