-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
149 lines (149 loc) · 4.32 KB
/
Copy pathplugin.json
File metadata and controls
149 lines (149 loc) · 4.32 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "Koken I18n",
"version": "0.3",
"description": "Koken internationalization plugin",
"demo": "http://zaytsev.photo",
"author": {
"name": "Sergej Nikolaev",
"link": "mailto:kinolaev@gmail.com"
},
"data": {
"separator": {
"label": "Text separator",
"info": "You need to separate you text with this symbol. Example: |",
"type": "string",
"value": "|"
},
"lang_string": {
"label": "Languages",
"info": "Two letter language codes separated by selected separator, for example, \"en|ru|de|es\"",
"type": "string",
"value": "en|ru"
},
"lang_default": {
"label": "Default language",
"info": "Two letter default language code. Example: en",
"type": "string",
"value": "ru"
},
"default_switcher": {
"label": "Show standard language switcher",
"info": "Check to show standard switcher",
"type": "boolean",
"value": true
},
"default_switcher_style": {
"label": "Add standard language switcher style",
"info": "Show language switcher in top right corner",
"type": "boolean",
"value": true
},
"labels_album_plural": {
"label": "{{ labels.album.plural }} variable translation",
"info": "For example, \"Projects|Проекты|Projekte|Proyectos\"",
"type": "string",
"value": "Albums|Альбомы"
},
"labels_album_singular": {
"label": "{{ labels.album.singular }} variable translation",
"info": "For example, \"Project|Проект|Projekt|Proyecto\"",
"type": "string",
"value": "Album|Альбом"
},
"labels_archive_plural": {
"label": "{{ labels.archive.plural }} variable translation",
"type": "string",
"value": "Archives|Архивы"
},
"labels_archive_singular": {
"label": "{{ labels.archive.singular }} variable translation",
"type": "string",
"value": "Archive|Архив"
},
"labels_category_plural": {
"label": "{{ labels.category.plural }} variable translation",
"type": "string",
"value": "Сategories|Рубрики"
},
"labels_category_singular": {
"label": "{{ labels.category.singular }} variable translation",
"type": "string",
"value": "Category|Рубрика"
},
"labels_content_plural": {
"label": "{{ labels.content.plural }} variable translation",
"type": "string",
"value": "Contents|Вещи"
},
"labels_content_singular": {
"label": "{{ labels.content.singular }} variable translation",
"type": "string",
"value": "Content|Вещь"
},
"labels_essay_plural": {
"label": "{{ labels.essay.plural }} variable translation",
"type": "string",
"value": "Essays|Эссе"
},
"labels_essay_singular": {
"label": "{{ labels.essay.singular }} variable translation",
"type": "string",
"value": "Essay|Эссе"
},
"labels_favorite_plural": {
"label": "{{ labels.favorite.plural }} variable translation",
"type": "string",
"value": "Favorites|Избранные"
},
"labels_favorite_singular": {
"label": "{{ labels.favorite.singular }} variable translation",
"type": "string",
"value": "Favorite|Избранное"
},
"labels_page_plural": {
"label": "{{ labels.page.plural }} variable translation",
"type": "string",
"value": "Pages|Страницы"
},
"labels_page_singular": {
"label": "{{ labels.page.singular }} variable translation",
"type": "string",
"value": "Page|Страница"
},
"labels_set_plural": {
"label": "{{ labels.set.plural }} variable translation",
"type": "string",
"value": "Sets|Сеты"
},
"labels_set_singular": {
"label": "{{ labels.set.singular }} variable translation",
"type": "string",
"value": "Set|Сет"
},
"labels_tag_plural": {
"label": "{{ labels.tag.plural }} variable translation",
"type": "string",
"value": "Tags|Метки"
},
"labels_tag_singular": {
"label": "{{ labels.tag.singular }} variable translation",
"type": "string",
"value": "Tag|Метка"
},
"labels_timeline_plural": {
"label": "{{ labels.timeline.plural }} variable translation",
"type": "string",
"value": "Timeline|Таймлайн"
},
"labels_timeline_singular": {
"label": "{{ labels.timeline.singular }} variable translation",
"type": "string",
"value": "Timeline|Таймлайн"
},
"labels_home": {
"label": "{{ labels.home }} variable translation",
"type": "string",
"value": "Home|Главная"
}
}
}