Skip to content

Commit

Permalink
i18n: add first set of top +missing ex5 (#5238)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akurosia authored Jan 25, 2023
1 parent 8c567c6 commit 3ee16f0
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ui/raidboss/data/06-ew/trial/rubicante.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ const triggerSet: TriggerSet<Data> = {
unknown: Outputs.unknown,
avoidCone: {
en: 'Avoid cone (from ${dir})',
de: 'Weiche dem KEgel aus (von ${dir})',
ko: '${dir}의 삼각형 장판 피하기',
},
},
Expand Down Expand Up @@ -264,7 +265,6 @@ const triggerSet: TriggerSet<Data> = {
timelineReplace: [
{
'locale': 'de',
'missingTranslations': true,
'replaceSync': {
'Circle of Purgatory': 'Kreis der Läuterung',
'(?<!Greater )Flamesent': 'Flammengesandt(?:e|er|es|en)',
Expand Down
67 changes: 67 additions & 0 deletions ui/raidboss/data/06-ew/ultimate/the_omega_protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ const triggerSet: TriggerSet<Data> = {
outputStrings: {
text: {
en: '${num} (with ${player})',
de: '${num} (mit ${player})',
},
unknown: Outputs.unknown,
},
Expand All @@ -149,12 +150,15 @@ const triggerSet: TriggerSet<Data> = {
output.responseOutputStrings = {
tower: {
en: 'Tower 1',
de: 'Turm 1',
},
tether: {
en: 'Tether 1',
de: 'Verbindung 1',
},
numNoMechanic: {
en: '1',
de: '1',
},
};

Expand All @@ -178,12 +182,15 @@ const triggerSet: TriggerSet<Data> = {
output.responseOutputStrings = {
tower: {
en: 'Tower ${num}',
de: 'Turm ${num}',
},
tether: {
en: 'Tether ${num}',
de: 'Verbindung ${num}',
},
numNoMechanic: {
en: '${num}',
de: '${num}',
},
};

Expand Down Expand Up @@ -212,9 +219,11 @@ const triggerSet: TriggerSet<Data> = {
output.responseOutputStrings = {
lineStack: {
en: '1',
de: '1',
},
spread: {
en: '1 Out (on YOU)',
de: '1 Raus (auf Dir)',
},
};

Expand All @@ -236,9 +245,11 @@ const triggerSet: TriggerSet<Data> = {
output.responseOutputStrings = {
lineStack: {
en: '${num}',
de: '${num}',
},
spread: {
en: '${num} Out (on YOU)',
de: '${num} Raus (auf Dir)',
},
};

Expand All @@ -252,6 +263,62 @@ const triggerSet: TriggerSet<Data> = {
},
},
],
timelineReplace: [
{
'locale': 'de',
'replaceSync': {
'Omega': 'Omega',
},
'replaceText': {
'Atomic Ray': 'Atomstrahlung',
'Blaster': 'Blaster',
'Condensed Wave Cannon Kyrios': 'Hochleistungswellenkanone P',
'Diffuse Wave Cannon Kyrios': 'Streuende Wellenkanone P',
'Flame Thrower': 'Flammensturm',
'Guided Missile Kyrios': 'Lenkrakete P',
'Pantokrator': 'Pantokrator',
'Program Loop': 'Programmschleife',
'Storage Violation': 'Speicherverletzung S',
'(?<! )Wave Cannon Kyrios': 'Wellenkanone P',
},
},
{
'locale': 'fr',
'replaceSync': {
'Omega': 'Oméga',
},
'replaceText': {
'Atomic Ray': 'Rayon atomique',
'Blaster': 'Électrochoc',
'Condensed Wave Cannon Kyrios': 'Canon plasma surchargé P',
'Diffuse Wave Cannon Kyrios': 'Canon plasma diffuseur P',
'Flame Thrower': 'Crache-flammes',
'Guided Missile Kyrios': 'Missile guidé P',
'Pantokrator': 'Pantokrator',
'Program Loop': 'Boucle de programme',
'Storage Violation': 'Corruption de données S',
'(?<! )Wave Cannon Kyrios': 'Canon plasma P',
},
},
{
'locale': 'ja',
'replaceSync': {
'Omega': 'オメガ',
},
'replaceText': {
'Atomic Ray': 'アトミックレイ',
'Blaster': 'ブラスター',
'Condensed Wave Cannon Kyrios': '高出力波動砲P',
'Diffuse Wave Cannon Kyrios': '拡散波動砲P',
'Flame Thrower': '火炎放射',
'Guided Missile Kyrios': '誘導ミサイルP',
'Pantokrator': 'パントクラトル',
'Program Loop': 'サークルプログラム',
'Storage Violation': '記憶汚染除去S',
'(?<! )Wave Cannon Kyrios': '波動砲P',
},
},
],
};

export default triggerSet;

0 comments on commit 3ee16f0

Please sign in to comment.