fix(language): typo in myanmar language name (#36931)

This commit is contained in:
Diptanil Saha 2026-02-11 16:01:27 +05:30 committed by GitHub
parent 777bcce609
commit efc08415fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 1 deletions

View file

@ -52,7 +52,7 @@ ml,മലയാളം,0
mn,Монгол,0
mr,मराठी,0
ms,Melayu,0
my,မြန်မာ1
my,မြန်မာ,1
nb,Norsk Bokmål,1
nl,Nederlands,0
no,Norsk,0

Can't render this file because it has a wrong number of fields in line 55.

View file

@ -258,3 +258,4 @@ execute:frappe.delete_doc_if_exists("Workspace Sidebar", "Productivity")
frappe.patches.v16_0.unset_standard_field_for_auto_generated_icons
execute:from frappe.email.doctype.notification.notification import install_notification_templates; install_notification_templates()
execute:frappe.db.set_value("Email Account", {}, "add_x_original_from", 1)
frappe.patches.v16_0.fix_myanmar_language_name

View file

@ -0,0 +1,9 @@
import frappe
def execute():
Language = frappe.qb.DocType("Language")
frappe.qb.update(Language).set(Language.language_name, "မြန်မာ").where(
Language.language_code == "my"
).run()