@nodaro/shared 3.12.1 → 3.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +442 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +423 -3
- package/dist/index.d.ts +423 -3
- package/dist/index.js +400 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/producer-types.test.ts +5 -0
- package/src/__tests__/video-overlay-docs.test.ts +39 -0
- package/src/__tests__/video-overlay.test.ts +572 -0
- package/src/catalog-projection.ts +20 -0
- package/src/i18n/action-fx.ja.ts +17 -17
- package/src/i18n/aesthetic.ja.ts +26 -20
- package/src/i18n/animals.ja.ts +49 -49
- package/src/i18n/atmosphere.ja.ts +19 -19
- package/src/i18n/backdrop.ja.ts +13 -13
- package/src/i18n/camera-format.ja.ts +3 -3
- package/src/i18n/camera-motions.ja.ts +15 -15
- package/src/i18n/character-fx.ja.ts +12 -12
- package/src/i18n/character-motion.ja.ts +72 -72
- package/src/i18n/color-look.ja.ts +19 -19
- package/src/i18n/composition-effects.ja.ts +6 -6
- package/src/i18n/era.ja.ts +11 -11
- package/src/i18n/exposure-settings.ja.ts +10 -10
- package/src/i18n/framing.ja.ts +11 -11
- package/src/i18n/furniture.ja.ts +22 -22
- package/src/i18n/held-prop.ja.ts +7 -7
- package/src/i18n/instrumentation.ja.ts +41 -41
- package/src/i18n/lens.ja.ts +5 -5
- package/src/i18n/lighting.ja.ts +21 -21
- package/src/i18n/materials.ja.ts +4 -4
- package/src/i18n/mood.ja.ts +18 -18
- package/src/i18n/music-genre.ja.ts +16 -16
- package/src/i18n/music-mood.ja.ts +18 -18
- package/src/i18n/person.ar.ts +1 -0
- package/src/i18n/person.de.ts +1 -0
- package/src/i18n/person.es.ts +1 -0
- package/src/i18n/person.fr.ts +1 -0
- package/src/i18n/person.he.ts +1 -0
- package/src/i18n/person.hi.ts +1 -0
- package/src/i18n/person.ja.ts +179 -178
- package/src/i18n/person.ko.ts +1 -0
- package/src/i18n/person.pt-BR.ts +1 -0
- package/src/i18n/person.ru.ts +1 -0
- package/src/i18n/person.zh-CN.ts +1 -0
- package/src/i18n/photo-genre.ja.ts +11 -11
- package/src/i18n/photographer.ja.ts +17 -17
- package/src/i18n/pose.ja.ts +14 -14
- package/src/i18n/post-process-effects.ja.ts +5 -5
- package/src/i18n/render-quality.ja.ts +9 -9
- package/src/i18n/setting.ar.ts +2 -0
- package/src/i18n/setting.de.ts +2 -0
- package/src/i18n/setting.es.ts +2 -0
- package/src/i18n/setting.fr.ts +2 -0
- package/src/i18n/setting.he.ts +2 -0
- package/src/i18n/setting.hi.ts +2 -0
- package/src/i18n/setting.ja.ts +16 -14
- package/src/i18n/setting.ko.ts +2 -0
- package/src/i18n/setting.pt-BR.ts +2 -0
- package/src/i18n/setting.ru.ts +2 -0
- package/src/i18n/setting.zh-CN.ts +2 -0
- package/src/i18n/style.ja.ts +10 -10
- package/src/i18n/styling.ar.ts +2 -0
- package/src/i18n/styling.de.ts +2 -0
- package/src/i18n/styling.es.ts +2 -0
- package/src/i18n/styling.fr.ts +2 -0
- package/src/i18n/styling.he.ts +2 -0
- package/src/i18n/styling.hi.ts +2 -0
- package/src/i18n/styling.ja.ts +58 -56
- package/src/i18n/styling.ko.ts +2 -0
- package/src/i18n/styling.pt-BR.ts +2 -0
- package/src/i18n/styling.ru.ts +2 -0
- package/src/i18n/styling.zh-CN.ts +2 -0
- package/src/i18n/temporal.ja.ts +5 -5
- package/src/i18n/transitions.ja.ts +12 -12
- package/src/i18n/vehicles.ja.ts +29 -29
- package/src/i18n/voice-character.ja.ts +27 -27
- package/src/i18n/voice-delivery.ja.ts +28 -28
- package/src/i18n/weapons.ja.ts +19 -19
- package/src/index.ts +2 -0
- package/src/producer-types.ts +3 -0
- package/src/trigger-node-types.ts +3 -0
- package/src/video-overlay.ts +812 -0
|
@@ -3,12 +3,12 @@ import type { LocaleCatalogMap } from "./types.js"
|
|
|
3
3
|
const map: LocaleCatalogMap = {
|
|
4
4
|
// -------------------- Energies --------------------
|
|
5
5
|
"low": { label: "低い", description: "穏やか、ゆっくり" },
|
|
6
|
-
"mellow": { label: "
|
|
6
|
+
"mellow": { label: "メロウ", description: "リラックス、のんびり" },
|
|
7
7
|
"gentle": { label: "優しい", description: "柔らかく、繊細" },
|
|
8
|
-
"moderate": { label: "
|
|
8
|
+
"moderate": { label: "中程度", description: "バランスが取れた、安定" },
|
|
9
9
|
"building": { label: "高まる", description: "徐々に強まる" },
|
|
10
10
|
"upbeat": { label: "アップビート", description: "活気あふれる、楽観的" },
|
|
11
|
-
"driving": { label: "
|
|
11
|
+
"driving": { label: "疾走感", description: "前進する勢い" },
|
|
12
12
|
"high": { label: "高い", description: "エネルギッシュ、強烈" },
|
|
13
13
|
"explosive": { label: "爆発的", description: "弾けるような、ワイルド" },
|
|
14
14
|
"frenetic": { label: "熱狂的", description: "強烈、急速" },
|
|
@@ -18,42 +18,42 @@ const map: LocaleCatalogMap = {
|
|
|
18
18
|
"ferocious": { label: "獰猛", description: "攻撃的、容赦ない" },
|
|
19
19
|
|
|
20
20
|
// -------------------- Emotions --------------------
|
|
21
|
-
"happy": { label: "ハッピー", description: "
|
|
21
|
+
"happy": { label: "ハッピー", description: "喜びに満ちた、明るい" },
|
|
22
22
|
"joyful": { label: "歓喜", description: "陽気、祝祭的" },
|
|
23
23
|
"euphoric": { label: "陶酔", description: "恍惚、超越的" },
|
|
24
24
|
"melancholic": { label: "メランコリック", description: "もの悲しい、ほろ苦い" },
|
|
25
25
|
"sad": { label: "悲しい", description: "陰鬱、悲嘆" },
|
|
26
|
-
"longing": { label: "切望", description: "
|
|
26
|
+
"longing": { label: "切望", description: "焦がれる、胸が痛む" },
|
|
27
27
|
"lonely": { label: "孤独", description: "孤立、遠い" },
|
|
28
28
|
"angry": { label: "怒り", description: "攻撃的、敵対的" },
|
|
29
29
|
"defiant": { label: "反抗的", description: "反逆、抵抗的" },
|
|
30
30
|
"triumphant": { label: "勝ち誇る", description: "英雄的、勝利の" },
|
|
31
|
-
"victorious": { label: "勝利", description: "
|
|
31
|
+
"victorious": { label: "勝利", description: "征服、アンセム的" },
|
|
32
32
|
"tender": { label: "優しさ", description: "柔らかく、愛情深い" },
|
|
33
33
|
"romantic": { label: "ロマンティック", description: "愛情あふれる、官能的" },
|
|
34
34
|
"haunting": { label: "心に残る", description: "不気味、長く残る" },
|
|
35
35
|
"mysterious": { label: "神秘的", description: "謎めいた、秘密めいた" },
|
|
36
|
-
"menacing": { label: "脅威的", description: "
|
|
36
|
+
"menacing": { label: "脅威的", description: "威嚇的、不吉な" },
|
|
37
37
|
"playful": { label: "遊び心", description: "気まぐれ、楽しい" },
|
|
38
38
|
"mischievous": { label: "いたずらっぽい", description: "ずる賢い、悪戯好き" },
|
|
39
39
|
"anxious": { label: "不安", description: "緊張、心配" },
|
|
40
40
|
"fearful": { label: "恐怖", description: "怯えた、パニック" },
|
|
41
|
-
"hopeful": { label: "希望", description: "
|
|
42
|
-
"inspirational": { label: "感動的", description: "
|
|
41
|
+
"hopeful": { label: "希望", description: "高揚させる、憧れを抱かせる" },
|
|
42
|
+
"inspirational": { label: "感動的", description: "やる気を起こさせる、伸びやかに高揚する" },
|
|
43
43
|
"nostalgic": { label: "ノスタルジック", description: "過去を見つめる、もの悲しい" },
|
|
44
|
-
"bittersweet": { label: "ほろ苦い", description: "
|
|
44
|
+
"bittersweet": { label: "ほろ苦い", description: "甘さと悲しみが入り混じる" },
|
|
45
45
|
"peaceful": { label: "穏やか", description: "静謐、安らか" },
|
|
46
46
|
"contemplative": { label: "瞑想的", description: "内省的、思慮深い" },
|
|
47
47
|
"ethereal": { label: "幽玄", description: "この世のものでない、漂う" },
|
|
48
48
|
"awe": { label: "畏敬", description: "驚異、広大さ" },
|
|
49
49
|
|
|
50
50
|
// -------------------- Vibes --------------------
|
|
51
|
-
"cinematic": { label: "シネマティック", description: "
|
|
52
|
-
"intimate": { label: "親密", description: "
|
|
51
|
+
"cinematic": { label: "シネマティック", description: "映画音楽風、情感を呼び起こす" },
|
|
52
|
+
"intimate": { label: "親密", description: "パーソナル、距離の近い" },
|
|
53
53
|
"epic": { label: "壮大", description: "壮麗、雄大" },
|
|
54
|
-
"anthemic": { label: "アンセム", description: "
|
|
54
|
+
"anthemic": { label: "アンセム", description: "観衆が大合唱するスケール感" },
|
|
55
55
|
"lo-fi": { description: "温かく、不完全" },
|
|
56
|
-
"polished": { label: "洗練", description: "
|
|
56
|
+
"polished": { label: "洗練", description: "磨き上げられた、メインストリーム" },
|
|
57
57
|
"raw": { label: "生々しい", description: "未加工、ざらざら" },
|
|
58
58
|
"dreamy": { label: "夢見心地", description: "ぼんやり、シュール" },
|
|
59
59
|
"hypnotic": { label: "催眠的", description: "ループする、トランス状態" },
|
|
@@ -63,13 +63,13 @@ const map: LocaleCatalogMap = {
|
|
|
63
63
|
"tense": { label: "緊張", description: "サスペンスフル" },
|
|
64
64
|
"spacey": { label: "宇宙的", description: "コズミック、広大" },
|
|
65
65
|
"psychedelic": { label: "サイケデリック", description: "意識を変える、渦巻く" },
|
|
66
|
-
"noir": { label: "ノワール", description: "
|
|
66
|
+
"noir": { label: "ノワール", description: "スモーキー、ハードボイルド" },
|
|
67
67
|
"vintage": { label: "ヴィンテージ", description: "レトロ、年代物" },
|
|
68
68
|
"futuristic": { label: "未来的", description: "SF、先進的" },
|
|
69
|
-
"suspenseful": { label: "サスペンス", description: "
|
|
69
|
+
"suspenseful": { label: "サスペンス", description: "迫りくる恐怖、手に汗握る" },
|
|
70
70
|
"espionage": { label: "スパイ", description: "スパイスリラー、秘密工作" },
|
|
71
|
-
"cold": { label: "
|
|
72
|
-
"clandestine": { label: "秘密", description: "
|
|
71
|
+
"cold": { label: "冷ややか", description: "氷のような、冷淡、鋭い" },
|
|
72
|
+
"clandestine": { label: "秘密", description: "秘密裏、影に潜む、隠密" },
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
export default map
|
package/src/i18n/person.ar.ts
CHANGED
|
@@ -277,6 +277,7 @@ const map: LocaleCatalogMap = {
|
|
|
277
277
|
"face-short-beard": { label: "لحية قصيرة", description: "لحية قصيرة مهذبة" },
|
|
278
278
|
"face-full-beard": { label: "لحية كاملة", description: "لحية كاملة كثيفة" },
|
|
279
279
|
|
|
280
|
+
"texture-natural": { label: "طبيعية", description: "مسام حقيقية وتفاوت طبيعي" },
|
|
280
281
|
"texture-smooth": { label: "ناعمة", description: "بشرة ناعمة كالحرير، خالية من العيوب" },
|
|
281
282
|
"texture-wrinkled": { label: "متجعدة", description: "بشرة متقدمة في السن، مخططة بعمق" },
|
|
282
283
|
"texture-goosebumps": { label: "قشعريرة", description: "قشعريرة بارزة على البشرة" },
|
package/src/i18n/person.de.ts
CHANGED
|
@@ -278,6 +278,7 @@ const map: LocaleCatalogMap = {
|
|
|
278
278
|
"face-short-beard": { label: "Kurzer Bart", description: "Kurz getrimmter Bart" },
|
|
279
279
|
"face-full-beard": { label: "Vollbart", description: "Dichter Vollbart" },
|
|
280
280
|
// Skin Texture
|
|
281
|
+
"texture-natural": { label: "Natürlich", description: "Echte Poren, natürliche Unterschiede" },
|
|
281
282
|
"texture-smooth": { label: "Glatt", description: "Makellose, seidig glatte Haut" },
|
|
282
283
|
"texture-wrinkled": { label: "Faltig", description: "Gealterte, tief gefurchte Haut" },
|
|
283
284
|
"texture-goosebumps": { label: "Gänsehaut", description: "Erhabene Gänsehaut auf der Haut" },
|
package/src/i18n/person.es.ts
CHANGED
|
@@ -288,6 +288,7 @@ const map: LocaleCatalogMap = {
|
|
|
288
288
|
"face-full-beard": { label: "Barba Completa", description: "Barba gruesa y completa" },
|
|
289
289
|
|
|
290
290
|
// -------------------- Skin Texture --------------------
|
|
291
|
+
"texture-natural": { label: "Natural", description: "Poros reales y variación natural" },
|
|
291
292
|
"texture-smooth": { label: "Lisa", description: "Piel impecable, sedosa y lisa" },
|
|
292
293
|
"texture-wrinkled": { label: "Arrugada", description: "Piel envejecida, profundamente marcada" },
|
|
293
294
|
"texture-goosebumps": { label: "Piel de Gallina", description: "Piel de gallina levantada" },
|
package/src/i18n/person.fr.ts
CHANGED
|
@@ -277,6 +277,7 @@ const map: LocaleCatalogMap = {
|
|
|
277
277
|
"face-short-beard": { label: "Barbe courte", description: "Barbe courte taillée" },
|
|
278
278
|
"face-full-beard": { label: "Barbe pleine", description: "Barbe épaisse fournie" },
|
|
279
279
|
// Skin texture
|
|
280
|
+
"texture-natural": { label: "Naturelle", description: "Vrais pores, variations naturelles" },
|
|
280
281
|
"texture-smooth": { label: "Lisse", description: "Peau impeccable et soyeuse" },
|
|
281
282
|
"texture-wrinkled": { label: "Ridée", description: "Peau âgée, profondément ridée" },
|
|
282
283
|
"texture-goosebumps": { label: "Chair de poule", description: "Chair de poule sur la peau" },
|
package/src/i18n/person.he.ts
CHANGED
|
@@ -295,6 +295,7 @@ const map: LocaleCatalogMap = {
|
|
|
295
295
|
"face-full-beard": { label: "זקן מלא", description: "זקן עבה ומלא" },
|
|
296
296
|
|
|
297
297
|
// Skin Texture
|
|
298
|
+
"texture-natural": { label: "טבעי", description: "נקבוביות אמיתיות ושונוּת טבעית" },
|
|
298
299
|
"texture-smooth": { label: "חלק", description: "עור חלק כמשי, ללא רבב" },
|
|
299
300
|
"texture-wrinkled": { label: "מקומט", description: "עור מבוגר ומקומט עמוק" },
|
|
300
301
|
"texture-goosebumps": { label: "סמרמורת", description: "סמרמורת בולטת על העור" },
|
package/src/i18n/person.hi.ts
CHANGED
|
@@ -288,6 +288,7 @@ const map: LocaleCatalogMap = {
|
|
|
288
288
|
"face-full-beard": { label: "पूरी दाढ़ी", description: "मोटी पूरी दाढ़ी" },
|
|
289
289
|
|
|
290
290
|
// -------------------- Skin Texture --------------------
|
|
291
|
+
"texture-natural": { label: "प्राकृतिक", description: "असली रोमछिद्र और स्वाभाविक भिन्नता" },
|
|
291
292
|
"texture-smooth": { label: "चिकनी", description: "Flawless, रेशमी चिकनी त्वचा" },
|
|
292
293
|
"texture-wrinkled": { label: "झुर्रीदार", description: "वृद्ध, गहरी lined त्वचा" },
|
|
293
294
|
"texture-goosebumps": { label: "Goosebumps", description: "त्वचा पर उठे हुए goosebumps" },
|