You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QwikClock/lang/messages.php

57 lines
1.3 KiB
PHP

<?php
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"
],
"already_in" => [
"string" => "already punched in",
"type" => "danger"
],
"already_out" => [
"string" => "already punched out",
"type" => "danger"
],
"punched_in" => [
"string" => "punched in",
"type" => "success"
],
"punched_out" => [
"string" => "punched out",
"type" => "success"
],
"no_permission" => [
"string" => "missing permission",
"type" => "danger"
],
"shift_added" => [
"string" => "shift added",
"type" => "success"
],
"invalid_time" => [
"string" => "invalid time format",
"type" => "danger"
],
"shift_saved" => [
"string" => "shift saved",
"type" => "success"
],
"shift_name_used" => [
"string" => "shift name used",
"type" => "danger"
],
"invalid_shiftid" => [
"string" => "invalid shiftid",
"type" => "danger"
]
]);