8000 fix: disable translation on key elements by whiteSHADOW1234 · Pull Request #380 · DenverCoder1/readme-typing-svg · GitHub
[go: up one dir, main page]

Skip to content
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

fix: disable translation on key elements #380

Merged
merged 2 commits into from
Feb 11, 2025
Merged
Changes from all commits
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
16 changes: 8 additions & 8 deletions src/demo/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ function gtag() {

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

<label for="vCenter">Vertically Centered</label>
<select class="param" id="vCenter" name="vCenter" alt="Vertically Centered">
<option>false</option>
<option>true</option>
<option value="false">false</option>
<option value="true">true</option>
</select>

<label for="multiline">Multiline</label>
Expand All @@ -113,14 +113,14 @@ function gtag() {

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

<label for="random">Random</label>
<select class="param" id="random" name="random" alt="Random">
<option>false</option>
<option>true</option>
<option value="false">false</option>
<option value="true">true</option>
</select>

<label for="dimensions" title="Width ✕ Height">Width ✕ Height</label>
Expand Down
0