mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-19 13:09:17 +00:00
fix: Add transtlation function to strings (#18806)
* fix: Add transtlation function to strings fix: Add transtlation function to strings * fix: Add transtlation function to strings fix: Add transtlation function to strings
This commit is contained in:
@@ -27,8 +27,8 @@ frappe.query_reports["Payment Period Based On Invoice Date"] = {
|
|||||||
fieldname:"payment_type",
|
fieldname:"payment_type",
|
||||||
label: __("Payment Type"),
|
label: __("Payment Type"),
|
||||||
fieldtype: "Select",
|
fieldtype: "Select",
|
||||||
options: "Incoming\nOutgoing",
|
options: __("Incoming")+"\n"+__("Outgoing"),
|
||||||
default: "Incoming"
|
default: __("Incoming")
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname":"party_type",
|
"fieldname":"party_type",
|
||||||
|
|||||||
@@ -51,14 +51,14 @@ erpnext.SupportAnalytics = frappe.views.GridReportWithPlot.extend({
|
|||||||
// add Opening, Closing, Totals rows
|
// add Opening, Closing, Totals rows
|
||||||
// if filtered by account and / or voucher
|
// if filtered by account and / or voucher
|
||||||
var me = this;
|
var me = this;
|
||||||
var total_tickets = {name:"All Tickets", "id": "all-tickets",
|
var total_tickets = {name:__("All Tickets"), "id": "all-tickets",
|
||||||
checked:true};
|
checked:true};
|
||||||
var days_to_close = {name:"Days to Close", "id":"days-to-close",
|
var days_to_close = {name:__("Days to Close"), "id":"days-to-close",
|
||||||
checked:false};
|
checked:false};
|
||||||
var total_closed = {};
|
var total_closed = {};
|
||||||
var hours_to_close = {name:"Hours to Close", "id":"hours-to-close",
|
var hours_to_close = {name:__("Hours to Close"), "id":"hours-to-close",
|
||||||
checked:false};
|
checked:false};
|
||||||
var hours_to_respond = {name:"Hours to Respond", "id":"hours-to-respond",
|
var hours_to_respond = {name:__("Hours to Respond"), "id":"hours-to-respond",
|
||||||
checked:false};
|
checked:false};
|
||||||
var total_responded = {};
|
var total_responded = {};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user