仕様合わせ:スキン文言「終了」の追加

Issue #531 resolved
暗黒 騎士 created an issue

1.28-1.50のパーティ解散エリアのボタンは「終了」になっていますが、 スキン文言に見当たらないのでよければRebootの方でも追加して頂けないでしょうか。

自分の方は以下のようにしました。

statusbar.py
class CancelButton(StatusBarButton):
    def __init__(self, parent, pos):
        if cw.cwpy.areaid == -3:
            msg = "end"
        else:
            msg = "entry_cancel"
        StatusBarButton.__init__(self, parent, cw.cwpy.msgs[msg], pos)

skinbase/skin.xml
    <Message key="end">終了</Message>

Comments (2)

  1. k4nagatsuki repo owner

    これはニュアンスとしてはend(結末・突き当り)よりexit(退出・出口)やcomplete(完了)の方がいいような気がします。

    よろしければPull Requestしていただけないでしょうか。

  2. 暗黒 騎士 reporter

    pull request #1913

    中止の表示タイミング・所持金表示は仕様ということで了解です。マージありがとうございました。

  3. Log in to comment