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

Shift key replaced with CTRL key to translation. #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

**Tarjomak** is an extension for rapid translating from ***English*** to ***Persian (Farsi/فارسی)*** inside the web pages or as a pop-up window in all of your Internet explorers.

- To get the pop-up window, the only thing you need to do is to ***Select*** the text and tap on `SHIFT` key.
- To get the pop-up window, the only thing you need to do is to ***Select*** the text and tap on `Ctrl` key.
- Also you can select more than one word or paragraph and then click on the extension’s icon to have the whole translated text.

---------------
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h2>ترجمک، افزونه‌ای متن‌باز برای ترجمه سری
</div>
<div class="Hero--Subtitle">
<p class="lead">
ترجمک افزونه‌ای متن‌باز برای ترجمه سریع در داخل صفحات وب و یا به صورت پاپ‌آپ در مرورگر شما می باشد. فقط کافیست بعد از انتخاب متن کلید <span>SHIFT</span> را یک بار بزنید.
ترجمک افزونه‌ای متن‌باز برای ترجمه سریع در داخل صفحات وب و یا به صورت پاپ‌آپ در مرورگر شما می باشد. فقط کافیست بعد از انتخاب متن کلید <span>CTRL</span> را یک بار بزنید.
<br>
ترجمک از API قدرتمند <a href="https://targoman.ir/" style="color: #637282;">ترگمان</a> استفاده میکند.
<br>
Expand Down Expand Up @@ -205,7 +205,7 @@ <h4 class="feature-title">متن باز</h4>
<div class="u-icon u-icon__circle u-icon__lg bg-dimped__purple"><img alt="Image " src="images/demo/icons/plus-icon.svg"></div>
<div class="feature-card__body">
<h4 class="feature-title">ترجمه با یک کلیک</h4>
<p>اگر زدن کلید SHIFT برایتان سخت است! کافیست با موس روی آیکون ترجمک کلیک کنید و ترجمه خود را ببینید.</p>
<p>اگر زدن کلید Ctrl برایتان سخت است! کافیست با موس روی آیکون ترجمک کلیک کنید و ترجمه خود را ببینید.</p>
<!-- <a href="# " class="btn btn-link btn-link==secondary ">Learn more
<i class="icon ion-ios-arrow-forward "></i>
</a> -->
Expand Down
2 changes: 1 addition & 1 deletion help.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<a href="#"><img class="logo" src="/icons/logo-tarjomak.png" /></a>
<div class="infobox">
<h3>راهنمای ترجمک:</h3>
۱ - برای <b>ترجمه سریع</b>، متن مورد نظر را انتخاب نموده و سپس کلیک <span>SHIFT</span> را یک‌بار بزنید.
۱ - برای <b>ترجمه سریع</b>، متن مورد نظر را انتخاب نموده و سپس کلیک <span>CTRL</span> را یک‌بار بزنید.
</br>
۲ - چنانچه میخواهید متنی را به صورت <b>مستقیم</b> ( آنچه که در ذهن دارید) ترجمه کنید از آیکون افزونه ترجمک
(<img src="/icons/icon48.png" />) بر روی نوار ابزار مرورگر و یا میانبر (Alt+Q) استفاده نمایید.
Expand Down
2 changes: 1 addition & 1 deletion popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<main class="container">
<a href="#"><img class="logo" src="/icons/logo-tarjomak.png" /></a>
<div class="help">
<a href="help.html" class="new-tab">راهنما:</a> برای ترجمه سریع، متن مورد نظر را انتخاب نموده و کلید <span>SHIFT</span>
<a href="help.html" class="new-tab">راهنما:</a> برای ترجمه سریع، متن مورد نظر را انتخاب نموده و کلید <span>CTRL</span>
را یک‌بار بزنید.
</div>

Expand Down
2 changes: 1 addition & 1 deletion script/contentscript/tarjomak.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ var Translate = {
},
keydown: function (e) {
this.hideContainer();
if (e.shiftKey) {
if (e.ctrltKey) {
if (!this.isInput(e.target) || (this.isInput(e.target) && !allEnv.options.IGNORE_INPUTS)) {
var text = this.getSelectionText().trim();
if (text !== "") {
Expand Down