您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

69 行
1.7 KiB
PHP

<?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
define("MESSAGES", [
"invalid_parameters" => [
"string" => "invalid parameters",
"type" => "danger"
],
"account_state_error" => [
"string" => "account state error",
"type" => "danger"
],
"404_error" => [
"string" => "page not found",
"type" => "info"
],
"customer_saved" => [
"string" => "customer saved",
"type" => "success"
],
"invalid_customerid" => [
"string" => "invalid customer id",
"type" => "danger"
],
"cash_not_open" => [
"string" => "cash not open",
"type" => "danger"
],
"cash_already_open" => [
"string" => "cash already open",
"type" => "danger"
],
"register_set" => [
"string" => "register set",
"type" => "success"
],
"cash_opened" => [
"string" => "cash opened",
"type" => "success"
],
"cash_closed" => [
"string" => "cash closed",
"type" => "success"
],
"register_saved" => [
"string" => "register saved",
"type" => "success"
],
"register_name_taken" => [
"string" => "register name taken",
"type" => "danger"
],
"return_transaction_no_edit" => [
"string" => "cannot edit return transaction",
"type" => "danger"
],
"card_x_added" => [
"string" => "card x added",
"type" => "success"
],
"card_x_saved" => [
"string" => "card x saved",
"type" => "success"
],
]);