Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n: replace sync for dt hunts #386

Merged
merged 3 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion ui/raidboss/data/07-dt/hunts/heritage_found.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,32 @@ const triggerSet: TriggerSet<Data> = {
},
// ****** S-RANK: Atticus the Primogenitor ****** //
],
timelineReplace: [],
timelineReplace: [
{
'locale': 'de',
'replaceSync': {
'Heshuala': 'Heshuala',
'Urna Variabilis': 'Urna Variabilis',
'Atticus the Primogenitor': 'Atticus d(?:er|ie|as) Primogenitor',
},
},
{
'locale': 'fr',
'replaceSync': {
'Heshuala': 'Heshuala',
'Urna Variabilis': 'pod variant',
'Atticus the Primogenitor': 'Atticus le primogéniteur',
},
},
{
'locale': 'ja',
'replaceSync': {
'Heshuala': 'ヘシュワラ',
'Urna Variabilis': 'ヴァリアポッド',
'Atticus the Primogenitor': '先駆けのアティカス',
},
},
],
};

export default triggerSet;
27 changes: 26 additions & 1 deletion ui/raidboss/data/07-dt/hunts/kozamauka.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,32 @@ const triggerSet: TriggerSet<Data> = {
},
// ****** S-RANK: Ihnuxokiy ****** //
],
timelineReplace: [],
timelineReplace: [
{
'locale': 'de',
'replaceSync': {
'Pkuucha': 'Pkuucha',
'The Raintriller': 'Regentriller',
'Ihnuxokiy': 'Ihnuxokiy',
},
},
{
'locale': 'fr',
'replaceSync': {
'Pkuucha': 'Pkuucha',
'The Raintriller': 'Trilleur de pluie',
'Ihnuxokiy': 'Ihnuxokiy',
},
},
{
'locale': 'ja',
'replaceSync': {
'Pkuucha': 'プクーチャ',
'The Raintriller': 'レイントリラー',
'Ihnuxokiy': 'イヌショキー',
},
},
],
};

export default triggerSet;
27 changes: 26 additions & 1 deletion ui/raidboss/data/07-dt/hunts/living_memory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,32 @@ const triggerSet: TriggerSet<Data> = {
},
// ****** S-RANK: The Forecaster ****** //
],
timelineReplace: [],
timelineReplace: [
{
'locale': 'de',
'replaceSync': {
'Cat\'s Eye': 'Katzenauge',
'Sally the Sweeper': 'Sally d(?:er|ie|as) Fegerin',
'The Forecaster': 'Wetterreporter',
},
},
{
'locale': 'fr',
'replaceSync': {
'Cat\'s Eye': 'Œil-de-chat',
'Sally the Sweeper': 'Sally la balayeuse',
'The Forecaster': 'Monsieur météo',
},
},
{
'locale': 'ja',
'replaceSync': {
'Cat\'s Eye': 'キャッツアイ',
'Sally the Sweeper': 'サリー・ザ・スイーパー',
'The Forecaster': 'ウェザーリポーター',
},
},
],
};

export default triggerSet;
27 changes: 26 additions & 1 deletion ui/raidboss/data/07-dt/hunts/shaaloani.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,32 @@ const triggerSet: TriggerSet<Data> = {
},
// ****** S-RANK: Sansheya ****** //
],
timelineReplace: [],
timelineReplace: [
{
'locale': 'de',
'replaceSync': {
'Keheniheyamewi': 'Keheniheyamewi',
'Yehehetoaua\'pyo': 'Yehehetoaua\'pyo',
'Sansheya': 'Sansheya',
},
},
{
'locale': 'fr',
'replaceSync': {
'Keheniheyamewi': 'Keheniheyamewi',
'Yehehetoaua\'pyo': 'Yehehetoaua\'pyo',
'Sansheya': 'Sansheya',
},
},
{
'locale': 'ja',
'replaceSync': {
'Keheniheyamewi': 'ケヘニヘヤメウィ',
'Yehehetoaua\'pyo': 'エヘヘトーワポ',
'Sansheya': 'サンシェヤ',
},
},
],
};

export default triggerSet;
27 changes: 26 additions & 1 deletion ui/raidboss/data/07-dt/hunts/urqopacha.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,32 @@ const triggerSet: TriggerSet<Data> = {
},
// ****** S-RANK: Kirlirger the Abhorrent ****** //
],
timelineReplace: [],
timelineReplace: [
{
'locale': 'de',
'replaceSync': {
'Nechuciho': 'Nechuciho',
'Queen Hawk': 'Falkenkönigin',
'Kirlirger the Abhorrent': 'Kirlirger d(?:er|ie|as) Abscheuliche[rs]?',
},
},
{
'locale': 'fr',
'replaceSync': {
'Nechuciho': 'Nechukiho',
'Queen Hawk': 'reine des guêpes',
'Kirlirger the Abhorrent': 'Kirlirger l\'abominable',
},
},
{
'locale': 'ja',
'replaceSync': {
'Nechuciho': 'ネチュキホ',
'Queen Hawk': 'クイーンホーク',
'Kirlirger the Abhorrent': '厭忌のキーリーゲー',
},
},
],
};

export default triggerSet;
Loading