-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
86 lines (86 loc) · 3.26 KB
/
Copy pathplugin.xml
File metadata and controls
86 lines (86 loc) · 3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<title xml:lang="ko">라이믹스 플러그인</title>
<title xml:lang="en">Rhymix Plugin</title>
<description xml:lang="ko">라이믹스 플러그인 예제입니다.</description>
<description xml:lang="en">This is an example Rhymix plugin.</description>
<author email_address="devops@rhymix.org" link="https://rhymix.org">
<name xml:lang="ko">라이믹스</name>
<name xml:lang="en">Rhymix</name>
</author>
<license>GPL-2.0</license>
<version>0.1</version>
<date>2026-07-01</date>
<config>
<group>
<title xml:lang="ko">각종 입력란 샘플</title>
<title xml:lang="en">Various Input Samples</title>
<var name="sample_text" type="text" default="Hello, world!">
<title xml:lang="ko">텍스트 입력란</title>
<title xml:lang="en">Text Field</title>
<description xml:lang="ko">텍스트 입력란 예제입니다.</description>
<description xml:lang="en">This is an example of a text field.</description>
</var>
<var name="today_snack" type="select">
<title xml:lang="ko">오늘의 야식</title>
<title xml:lang="en">Today's Snack</title>
<option value="chicken">
<title xml:lang="ko">치킨</title>
<title xml:lang="en">Chicken</title>
</option>
<option value="pizza" default="true">
<title xml:lang="ko">피자</title>
<title xml:lang="en">Pizza</title>
</option>
<option value="hamburger">
<title xml:lang="ko">햄버거</title>
<title xml:lang="en">Hamburger</title>
</option>
</var>
<var name="fav_language" type="checkbox">
<title xml:lang="ko">프로그래밍 언어</title>
<title xml:lang="en">Programming Languages</title>
<option value="java">
<title xml:lang="ko">Java</title>
<title xml:lang="en">Java</title>
</option>
<option value="php">
<title xml:lang="ko">PHP</title>
<title xml:lang="en">PHP</title>
</option>
<option value="python">
<title xml:lang="ko">Python</title>
<title xml:lang="en">Python</title>
</option>
<option value="typescript">
<title xml:lang="ko">TypeScript</title>
<title xml:lang="en">TypeScript</title>
</option>
</var>
<var name="address" type="kr_zip">
<title xml:lang="ko">한국 우편번호 예제</title>
<title xml:lang="en">Korean postal code</title>
</var>
<var name="phone_number" type="tel_intl_v2">
<title xml:lang="ko">해외 전화번호 예제</title>
<title xml:lang="en">Intl phone number</title>
</var>
</group>
<group>
<title xml:lang="ko">업로드 테스트</title>
<title xml:lang="en">Upload Test</title>
<var name="sample_image" type="image">
<title xml:lang="ko">이미지 예제</title>
<title xml:lang="en">Image example</title>
<description xml:lang="ko">이미지 업로드 예제입니다.</description>
<description xml:lang="en">This is an example of image upload.</description>
</var>
<var name="sample_file" type="file">
<title xml:lang="ko">파일 예제</title>
<title xml:lang="en">File example</title>
<description xml:lang="ko">파일 업로드 예제입니다.</description>
<description xml:lang="en">This is an example of file upload.</description>
</var>
</group>
</config>
</plugin>