Skip to content

fix: disable translation on key elements #380

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

Merged
merged 2 commits into from
Feb 11, 2025
Merged
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
8 changes: 4 additions & 4 deletions src/demo/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ function gtag() {
<input class="param jscolor jscolor-active" id="background" name="background" alt="Background color" data-jscolor="{ format: 'hexa' }" value="#00000000">

<label for="center">Horizontally Centered</label>
<select class="param" id="center" name="center" alt="Horizontally Centered">
<select class="param" id="center" name="center" alt="Horizontally Centered" translate="no">
<option>false</option>
<option>true</option>
</select>

<label for="vCenter">Vertically Centered</label>
<select class="param" id="vCenter" name="vCenter" alt="Vertically Centered">
<select class="param" id="vCenter" name="vCenter" alt="Vertically Centered" translate="no">
<option>false</option>
<option>true</option>
</select>
Expand All @@ -112,13 +112,13 @@ function gtag() {
</select>

<label for="repeat">Repeat</label>
<select class="param" id="repeat" name="repeat" alt="Repeat">
<select class="param" id="repeat" name="repeat" alt="Repeat" translate="no">
<option>true</option>
<option>false</option>
</select>

<label for="random">Random</label>
<select class="param" id="random" name="random" alt="Random">
<select class="param" id="random" name="random" alt="Random" translate="no">
<option>false</option>
<option>true</option>
</select>
Expand Down