generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added languages and made import export buttons do stuff
- Loading branch information
1 parent
c2bf3ef
commit 301d1c4
Showing
11 changed files
with
273 additions
and
12 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
{{! Enabled }} | ||
<div class="form-group"> | ||
<label for="settings.enabled" data-tooltip="{{localize "pf2e-rpg-numbers.module-settings.enabled.hint"}}"> | ||
{{localize "pf2e-rpg-numbers.module-settings.enabled.name"}} | ||
</label> | ||
<input type="checkbox" id="settings.enabled" name="settings.enabled" {{checked settings.enabled}} /> | ||
</div> | ||
<span> | ||
{{! Enabled }} | ||
<div class="form-group"> | ||
<label for="settings.enabled" data-tooltip="{{localize "pf2e-rpg-numbers.module-settings.enabled.hint"}}"> | ||
{{localize "pf2e-rpg-numbers.module-settings.enabled.name"}} | ||
</label> | ||
<input type="checkbox" id="settings.enabled" name="settings.enabled" {{checked settings.enabled}} /> | ||
</div> | ||
<button id="pf2e-rpg-export"> | ||
<i class="fas fa-file-export"></i> | ||
{{localize "pf2e-rpg-numbers.menu.settings.export"}} | ||
</button> | ||
<button id="pf2e-rpg-import"> | ||
<i class="fas fa-file-import"></i> | ||
{{localize "pf2e-rpg-numbers.menu.settings.import"}} | ||
</button> | ||
</span> |