This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit of language select dialog
- Loading branch information
1 parent
1eaf340
commit 6c34d70
Showing
6 changed files
with
110 additions
and
14 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,20 @@ | ||
<div class="switch-language-dialog modal"> | ||
<div class="modal-header"> | ||
<a href="#" class="close" data-dismiss="modal">×</a> | ||
<h1 class="dialog-title">{{SWITCH_LANGUAGE_TITLE}}</h1> | ||
</div> | ||
<div class="modal-body"> | ||
<p class="dialog-message"> | ||
{{SWITCH_LANGUAGE_MESSAGE}} | ||
<select> | ||
{{#languages}} | ||
<option value="{{language}}">{{label}}</option> | ||
{{/languages}} | ||
</select> | ||
</p> | ||
</div> | ||
<div class="modal-footer"> | ||
<button class="dialog-button btn primary" data-button-id="ok">{{OK}}</button> | ||
<button class="dialog-button btn left" data-button-id="cancel">{{CANCEL}}</button> | ||
</div> | ||
</div> |
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