a patch for Menu.bmg was done to Common.bmg

This commit is contained in:
Faraphel 2022-07-12 22:05:11 +02:00
parent efd314fb9a
commit bd52034cc6
3 changed files with 26 additions and 26 deletions

View file

@ -1,26 +0,0 @@
{
"mode": "edit",
"operation": {
"bmg-edit": {
"layers": [{
"mode": "regex",
"template": {
"CWF de Nintendo": "{{ONLINE_SERVICE}}",
"Wi-Fi Nintendo": "{{ONLINE_SERVICE}}",
"CWF Nintendo": "{{ONLINE_SERVICE}}",
"Nintendo WFC": "{{ONLINE_SERVICE}}",
"Wi-Fi": "{{ONLINE_SERVICE}}",
"インターネット": "{{ONLINE_SERVICE}}",
"Menu principal": "{{MOD_NICKNAME}} {{MOD_VERSION}} {{MOD_CUSTOMIZED}}",
"Menú principal": "{{MOD_NICKNAME}} {{MOD_VERSION}} {{MOD_CUSTOMIZED}}",
"Main Menu": "{{MOD_NICKNAME}} {{MOD_VERSION}} {{MOD_CUSTOMIZED}}",
"トップメニュー": "{{MOD_NICKNAME}} {{MOD_VERSION}} {{MOD_CUSTOMIZED}}",
"Mario Kart Wii": "{{MOD_NICKNAME}} {{MOD_VERSION}} {{MOD_CUSTOMIZED}}"
}
}]
}
}
}

View file

@ -0,0 +1,26 @@
{
"mode": "edit",
"operation": {
"bmg-edit": {
"layers": [{
"mode": "regex",
"template": {
"(.*)CWF de Nintendo(.*)": "\\1Wiimmfi\\2",
"(.*)Wi-Fi Nintendo(.*)": "\\1Wiimmfi\\2",
"(.*)CWF Nintendo(.*)": "\\1Wiimmfi\\2",
"(.*)Nintendo WFC(.*)": "\\1Wiimmfi\\2",
"(.*)Wi-Fi(.*)": "\\1Wiimmfi\\2",
"(.*)インターネット(.*)": "\\1Wiimmfi\\2",
"(.*)Menu principal(.*)": "\\1{{getattr(mod_config, 'nickname')}} {{getattr(mod_config, 'version')}}\\2",
"(.*)Menú principal(.*)": "\\1{{getattr(mod_config, 'nickname')}} {{getattr(mod_config, 'version')}}\\2",
"(.*)Main Menu(.*)": "\\1{{getattr(mod_config, 'nickname')}} {{getattr(mod_config, 'version')}}\\2",
"(.*)トップメニュー(.*)": "\\1{{getattr(mod_config, 'nickname')}} {{getattr(mod_config, 'version')}}\\2",
"(.*)Mario Kart Wii(.*)": "\\1{{getattr(mod_config, 'nickname')}} {{getattr(mod_config, 'version')}}\\2"
}
}]
}
}
}