-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Re-enabled the following: - German - Spanish - French - Hungarian - Italian - Japanese - Added new languages: - Greek - Ukranian
- Loading branch information
1 parent
7d8190a
commit e656577
Showing
233 changed files
with
7,021 additions
and
3,311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
const locale = 'de_DE'; | ||
import { de_DE as localeData } from './strings' | ||
|
||
const backups = localeData.backups; | ||
const guide = localeData.guide; | ||
const extras = localeData.extras; | ||
const other = localeData.other; | ||
|
||
const sidebar_extras = { | ||
text: extras, | ||
items: [ | ||
{ text: localeData.pages["dsiware-backups"], link: `/${locale}/dsiware-backups` }, | ||
{ text: localeData.pages["dumping-game-cards"], link: `/${locale}/dumping-game-cards` }, | ||
{ text: localeData.pages["file-extensions-windows"], link: `/${locale}/file-extensions-windows` }, | ||
{ text: localeData.pages["restoring-nand"], link: `/${locale}/restoring-nand` }, | ||
{ text: localeData.pages["sd-card-setup"], link: `/${locale}/sd-card-setup` }, | ||
{ text: localeData.pages["uninstalling-unlaunch"], link: `/${locale}/uninstalling-unlaunch` } | ||
] | ||
} | ||
|
||
const sidebar_other = { | ||
text: other, | ||
items: [ | ||
{ text: localeData.pages["faq"], link: `/${locale}/faq` }, | ||
{ text: localeData.pages["troubleshooting"], link: `/${locale}/troubleshooting` }, | ||
{ text: localeData.pages["credits"], link: `/${locale}/credits` }, | ||
{ text: localeData.pages["site-navigation"], link: `/${locale}/site-navigation` } | ||
] | ||
} | ||
|
||
const themeConfig = { | ||
langMenuLabel: localeData.langMenuLabel, | ||
darkModeSwitchLabel: localeData.darkModeSwitchLabel, | ||
darkModeSwitchTitle: localeData.darkModeSwitchTitle, | ||
lightModeSwitchTitle: localeData.lightModeSwitchTitle, | ||
sidebarMenuLabel: localeData.sidebarMenuLabel, | ||
returnToTopLabel: localeData.returnToTopLabel, | ||
|
||
nav: [ | ||
{ text: localeData.pages["sd-card-setup"], link: `/${locale}/sd-card-setup` }, | ||
{ text: localeData.pages["troubleshooting"], link: `/${locale}/troubleshooting` }, | ||
{ text: localeData.pages["faq"], link: `/${locale}/faq` }, | ||
{ | ||
text: backups, | ||
items: [ | ||
{ text: localeData.pages["dsiware-backups"], link: `/${locale}/dsiware-backups` }, | ||
{ text: localeData.pages["dumping-game-cards"], link: `/${locale}/dumping-game-cards` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` } | ||
] | ||
}, | ||
{ text: localeData.pages["uninstalling-unlaunch"], link: `/${locale}/uninstalling-unlaunch` } | ||
], | ||
sidebar: { | ||
[`/get-started`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-exploit"], link: `/${locale}/launching-the-exploit` }, | ||
{ text: localeData.pages["launching-the-browser-exploit"], link: `/${locale}/launching-the-browser-exploit` }, | ||
{ text: localeData.pages["launching-the-flipnote-exploit"], link: `/${locale}/launching-the-flipnote-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/launching-the-browser-exploit`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-browser-exploit"], link: `/${locale}/launching-the-browser-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/launching-the-flipnote-exploit`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-flipnote-exploit"], link: `/${locale}/launching-the-flipnote-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-exploit"], link: `/${locale}/launching-the-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
] | ||
} | ||
}; | ||
|
||
export default { | ||
lang: "de", | ||
label: "Deutsch", | ||
title: localeData.title, | ||
description: localeData.description, | ||
themeConfig: themeConfig | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
const locale = 'el_GR'; | ||
import { el_GR as localeData } from './strings' | ||
|
||
const backups = localeData.backups; | ||
const guide = localeData.guide; | ||
const extras = localeData.extras; | ||
const other = localeData.other; | ||
|
||
const sidebar_extras = { | ||
text: extras, | ||
items: [ | ||
{ text: localeData.pages["dsiware-backups"], link: `/${locale}/dsiware-backups` }, | ||
{ text: localeData.pages["dumping-game-cards"], link: `/${locale}/dumping-game-cards` }, | ||
{ text: localeData.pages["file-extensions-windows"], link: `/${locale}/file-extensions-windows` }, | ||
{ text: localeData.pages["restoring-nand"], link: `/${locale}/restoring-nand` }, | ||
{ text: localeData.pages["sd-card-setup"], link: `/${locale}/sd-card-setup` }, | ||
{ text: localeData.pages["uninstalling-unlaunch"], link: `/${locale}/uninstalling-unlaunch` } | ||
] | ||
} | ||
|
||
const sidebar_other = { | ||
text: other, | ||
items: [ | ||
{ text: localeData.pages["faq"], link: `/${locale}/faq` }, | ||
{ text: localeData.pages["troubleshooting"], link: `/${locale}/troubleshooting` }, | ||
{ text: localeData.pages["credits"], link: `/${locale}/credits` }, | ||
{ text: localeData.pages["site-navigation"], link: `/${locale}/site-navigation` } | ||
] | ||
} | ||
|
||
const themeConfig = { | ||
langMenuLabel: localeData.langMenuLabel, | ||
darkModeSwitchLabel: localeData.darkModeSwitchLabel, | ||
darkModeSwitchTitle: localeData.darkModeSwitchTitle, | ||
lightModeSwitchTitle: localeData.lightModeSwitchTitle, | ||
sidebarMenuLabel: localeData.sidebarMenuLabel, | ||
returnToTopLabel: localeData.returnToTopLabel, | ||
|
||
nav: [ | ||
{ text: localeData.pages["sd-card-setup"], link: `/${locale}/sd-card-setup` }, | ||
{ text: localeData.pages["troubleshooting"], link: `/${locale}/troubleshooting` }, | ||
{ text: localeData.pages["faq"], link: `/${locale}/faq` }, | ||
{ | ||
text: backups, | ||
items: [ | ||
{ text: localeData.pages["dsiware-backups"], link: `/${locale}/dsiware-backups` }, | ||
{ text: localeData.pages["dumping-game-cards"], link: `/${locale}/dumping-game-cards` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` } | ||
] | ||
}, | ||
{ text: localeData.pages["uninstalling-unlaunch"], link: `/${locale}/uninstalling-unlaunch` } | ||
], | ||
sidebar: { | ||
[`/get-started`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-exploit"], link: `/${locale}/launching-the-exploit` }, | ||
{ text: localeData.pages["launching-the-browser-exploit"], link: `/${locale}/launching-the-browser-exploit` }, | ||
{ text: localeData.pages["launching-the-flipnote-exploit"], link: `/${locale}/launching-the-flipnote-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/launching-the-browser-exploit`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-browser-exploit"], link: `/${locale}/launching-the-browser-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/launching-the-flipnote-exploit`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-flipnote-exploit"], link: `/${locale}/launching-the-flipnote-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-exploit"], link: `/${locale}/launching-the-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
] | ||
} | ||
}; | ||
|
||
export default { | ||
lang: "el", | ||
label: "Ελληνικά", | ||
title: localeData.title, | ||
description: localeData.description, | ||
themeConfig: themeConfig | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
const locale = 'es_ES'; | ||
import { es_ES as localeData } from './strings' | ||
|
||
const backups = localeData.backups; | ||
const guide = localeData.guide; | ||
const extras = localeData.extras; | ||
const other = localeData.other; | ||
|
||
const sidebar_extras = { | ||
text: extras, | ||
items: [ | ||
{ text: localeData.pages["dsiware-backups"], link: `/${locale}/dsiware-backups` }, | ||
{ text: localeData.pages["dumping-game-cards"], link: `/${locale}/dumping-game-cards` }, | ||
{ text: localeData.pages["file-extensions-windows"], link: `/${locale}/file-extensions-windows` }, | ||
{ text: localeData.pages["restoring-nand"], link: `/${locale}/restoring-nand` }, | ||
{ text: localeData.pages["sd-card-setup"], link: `/${locale}/sd-card-setup` }, | ||
{ text: localeData.pages["uninstalling-unlaunch"], link: `/${locale}/uninstalling-unlaunch` } | ||
] | ||
} | ||
|
||
const sidebar_other = { | ||
text: other, | ||
items: [ | ||
{ text: localeData.pages["faq"], link: `/${locale}/faq` }, | ||
{ text: localeData.pages["troubleshooting"], link: `/${locale}/troubleshooting` }, | ||
{ text: localeData.pages["credits"], link: `/${locale}/credits` }, | ||
{ text: localeData.pages["site-navigation"], link: `/${locale}/site-navigation` } | ||
] | ||
} | ||
|
||
const themeConfig = { | ||
langMenuLabel: localeData.langMenuLabel, | ||
darkModeSwitchLabel: localeData.darkModeSwitchLabel, | ||
darkModeSwitchTitle: localeData.darkModeSwitchTitle, | ||
lightModeSwitchTitle: localeData.lightModeSwitchTitle, | ||
sidebarMenuLabel: localeData.sidebarMenuLabel, | ||
returnToTopLabel: localeData.returnToTopLabel, | ||
|
||
nav: [ | ||
{ text: localeData.pages["sd-card-setup"], link: `/${locale}/sd-card-setup` }, | ||
{ text: localeData.pages["troubleshooting"], link: `/${locale}/troubleshooting` }, | ||
{ text: localeData.pages["faq"], link: `/${locale}/faq` }, | ||
{ | ||
text: backups, | ||
items: [ | ||
{ text: localeData.pages["dsiware-backups"], link: `/${locale}/dsiware-backups` }, | ||
{ text: localeData.pages["dumping-game-cards"], link: `/${locale}/dumping-game-cards` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` } | ||
] | ||
}, | ||
{ text: localeData.pages["uninstalling-unlaunch"], link: `/${locale}/uninstalling-unlaunch` } | ||
], | ||
sidebar: { | ||
[`/get-started`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-exploit"], link: `/${locale}/launching-the-exploit` }, | ||
{ text: localeData.pages["launching-the-browser-exploit"], link: `/${locale}/launching-the-browser-exploit` }, | ||
{ text: localeData.pages["launching-the-flipnote-exploit"], link: `/${locale}/launching-the-flipnote-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/launching-the-browser-exploit`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-browser-exploit"], link: `/${locale}/launching-the-browser-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/launching-the-flipnote-exploit`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-flipnote-exploit"], link: `/${locale}/launching-the-flipnote-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
], | ||
[`/`]: [ | ||
{ | ||
text: guide, | ||
items: [ | ||
{ text: localeData.pages["get-started"], link: `/${locale}/get-started`}, | ||
{ text: localeData.pages["launching-the-exploit"], link: `/${locale}/launching-the-exploit` }, | ||
{ text: localeData.pages["dumping-nand"], link: `/${locale}/dumping-nand` }, | ||
{ text: localeData.pages["installing-unlaunch"], link: `/${locale}/installing-unlaunch` } | ||
] | ||
}, | ||
sidebar_extras, | ||
sidebar_other | ||
] | ||
} | ||
}; | ||
|
||
export default { | ||
lang: "es", | ||
label: "Español", | ||
title: localeData.title, | ||
description: localeData.description, | ||
themeConfig: themeConfig | ||
} |
Oops, something went wrong.