-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Changelog ## lang\de.json * Added German translation. Credit to [Karsten W](https://github.com/KarstenW76) for help in translating the module. ## lang\en.json * Added a "Common" section for keys that are used in more than one location. * Added "Visible" key to "Common" * Added "Hidden" key to "Common" * Added "Objective" key to "Editor" * Added "ActiveQuests" key to "Tracker" * Added "AddQuest" key to "Tracker" * Added "Delete" key to "Tracker" * Added "Edit" key to "Tracker" * Added "Expand" key to "Tracker" * Added "Minimize" key to "Tracker" * Added "Title" key to "Tracker" * Added "Incomplete" key to "Tracker" * Added "Complete" key to "Tracker" * Added "Failed" key to "Tracker" ## module.json * Incremented module build version from "0.1.2" to "0.1.3" * Added German to language options. ## scripts\helpers\settings.json * Renamed "Active Quests" hidden setting to "Expanded Quests" for clarity ## scripts\ui\questeditor.js * Removed line 134 to stop localizing text. This should be done in the template for consistency. ## scripts\ui\ui-manager.js * Changed `#controls` from an object to a getter function to fix a bug where the object would attempt to initialize before `game.i18n` exists. * Changed `#headerButtons` from an object to a getter function to fix a bug where the object would attempt to initialize before `game.i18n` exists. ## scripts\ui\editor.hbs * Added localized `title` attribute to eye icon to state visibility. * Added localized `title` attribute to eye-slash icon to state visibility. * Replaced hardcoded text "Objectives:" with localized string * Replaced data reference of `saveText` to a localized string as this value is no longer provided by `scripts\ui\questeditor.js` ## templates\tracker-body.hbs * Replaced hardcoded text "Visible" with localized string * Replaced hardcoded text "Hidden" with localized string * Replaced hardcoded text "Edit" with localized string * Replaced hardcoded text "Delete" with localized string * Added localized `title` attribute to complete icon * Added localized `title` attribute to failed icon * Added localized `title` attribute to incomplete icon ## templates\tracker-body.hbs * Added localized `title` attribute to expand icon * Replaced hardcoded text "Active Quests" with localized string * Replaced hardcoded text "Add Quest" with localized string * Added localized `title` attribute to minimize icon
- Loading branch information
1 parent
8a3c3ff
commit 23572df
Showing
9 changed files
with
128 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"SimplerQuests": { | ||
"Common": { | ||
"Visible": "Sichtbar", | ||
"Hidden": "Versteckt" | ||
}, | ||
"Controls": { | ||
"Tracker": "Quest-Log" | ||
}, | ||
"DeleteDialog": { | ||
"Title": "Quest löschen", | ||
"Message": "Bist du sicher, dass du \"{title}\" löschen möchtest?" | ||
}, | ||
"Editor": { | ||
"Title": "Quest Editor", | ||
"SaveText": "Speichern", | ||
"ViewStyle": "Ansicht", | ||
"Objectives": "Ziele:" | ||
}, | ||
"Quest": { | ||
"New": "Neue Quest" | ||
}, | ||
"Settings": { | ||
"ExpandMultiple": { | ||
"Name": "Erlaube das Erweitern mehrerer Quests", | ||
"Hint": "Wenn diese Option aktiviert ist, kannst du mehrere Quests im Log erweitern. Ist sie deaktiviert, werden beim Erweitern einer Quest alle anderen geschlossen (das spart Platz)." | ||
}, | ||
"ViewStyle": { | ||
"Name": "Standard-Ansicht für Quests", | ||
"Hint": "Steuert, wie Quest-Ziele den Spielern angezeigt werden. Enthält keine geheimen Ziele.", | ||
"All": "Alle Quest-Ziele", | ||
"Next": "Nur bis zum nächsten Quest-Ziel", | ||
"Complete": "Nur abgeschlossene Quest-Ziele" | ||
}, | ||
"TrackerDocked": { | ||
"Name": "Quest-Log andocken", | ||
"Hint": "Wenn aktiviert, ist das Quest-Log an die Seitenleiste angedockt. Wenn deaktiviert, ist das Quest-Log ein schwebendes Fenster. (Neuladen erforderlich)" | ||
}, | ||
"TrackerOffset": { | ||
"Name": "Quest-Log verschieben", | ||
"Hint": "Passt die Position des Quest-Logs an, wenn es angedockt ist. Je höher die Zahl, desto niedriger die Position des Quest-Logs." | ||
}, | ||
"TrackerWidth": { | ||
"Name": "Quest-Log Breite", | ||
"Hint": "Legt die Breite (in Pixeln) des Quest-Logs fest, wenn es angedockt ist. Hat keine Auswirkung, wenn schwebend.." | ||
}, | ||
"TrackerMaxHeight": { | ||
"Name": "Quest-Log Max Höhe", | ||
"Hint": "Legt die maximale Höhe (in Pixeln) des Quest-Logs fest, wenn es angedockt ist. Hat keine Auswirkung, wenn schwebend." | ||
} | ||
}, | ||
"Tracker": { | ||
"ActiveQuests": "Aktive Quests", | ||
"AddQuest": "Quest hinzufügen", | ||
"Delete": "Löschen", | ||
"Edit": "Bearbeiten", | ||
"Expand": "Erweitern", | ||
"Minimize": "Minimieren", | ||
"Title": "Quest-Tracker", | ||
"Incomplete": "Unvollständig", | ||
"Complete": "Abgeschlossen", | ||
"Failed": "Gescheitert" | ||
} | ||
} | ||
} |
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
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
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