mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
14 lines
346 B
Bash
Executable file
14 lines
346 B
Bash
Executable file
#!/bin/sh
|
|
# $Id: msgbox-utf8,v 1.1 2011/01/18 00:25:30 tom Exp $
|
|
# from Debian #570634
|
|
|
|
. ./setup-vars
|
|
|
|
. ./setup-utf8
|
|
|
|
${DIALOG-dialog} "$@" \
|
|
--title "ทดสอบวรรณยุกต์" \
|
|
--msgbox "วรรณยุกต์อยู่ท้ายบรรทัดได้หรือไม่" 8 23
|
|
retval=$?
|
|
|
|
. ./report-button
|