-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWpCatTagset.lua
41 lines (39 loc) · 1.18 KB
/
WpCatTagset.lua
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
-- tagset for the plugin Metadata
-- Mind: Global 'PiName' and 'TagsetName' is defined in Info.lua
return {
--title = LOC "$$$/WP_MediaCat2/Meta/TagsetTitle=WordPress-Meta",
title = TagsetName,
id = 'WpCatTagset1',
items = {
'com.adobe.filename',
'com.adobe.copyname',
'com.adobe.folder',
'com.adobe.filesize',
--'com.adobe.filetype',
'com.adobe.dateTimeOriginal',
'com.adobe.separator',
-- bewertung
-- beschriftung
'com.adobe.title',
{ 'com.adobe.caption', height_in_lines = 3 },
'com.adobe.comment',
'com.adobe.separator',
--'com.adobe.dateCreated',
--'com.adobe.location',
--'com.adobe.city',
--'com.adobe.state',
--'com.adobe.country',
--'com.adobe.isoCountryCode',
'com.adobe.GPS',
'com.adobe.GPSAltitude',
'com.adobe.separator',
PiName .. '.wpid',
PiName .. '.upldate',
PiName .. '.wpwidth',
PiName .. '.wpheight',
PiName .. '.wpimgurl',
PiName .. '.slug',
PiName .. '.post',
PiName .. '.gallery',
}
}