Bitcoin Forum
September 16, 2026, 03:07:02 PM *
News: Latest Bitcoin Core release: 31.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [Userscript] Automatically translate Non-English text to English while posting  (Read 307 times)
Sterlino (OP)
Jr. Member
*
Online Online

Activity: 40
Merit: 16


View Profile
September 08, 2026, 06:27:58 PM
Merited by Don Pedro Dinero (10)
 #1

Here, many users may not be proficient in English. They also have to post in English. So, they write in their native language and use Google Translate or another translator. With the help of this userscript, if you paste a non-English language directly, it will be translated into English or if you type directly in your native language, it will be automatically translated into English after the sentence is finished. I apologize if someone has already created a script like this before but I did not find any such script, so I thought it could be shared on the forum.  It may be convenient for users. I used AI as a coding assistant to help with development quickly and debugging.

How it will work.

Chrome's built-in language detector and translator API have been used. As a drawback, it cannot be used in firefox. Because the built-in free translator API as cannot be used directly in firefox. It will support all languages available in Chrome Translator API.

Features

  • Pasting and typing  native language text will automatically translate to English.
  • Automatic translation will occur when the sentence is finished
  • A debounce delay of about 450ms is given after typing. So that processing starts after sentence completion normally so that it doesn't start repeatedly while typing
  • No API, no popup, no extra button or interface, simple and minimalistic

Example



Userscript

Code:
// // ==UserScript==
// @name         Bitcointalk Auto English
// @namespace    https://github.com/SterlinoBTT
// @version      1.0.0
// @description  Automatically translates supported non-English text to English while writing  or pasting on Bitcointalk.
// @author       Sterlino
// @match        *://bitcointalk.org/*
// @match        *://www.bitcointalk.org/*
// @run-at       document-idle
// @grant        none
// @inject-into  page
// ==/UserScript==

(function () {
    "use strict";

    const MESSAGE_BOX_SELECTOR = 'textarea[name="message"]';
    const TARGET_LANGUAGE = "en";
    const TYPING_DELAY = 450;
    const SENTENCE_TERMINAL = /\p{Sentence_Terminal}/u;
    const STORAGE_KEY = "bttAutoEnglishLanguages";

    let messageBox = null;
    let detectorPromise = null;
    let typingTimer = null;
    let composing = false;
    let internalChange = false;
    let processing = false;

    const translatorPromises = new Map();
    const jobs = [];

    function hasBuiltInApis() {
        return typeof LanguageDetector !== "undefined" && typeof Translator !== "undefined";
    }

    function readKnownLanguages() {
        try {
            const value = JSON.parse(localStorage.getItem(STORAGE_KEY) || "[]");
            return Array.isArray(value) ? value.filter(Boolean) : [];
        } catch (error) {
            return [];
        }
    }

    function rememberLanguage(language) {
        if (!language || language === TARGET_LANGUAGE) {
            return;
        }

        const languages = new Set(readKnownLanguages());
        languages.add(language);

        try {
            localStorage.setItem(STORAGE_KEY, JSON.stringify(Array.from(languages).slice(-12)));
        } catch (error) {
            // Ignore storage errors.
        }
    }

    function createDetector() {
        if (!hasBuiltInApis()) {
            return Promise.resolve(null);
        }

        if (!detectorPromise) {
            detectorPromise = LanguageDetector.create().catch(function () {
                detectorPromise = null;
                return null;
            });
        }

        return detectorPromise;
    }

    function createTranslator(sourceLanguage) {
        if (!sourceLanguage || sourceLanguage === TARGET_LANGUAGE) {
            return Promise.resolve(null);
        }

        if (!translatorPromises.has(sourceLanguage)) {
            const promise = Translator.create({
                sourceLanguage: sourceLanguage,
                targetLanguage: TARGET_LANGUAGE
            }).then(function (translator) {
                rememberLanguage(sourceLanguage);
                return translator;
            }).catch(function () {
                translatorPromises.delete(sourceLanguage);
                return null;
            });

            translatorPromises.set(sourceLanguage, promise);
        }

        return translatorPromises.get(sourceLanguage);
    }

    function warmUpFromUserAction() {
        createDetector();

        const languages = new Set(readKnownLanguages());

        for (const job of jobs) {
            if (job.sourceLanguage && job.sourceLanguage !== TARGET_LANGUAGE) {
                languages.add(job.sourceLanguage);
            }
        }

        for (const language of languages) {
            createTranslator(language).then(function () {
                processJobs();
            });
        }
    }

    async function detectSourceLanguage(text) {
        const detector = await createDetector();

        if (!detector) {
            return null;
        }

        let results;

        try {
            results = await detector.detect(text);
        } catch (error) {
            return null;
        }

        if (!Array.isArray(results) || results.length === 0) {
            return null;
        }

        const top = results[0];

        if (top && top.detectedLanguage === TARGET_LANGUAGE && top.confidence >= 0.5) {
            return TARGET_LANGUAGE;
        }

        const candidates = results
            .filter(function (item) {
                return item && item.detectedLanguage && item.detectedLanguage !== "und";
            })
            .slice(0, 8);

        for (const candidate of candidates) {
            const code = candidate.detectedLanguage;

            if (code === TARGET_LANGUAGE) {
                continue;
            }

            try {
                const status = await Translator.availability({
                    sourceLanguage: code,
                    targetLanguage: TARGET_LANGUAGE
                });

                if (status !== "unavailable") {
                    return code;
                }
            } catch (error) {
                continue;
            }
        }

        if (top && top.detectedLanguage === TARGET_LANGUAGE) {
            return TARGET_LANGUAGE;
        }

        return null;
    }

    function findClosestText(value, text, preferredStart) {
        if (value.slice(preferredStart, preferredStart + text.length) === text) {
            return preferredStart;
        }

        let bestPosition = -1;
        let bestDistance = Infinity;
        let position = value.indexOf(text);

        while (position !== -1) {
            const distance = Math.abs(position - preferredStart);

            if (distance < bestDistance) {
                bestPosition = position;
                bestDistance = distance;
            }

            position = value.indexOf(text, position + 1);
        }

        return bestPosition;
    }

    function adjustPosition(position, start, oldLength, newLength) {
        const end = start + oldLength;
        const delta = newLength - oldLength;

        if (position <= start) {
            return position;
        }

        if (position >= end) {
            return position + delta;
        }

        return start + newLength;
    }

    function replaceJobText(job, translatedText) {
        if (!messageBox || !document.contains(messageBox)) {
            return false;
        }

        const currentValue = messageBox.value;
        const start = findClosestText(currentValue, job.text, job.start);

        if (start < 0) {
            return false;
        }

        const end = start + job.text.length;
        const selectionStart = messageBox.selectionStart;
        const selectionEnd = messageBox.selectionEnd;
        const replacement = translatedText;
        const delta = replacement.length - job.text.length;

        internalChange = true;

        messageBox.value =
            currentValue.slice(0, start) +
            replacement +
            currentValue.slice(end);

        const newSelectionStart = adjustPosition(
            selectionStart,
            start,
            job.text.length,
            replacement.length
        );

        const newSelectionEnd = adjustPosition(
            selectionEnd,
            start,
            job.text.length,
            replacement.length
        );

        messageBox.setSelectionRange(newSelectionStart, newSelectionEnd);
        messageBox.dispatchEvent(new Event("input", { bubbles: true }));

        internalChange = false;

        for (const queuedJob of jobs) {
            if (queuedJob !== job && queuedJob.start > start) {
                queuedJob.start += delta;
            }
        }

        return true;
    }

    function prepareJobLanguage(job) {
        if (job.sourceLanguage) {
            return Promise.resolve(job.sourceLanguage);
        }

        if (!job.languagePromise) {
            job.languagePromise = detectSourceLanguage(job.text).then(function (language) {
                job.sourceLanguage = language;
                job.languagePromise = null;
                return language;
            });
        }

        return job.languagePromise;
    }

    function preparePendingJobs() {
        const pending = jobs.filter(function (job) {
            return !job.sourceLanguage;
        });

        if (pending.length === 0) {
            processJobs();
            return;
        }

        Promise.all(pending.map(prepareJobLanguage)).then(function () {
            processJobs();
        });
    }

    async function processJobs() {
        if (processing || jobs.length === 0 || !hasBuiltInApis()) {
            return;
        }

        processing = true;

        try {
            while (jobs.length > 0) {
                const job = jobs[0];

                if (!job.sourceLanguage) {
                    job.sourceLanguage = await prepareJobLanguage(job);
                }

                if (!job.sourceLanguage) {
                    jobs.shift();
                    continue;
                }

                if (job.sourceLanguage === TARGET_LANGUAGE) {
                    jobs.shift();
                    continue;
                }

                const translator = await createTranslator(job.sourceLanguage);

                if (!translator) {
                    break;
                }

                let translatedText;

                try {
                    translatedText = await translator.translate(job.text);
                } catch (error) {
                    jobs.shift();
                    continue;
                }

                if (typeof translatedText === "string" && translatedText.trim()) {
                    replaceJobText(job, translatedText);
                }

                jobs.shift();
            }
        } finally {
            processing = false;
        }
    }

    function isDuplicateJob(text, start) {
        return jobs.some(function (job) {
            return job.start === start && job.text === text;
        });
    }

    function addJob(text, start) {
        if (!text || !text.trim() || isDuplicateJob(text, start)) {
            return;
        }

        jobs.push({
            text: text,
            start: start,
            sourceLanguage: null,
            languagePromise: null
        });
    }

    function addTrimmedJob(text, baseStart) {
        const leading = text.match(/^\s*/)[0].length;
        const trailing = text.match(/\s*$/)[0].length;
        const end = text.length - trailing;

        if (end <= leading) {
            return;
        }

        addJob(text.slice(leading, end), baseStart + leading);
    }

    function addPastedJobs(text, baseStart) {
        let segmentStart = 0;

        for (let index = 0; index < text.length; index += 1) {
            const character = text.charAt(index);

            if (SENTENCE_TERMINAL.test(character)) {
                addTrimmedJob(text.slice(segmentStart, index + 1), baseStart + segmentStart);
                segmentStart = index + 1;
                continue;
            }

            if (character === "\n") {
                addTrimmedJob(text.slice(segmentStart, index), baseStart + segmentStart);
                segmentStart = index + 1;
            }
        }

        if (segmentStart < text.length) {
            addTrimmedJob(text.slice(segmentStart), baseStart + segmentStart);
        }

        preparePendingJobs();
    }

    function insertPastedText(event) {
        if (!messageBox || composing) {
            return;
        }

        const clipboard = event.clipboardData;

        if (!clipboard) {
            return;
        }

        const pastedText = clipboard.getData("text/plain");

        if (!pastedText) {
            return;
        }

        event.preventDefault();
        warmUpFromUserAction();

        const start = messageBox.selectionStart;
        const end = messageBox.selectionEnd;
        const before = messageBox.value.slice(0, start);
        const after = messageBox.value.slice(end);
        const caret = start + pastedText.length;

        internalChange = true;
        messageBox.value = before + pastedText + after;
        messageBox.setSelectionRange(caret, caret);
        messageBox.dispatchEvent(new Event("input", { bubbles: true }));
        internalChange = false;

        addPastedJobs(pastedText, start);
    }

    function findCompletedSentence() {
        if (!messageBox) {
            return null;
        }

        const caret = messageBox.selectionStart;

        if (caret <= 0 || messageBox.selectionStart !== messageBox.selectionEnd) {
            return null;
        }

        const value = messageBox.value;
        let end = caret;
        let terminalIndex = end - 1;

        while (terminalIndex >= 0 && /\s/.test(value.charAt(terminalIndex))) {
            terminalIndex -= 1;
        }

        if (terminalIndex < 0) {
            return null;
        }

        const terminalCharacter = value.charAt(terminalIndex);

        if (!SENTENCE_TERMINAL.test(terminalCharacter)) {
            return null;
        }

        let start = terminalIndex;

        while (start > 0) {
            const previousCharacter = value.charAt(start - 1);

            if (previousCharacter === "\n" || SENTENCE_TERMINAL.test(previousCharacter)) {
                break;
            }

            start -= 1;
        }

        while (start < terminalIndex && /[ \t\r\n]/.test(value.charAt(start))) {
            start += 1;
        }

        end = terminalIndex + 1;

        const text = value.slice(start, end);

        if (!text.trim()) {
            return null;
        }

        return { text: text, start: start };
    }

    function scheduleTypedSentence() {
        clearTimeout(typingTimer);

        typingTimer = setTimeout(function () {
            if (composing || internalChange) {
                return;
            }

            const sentence = findCompletedSentence();

            if (sentence) {
                addJob(sentence.text, sentence.start);
                preparePendingJobs();
            }
        }, TYPING_DELAY);
    }

    function attachToMessageBox(box) {
        if (!box || box.dataset.autoEnglishAttached === "1") {
            return;
        }

        messageBox = box;
        messageBox.dataset.autoEnglishAttached = "1";

        messageBox.addEventListener("keydown", warmUpFromUserAction);
        messageBox.addEventListener("mousedown", warmUpFromUserAction);
        messageBox.addEventListener("paste", insertPastedText);

        messageBox.addEventListener("compositionstart", function () {
            composing = true;
            clearTimeout(typingTimer);
        });

        messageBox.addEventListener("compositionend", function () {
            composing = false;
            scheduleTypedSentence();
        });

        messageBox.addEventListener("input", function () {
            if (!internalChange && !composing) {
                scheduleTypedSentence();
            }
        });
    }

    function initialize() {
        const box = document.querySelector(MESSAGE_BOX_SELECTOR);

        if (box) {
            attachToMessageBox(box);
            return true;
        }

        return false;
    }

    if (!initialize()) {
        const observer = new MutationObserver(function () {
            if (initialize()) {
                observer.disconnect();
            }
        });

        observer.observe(document.documentElement, {
            childList: true,
            subtree: true
        });
    }
})();


GitHub Source

https://github.com/SterlinoBTT

Installation

  • Install Tampermonkey.
  • Select Create a new script.
  • Paste the above userscript code and save it.
  • The script also works with Violentmonkey.
Findingnemo
Legendary
*
Offline

Activity: 3178
Merit: 1141


Leading Crypto Sports Betting & Casino Platform


View Profile
September 08, 2026, 08:15:25 PM
Merited by NotATether (2), vapourminer (1), dkbit98 (1), *Ace* (1)
 #2

I believe this tool will lead to a lot of posts will be flagged as AI. Google Translate uses LLMs too and when we use any AI detector, the results will be more of positrive for AI content, so it is better not to use translator tools to post.

One need to be okay with their english if they want to interact in the main board, doesn't need to be perfect it has to be okaish and if they can't even manage that then it is better for them to stay away from main board.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
Upgrade00
Legendary
*
Offline

Activity: 2870
Merit: 2957


Community Manager - Brand Promotions ✅


View Profile WWW
September 08, 2026, 08:26:07 PM
Merited by vapourminer (1)
 #3

I believe this tool will lead to a lot of posts will be flagged as AI. Google Translate uses LLMs too and when we use any AI detector, the results will be more of positrive for AI content, so it is better not to use translator tools to post.
Anyone who uses something like this should include in the post that it was translated with AI.

One need to be okay with their english if they want to interact in the main board, doesn't need to be perfect it has to be okaish and if they can't even manage that then it is better for them to stay away from main board.
I agree with this but a member could have a request they want an answer to, that no one is technical enough in their local board to provide. Some others may not have a local board here at all.

███████████████████████████
███████▄████████████▄██████
████████▄████████▄████████
███▀█████▀▄███▄▀█████▀███
█████▀█▀▄██▀▀▀██▄▀█▀█████
███████▄███████████▄███████
███████████████████████████
███████▀███████████▀███████
████▄██▄▀██▄▄▄██▀▄██▄████
████▄████▄▀███▀▄████▄████
██▄███▀▀█▀██████▀█▀███▄███
██▀█▀████████████████▀█▀███
███████████████████████████
.
.Duelbits..REWARDING, BEYOND LIMITS...
█████████████████████████
█████████████████████████
███████████▀▀░░▀█▄░░▀████
████████▀░░░░░░░░▀█▄░████
███████░░░░▄▄░░▄░░░▀█████
██████░░░░░▀▀▄██▀░░░░████
█████░░░██░▄██▀▄▄░░░█████
████░░░░░▄██▀░░▀▀░░██████
█████▄░░▀█▀░██░░░░███████
████░▀█▄░░░░░░░░▄████████
████▄░░▀█▄░░▄▄███████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████▀░░▀░███████████
████████░░░▄░█░██████████
███████████▌▐██░█████████
███████████░███▌▐████████
██████████░█████░████████
██████▀░▄░▀███▀░▄░▀█████
█████░▄▀░░░░█░▄▀░░░░█████
█████░░░░░░░█░░░░░░░█████
██████▄░░░▄███▄░░░▄██████
█████████████████████████
█████████████████████████


























  PLAY NOW  
Findingnemo
Legendary
*
Offline

Activity: 3178
Merit: 1141


Leading Crypto Sports Betting & Casino Platform


View Profile
September 08, 2026, 08:29:48 PM
 #4

One need to be okay with their english if they want to interact in the main board, doesn't need to be perfect it has to be okaish and if they can't even manage that then it is better for them to stay away from main board.
I agree with this but a member could have a request they want an answer to, that no one is technical enough in their local board to provide. Some others may not have a local board here at all.

Valid reason to post beyond their local board but in that case they don't need to post it as the original contents because it is not their original writing, they can always use quote tags and paste the translated content inside them which mitigates the post being considered AI and any other things related to it.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
Upgrade00
Legendary
*
Offline

Activity: 2870
Merit: 2957


Community Manager - Brand Promotions ✅


View Profile WWW
September 08, 2026, 08:40:19 PM
 #5

Translated posts are still the content of the original writer. If someone translates a post into a different language they will still have to quote the author.
It's only not your content if you asked AI to write a text for you on that topic or you copied it.

███████████████████████████
███████▄████████████▄██████
████████▄████████▄████████
███▀█████▀▄███▄▀█████▀███
█████▀█▀▄██▀▀▀██▄▀█▀█████
███████▄███████████▄███████
███████████████████████████
███████▀███████████▀███████
████▄██▄▀██▄▄▄██▀▄██▄████
████▄████▄▀███▀▄████▄████
██▄███▀▀█▀██████▀█▀███▄███
██▀█▀████████████████▀█▀███
███████████████████████████
.
.Duelbits..REWARDING, BEYOND LIMITS...
█████████████████████████
█████████████████████████
███████████▀▀░░▀█▄░░▀████
████████▀░░░░░░░░▀█▄░████
███████░░░░▄▄░░▄░░░▀█████
██████░░░░░▀▀▄██▀░░░░████
█████░░░██░▄██▀▄▄░░░█████
████░░░░░▄██▀░░▀▀░░██████
█████▄░░▀█▀░██░░░░███████
████░▀█▄░░░░░░░░▄████████
████▄░░▀█▄░░▄▄███████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████▀░░▀░███████████
████████░░░▄░█░██████████
███████████▌▐██░█████████
███████████░███▌▐████████
██████████░█████░████████
██████▀░▄░▀███▀░▄░▀█████
█████░▄▀░░░░█░▄▀░░░░█████
█████░░░░░░░█░░░░░░░█████
██████▄░░░▄███▄░░░▄██████
█████████████████████████
█████████████████████████


























  PLAY NOW  
The Cryptovator
Legendary
*
Online Online

Activity: 3010
Merit: 2613


Protect your privacy 🔏 it's very important


View Profile WWW
September 08, 2026, 08:53:02 PM
 #6

I won’t welcome these tools; this script is really unnecessary when there are a lot of AIs to do this job. But it will be detected as AI content, as other users have already said. So using your script means users posting through AI directly. Using the AI agent and using your script is same.

Most probably users will get banned if they use those tools constantly. It means, besides being unnecessary, that tools will be risky to use for the forum users at least. This isn’t a great job when Google translations have existed for a long time. Users simply could use Google Translate and copy-paste, but that will be AI content. Same for your tools as well.

Also, if you want to reply in the English section, then you have to understand English as well; using a translator for reading posts would lead to misunderstandings or misinformation. Then your reply won't be relevant to the topic and would be considered spam as well. So at least I am not going to use those tools.

Alvin_talk
Full Member
***
Offline

Activity: 325
Merit: 169

I don't want peace, I love problem always


View Profile
September 08, 2026, 09:29:34 PM
Merited by vapourminer (1)
 #7

I apologize if someone has already created a script like this before but I did not find any such script, so I thought it could be shared on the forum.
Similar tool available already. I found this in the 6th page of Meta.
[1] https://bitcointalk.org/index.php?topic=5583973.0

Personally, I do not fancy translation tools, as it tends to mix up context at times. It also lack cultural nuance thereby leading to mistranslation at times too. It is better to learn and improve in your English before posting in the English boards, avoid shortcuts.

If you feel your topic needs to reach the English boards, it is better you politely ask an experienced user in your local board who is fluent in English to help you out with the translation. This way you will save yourself of any unnecessary drama that comes with using ai for your translation.
Sterlino (OP)
Jr. Member
*
Online Online

Activity: 40
Merit: 16


View Profile
September 09, 2026, 01:47:35 AM
 #8

I believe this tool will lead to a lot of posts will be flagged as AI. Google Translate uses LLMs too and when we use any AI detector, the results will be more of positrive for AI content, so it is better not to use translator tools to post.

One need to be okay with their english if they want to interact in the main board, doesn't need to be perfect it has to be okaish and if they can't even manage that then it is better for them to stay away from main board.
You have raised a logical point. Even then, those who are less proficient in English language may depend on Google Translate. it seems that Google Translate has added Gemini based translation. So, if you translate there, there may be AI related problems, but this script uses Chrome' Translator API, so there may be less chance of AI tone creation here.   

Google Translate also keep an option that allows you to use the classic version instead of the AI-powered translation if you wish.



I apologize if someone has already created a script like this before but I did not find any such script, so I thought it could be shared on the forum.
Similar tool available already. I found this in the 6th page of Meta.
[1] https://bitcointalk.org/index.php?topic=5583973.0


I saw this when I searched to see if there was any userscript like this before . Here only the post translation feature is given.
And the one I shared, when you write a realtime post in your native language in the reply box, when a sentence ends, it will automatically be translated into English.
DYING_S0UL
Legendary
*
Offline

Activity: 1148
Merit: 1233


The Alliance Of Bitcointalk Translator - AOBT


View Profile WWW
September 09, 2026, 02:29:07 AM
 #9

No offence OP, but using this particular tools is like "Digging your own grave", or at least i think it that way.

In the early days, when AI wasn't this rampant, maybe then something like this would have been acceptable. But right now, when everyone is into AI, and everything is deeply integrated with AI (or in the process of it). And assuming you know forum is really strict with the use of AI for posting. So for the sake of that, and in order to keep ourselves from getting banned, we need to keep ourselves away from such automated tools.

Yeah, if you are confused, then use AI or google translator or other tool to explain it to you. But nothing more than that.

If one cannot read write English, then they should learn it instead. If they can write (even with broken English), and make others understand their opinion. Then that's more than ok. Nobody wants/expects perfect English, nor anybody would complain against one another for having grammer faults.

▄▄███████████████████▄▄
▄███████████████████████▄
████████████████████████
█████████████████████████
████████████████████████
████████████▀██████▀████
████████████████████████
█████████▄▄▄▄███████████
██████████▄▄▄████████████
████████████████████████
████████████████▀▀███████
▀███████████████████████▀
▀▀███████████████████▀▀
 
 EARNBET 
██
██
██
██
██
██
██
██
██
██
██
██
██
███████▄▄███████████
████▄██████████████████
██▀▀███████████████▀▀███
▄████████████████████████
▄▄████████▀▀▀▀▀████████▄▄██
███████████████████████████
█████████▌██▀████████████
███████████████████████████
▀▀███████▄▄▄▄▄█████████▀▀██
▀█████████████████████▀██
██▄▄███████████████▄▄███
████▀██████████████████
███████▀▀███████████
██
██
██
██
██
██
██
██
██
██
██
██
██


▄▄▄
▄▄▄███████▐███▌███████▄▄▄
█████████████████████████
▀████▄▄▄███████▄▄▄████▀
█████████████████████
▐███████████████████▌
███████████████████
███████████████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

 King of The Castle 
 $200,000 in prizes
██
██
██
██
██
██
██
██
██
██
██
██
██

 62.5% 

 
RAKEBACK
BONUS
Lida93
Hero Member
*****
Online Online

Activity: 1596
Merit: 796



View Profile WWW
September 09, 2026, 08:54:15 AM
 #10

I believe this tool will lead to a lot of posts will be flagged as AI. Google Translate uses LLMs too and when we use any AI detector, the results will be more of positrive for AI content, so it is better not to use translator tools to post.
Anyone who uses something like this should include in the post that it was translated with AI.
Imagine including in almost every of your post in the general board that it was done with Ai translator, a lot of persons wouldn't take you seriously because they think your post isn't natural. English is not that hard to learn in a short time of intense devotion to learning it. And It doesn't also has to be perfect just as Findingnemo rightly said, it just has to be able to communicate the message to the receiver/reader and it's okay.
I have always maintained it that as long as English isn't your native language you don't have to be a perfectionist at it to feel comfortable communicating with it.

█████████████████████████
█████████████████████████
█████████████████████████
███████████▀▄▀███████████
██▄▀▀▀██▀▄███▄▀██▀▀▀████
██▌▐███▄▄█████▀███████▐██
████████████████████████
███▌▐████████████████▐███
████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
  rizzy  █▌█▌█▌████
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌██
█▌█▌█▌████
██████████████████████████████████████████████████████████████████
 
THE HOME OF THE
   MOST REWARDING   
GAMING EXPERIENCE

██████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████
 100% DEPOSIT
MATCH
+ 100 FREE SPINS
 
██████████████████████████████████████████████████████████████████
████▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
██▐█▐█▐█
████▐█▐█▐█
 
    PLAY NOW    
Upgrade00
Legendary
*
Offline

Activity: 2870
Merit: 2957


Community Manager - Brand Promotions ✅


View Profile WWW
September 09, 2026, 09:17:16 AM
 #11

Imagine including in almost every of your post in the general board that it was done with Ai translator, a lot of persons wouldn't take you seriously because they think your post isn't natural.
I don't know why they wouldn't. I personally will take them very serious and applaud the desire to communicate here and get answers to their questions especially when those questions are genuine. The core of bitcoin is being borderless and connecting people from everywhere in the world, with this I will expect those on the forum for bitcoin to be as accommodating to everyone with an interest.

English is not that hard to learn in a short time of intense devotion to learning it. And It doesn't also has to be perfect just as Findingnemo rightly said, it just has to be able to communicate the message to the receiver/reader and it's okay.
I have always maintained it that as long as English isn't your native language you don't have to be a perfectionist at it to feel comfortable communicating with it.
Do you think this is us here over rating the forum just a bit?
Learning a new language is hard. People pay for classes, take several lessons, connect online to people that can help them brush up their learning in regular conversations, if they do not have any native speakers around them. This takes months and sometimes years and even at that point lots of concepts and words used here will still be lost on them.
I sure as hell will not learn French or Mandarin to simply communicate on a forum I am interested in.

If someone improves their English by being here, that's a plus, not a requirement. If the technology exists to allow seamless communication between people from around the world, then it should be embraced.

Sorry to the op for going somewhat off topic.

███████████████████████████
███████▄████████████▄██████
████████▄████████▄████████
███▀█████▀▄███▄▀█████▀███
█████▀█▀▄██▀▀▀██▄▀█▀█████
███████▄███████████▄███████
███████████████████████████
███████▀███████████▀███████
████▄██▄▀██▄▄▄██▀▄██▄████
████▄████▄▀███▀▄████▄████
██▄███▀▀█▀██████▀█▀███▄███
██▀█▀████████████████▀█▀███
███████████████████████████
.
.Duelbits..REWARDING, BEYOND LIMITS...
█████████████████████████
█████████████████████████
███████████▀▀░░▀█▄░░▀████
████████▀░░░░░░░░▀█▄░████
███████░░░░▄▄░░▄░░░▀█████
██████░░░░░▀▀▄██▀░░░░████
█████░░░██░▄██▀▄▄░░░█████
████░░░░░▄██▀░░▀▀░░██████
█████▄░░▀█▀░██░░░░███████
████░▀█▄░░░░░░░░▄████████
████▄░░▀█▄░░▄▄███████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████▀░░▀░███████████
████████░░░▄░█░██████████
███████████▌▐██░█████████
███████████░███▌▐████████
██████████░█████░████████
██████▀░▄░▀███▀░▄░▀█████
█████░▄▀░░░░█░▄▀░░░░█████
█████░░░░░░░█░░░░░░░█████
██████▄░░░▄███▄░░░▄██████
█████████████████████████
█████████████████████████


























  PLAY NOW  
dkbit98
Legendary
*
Offline

Activity: 3080
Merit: 8859



View Profile WWW
September 09, 2026, 11:09:33 PM
 #12

I don't like tools like this being used in bitcointalk forum for every posting.
It's OK to use translation sometimes if you don't speak good enough English, but you don't need any userscript for that.
That is why we have local boards here, so you can speak your local language.

▄▄██████▄░░░▄██████▄▄
██▀▀░░░░░░░░░░░░░▀▀██
▄▄██████▄▄██████▄▄
▄████▀▀▀▀█████▀▀▀▀████▄
▄███░░░▄▄░░░░░░▄▄░░░███▄
▄▄▄███░░░░██░░░░░░░██░░░░███▄▄▄
████████░░░░██░░░░░░░██░░░░████████
██████████░░░▀▀░░░░░░▀▀░░░██████████
████▀▀██████▄▄▄▄█████▄▄▄▄██████▀▀████
▀███▄░░▀▀███████████████████▀▀░░▄███▀
▀████▄▄░░░░▀▀▀▀▀▀▀▀▀▀▀▀▀░░░░▄▄████▀
▀███████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄███████▀
▀▀█████████████████████▀▀
  
OrangeFren
  
██
██
██
██
██
██
██
██
██
██
██
  
▄▄█████▄▄
▄████▀▀▀████▄
███▀░░░░░░░▀███
███▀░░░▄█░░░░▀███
███░░░░░░░░░░███
███▄░░░▄█▄░░░▄███
███▄░░░░░░░▄███
▀████▄▄▄████▀
█████████
▐█████████▌
██████████
▐████▌▐████▌
▀▀▀█░░░█▀▀▀
 
Sterlino (OP)
Jr. Member
*
Online Online

Activity: 40
Merit: 16


View Profile
Today at 02:00:04 AM
 #13

No offence OP, but using this particular tools is like "Digging your own grave", or at least i think it that way.

In the early days, when AI wasn't this rampant, maybe then something like this would have been acceptable. But right now, when everyone is into AI, and everything is deeply integrated with AI (or in the process of it). And assuming you know forum is really strict with the use of AI for posting. So for the sake of that, and in order to keep ourselves from getting banned, we need to keep ourselves away from such automated tools.

Yeah, if you are confused, then use AI or google translator or other tool to explain it to you. But nothing more than that.

If one cannot read write English, then they should learn it instead. If they can write (even with broken English), and make others understand their opinion. Then that's more than ok. Nobody wants/expects perfect English, nor anybody would complain against one another for having grammer faults.
Personally, I don't have any problem with English. When I was observing some posts, sometimes the meaning of the writing seemed a little different. So I was thinking they may have shared opinions by using translator. Considering that I decided to build this script. It took me a lot of time. But I had little idea about the forum. I had no idea about how would be react or what kind of negative things could be created. That's why many people criticized although their opinions are logical.

Now I am going through a bit of a busy time. Although I regularly come here , I give time to observe peoples opinions, learning new , trying to gain some deep knowledge about Bitcoin. Thank you for your opinion. In addition, many people gave their opinions to which taught me a lot.
Don Pedro Dinero
Legendary
*
Offline

Activity: 2156
Merit: 2780


No to Euro CBDC


View Profile
Today at 03:38:21 AM
Merited by Sterlino (1)
 #14

Blah, blah, blah. Of course, the world is moving forward precisely because more people are communicating more than ever before—thanks to translation tools—while this forum is filled with naysayers saying they shouldn't be used. I've been using them for years—I've mentioned this in other threads and I'll say it again here—mainly deepl.com. And if the detectors start giving false positives by flagging something you've created and simply translated as AI-generated, then we'll have to rethink the criteria and not the other way around.

Should I remind everyone of this?

AI guidelines


You should not copy/paste text written by an AI into a post, with these exceptions:
<...>
 - If you have the AI do almost a direct translation of something you wrote, then that's OK. For example, you can tell the AI to "Directly translate this text into Spanish: <something you wrote>" or "Output the following text exactly as-is, except with any clear spelling or grammar mistakes fixed: <something you wrote>". It's not OK to tell an AI, "Improve this text: <something you wrote>", since then it will mostly rewrite it, and it risks becoming AI slop in the process.

theymos allows AI translation, even English to local languages.
 
Also

I won’t welcome these tools; this script is really unnecessary when there are a lot of AIs to do this job. But it will be detected as AI content, as other users have already said. So using your script means users posting through AI directly. Using the AI agent and using your script is same.

Most probably users will get banned if they use those tools constantly. It means, besides being unnecessary, that tools will be risky to use for the forum users at least. This isn’t a great job when Google translations have existed for a long time. Users simply could use Google Translate and copy-paste, but that will be AI content. Same for your tools as well.

Also, if you want to reply in the English section, then you have to understand English as well; using a translator for reading posts would lead to misunderstandings or misinformation. Then your reply won't be relevant to the topic and would be considered spam as well. So at least I am not going to use those tools.

You have to be the one to say this? You went from writing terrible English to almost perfect English overnight. Are you saying you don't use any tools?


███████▄▄███▄███▄
███▄▄████████▌██
▄█████████████▐██▌
██▄███████████▌█▌
███████▀██████▐▌█
██████████████▌▌▐
████████▄███████▐▐
█████████████████
███████████████▄██▄
██████████████▀▀▀
█████▀███▀▀▀

▄▄▄██████▄▄▄███████▄▄▄
███████████████████████████
███▌█████▀███▌█████▀▀███████████▄▄▄▄▄▄▄▄
███▌█████▄███▌█████▄███▐███████████████████▄
▐████████████▀███████▄██████████▀▀▀▀▀▀▀▀████▀
▐████████████▄██▄███████████▌█████████▄████▀
▐█████████▀█████████▌█████████████▄▄████▀
██████████▄███████████▐███▌██▄██████▀
██████████████▀███▐███▌██████████████████████
████▀██████▀▀█████████▌███▀▀▀▀███▀▀▀▀▀▀▀████▌
 
      P R E M I E R   B I T C O I N   C A S I N O   &   S P O R T S B O O K      

█▀▀









▀▀▀

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

  98%  
RTP

 
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

▀▀█









▀▀▀

█▀▀









▀▀▀

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

 HIGH 
ODDS

 
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

▀▀█









▀▀▀
 
..PLAY NOW..
aipercoin
Full Member
***
Offline

Activity: 616
Merit: 183


View Profile
Today at 09:12:59 AM
 #15

Blah, blah, blah. Of course, the world is moving forward precisely because more people are communicating more than ever before—thanks to translation tools—while this forum is filled with naysayers saying they shouldn't be used. I've been using them for years—I've mentioned this in other threads and I'll say it again here—mainly deepl.com. And if the detectors start giving false positives by flagging something you've created and simply translated as AI-generated, then we'll have to rethink the criteria and not the other way around.

Should I remind everyone of this?

AI guidelines


You should not copy/paste text written by an AI into a post, with these exceptions:
<...>
 - If you have the AI do almost a direct translation of something you wrote, then that's OK. For example, you can tell the AI to "Directly translate this text into Spanish: <something you wrote>" or "Output the following text exactly as-is, except with any clear spelling or grammar mistakes fixed: <something you wrote>". It's not OK to tell an AI, "Improve this text: <something you wrote>", since then it will mostly rewrite it, and it risks becoming AI slop in the process.

theymos allows AI translation, even English to local languages.
 
Also

I won’t welcome these tools; this script is really unnecessary when there are a lot of AIs to do this job. But it will be detected as AI content, as other users have already said. So using your script means users posting through AI directly. Using the AI agent and using your script is same.

Most probably users will get banned if they use those tools constantly. It means, besides being unnecessary, that tools will be risky to use for the forum users at least. This isn’t a great job when Google translations have existed for a long time. Users simply could use Google Translate and copy-paste, but that will be AI content. Same for your tools as well.

Also, if you want to reply in the English section, then you have to understand English as well; using a translator for reading posts would lead to misunderstandings or misinformation. Then your reply won't be relevant to the topic and would be considered spam as well. So at least I am not going to use those tools.

You have to be the one to say this? You went from writing terrible English to almost perfect English overnight. Are you saying you don't use any tools?

I agree with you, I don't see a big problem with using a translation tool.
It is clear that if the tool instead generates content that is not beautiful, it would give rise to the theory of a dead internet.
However, I don't think this is the case, bitcoin is of interest to everyone to escape from the control of states.
BitBakerr1
Hero Member
*****
Offline

Activity: 630
Merit: 544



View Profile
Today at 10:43:10 AM
 #16

I believe this tool will lead to a lot of posts will be flagged as AI. Google Translate uses LLMs too and when we use any AI detector, the results will be more of positrive for AI content, so it is better not to use translator tools to post.
Anyone who uses something like this should include in the post that it was translated with AI.
English is not that hard to learn in a short time of intense devotion to learning it.
You feel English is not hard because it is one of your language used in your country, are you going to also say the same thing for other languages that you don’t know about or is not used in your country for example are you going to say Spanish is not that hard.

English would be very difficult for those living in a country where English is hardly being spoke.

However, I believe there’s nothing on earth that one cannot learn like you said with devotion one can learn it but it’s actually difficult for those living in countries where English is not spoken.

 
█▄
R


▀▀██████▄▄
████████████████
▀█████▀▀▀█████
████████▌███▐████
▄█████▄▄▄█████
████████████████
▄▄██████▀▀
LLBIT▀█ 
  TH#1 SOLANA CASINO  
████████████▄
▀▀██████▀▀███
██▄▄▀▀▄▄████
████████████
██████████
███▀████████
▄▄█████████
████████████
████████████
████████████
████████████
█████████████
████████████▀
████████████▄
▀▀▀▀▀▀▀██████
████████████
███████████
██▄█████████
████▄███████
████████████
█░▀▀████████
▀▀██████████
█████▄█████
████▀▄▀████
▄▄▄▄▄▄▄██████
████████████▀
........5,000+........
GAMES
 
......INSTANT......
WITHDRAWALS
..........HUGE..........
REWARDS
 
............VIP............
PROGRAM
 .
   PLAY NOW    
vapourminer
Legendary
*
Offline

Activity: 5152
Merit: 6829


what is this "brake pedal" you speak of?


View Profile
Today at 11:18:55 AM
 #17

English is not that hard to learn in a short time of intense devotion to learning it.

hahahahaha

sorry dont agree - and im a native english speaker

but as been said, broken english is fine by me. if theres a real issue comprehending something ill just ask for clarification if it seems interesting enough.

Core v29.1.0
Agbe
Legendary
*
Offline

Activity: 1736
Merit: 1459


Leading Crypto Sports Betting & Casino Platform


View Profile
Today at 12:01:50 PM
 #18

English is not that hard to learn in a short time of intense devotion to learning it.
sorry dont agree - and im a native english speaker
I don't think the guy understood what he said. None native English Speakers use more than 12 years to learn English and that is 6 years in Primary school and 6 years in Secondary School or College and in University or higher degree again. The major problem for the third world countries in English is the structure (syntax).

And if such tool is used to translate posts, other tools will detect it has an AI post therefore it is better to use your basic knowledge to write. Once the decoder understand the encoder then communication has been created for the discussion. So there is no need for a tool.

Using this tool will affect the user of learning to communicate in the forum because he will like to use it at all time since the tool will make things easy for him and he will not bother to learn.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
NotATether
Legendary
*
Offline

Activity: 2450
Merit: 10306


┻┻ ︵㇏(°□°㇏)


View Profile WWW
Today at 12:49:02 PM
Merited by Sterlino (1)
 #19

Google Translate also keep an option that allows you to use the classic version instead of the AI-powered translation if you wish.


They are both AI.

People seem to have forgotten that there was AI before ChatGPT.

In any case, the entire premises of Google Translate was built on the idea that you could recognize what people are saying using machine learning models and natural language processing. This is what the Classic mode is, in essence.

So, it still uses AI. Just not Generative AI that takes text and makes text.

▄▄████████████████████▄▄
▄███████▀▀██████▀▀███████▄
████████████████████████
████████▄▄██████▄▄██████

████████████████████████
██▄▄█████████████▄▄██████
██▀▀██████████████████▄▄██
██████▀▀██████████████▀▀██
██████████████████████████
██████▀▀██████▀▀████████
████████████████████████
▀███████▄▄██████▄▄███████▀
▀▀████████████████████▀▀
 
 DΞX.fo 
▄▄██████
█████████
██████████
█████████
██████████
█████████
▀▀██████

▄███████
▄██████████
████████████
█████████████
█████████████
|
▄▄█
▄████▀
▄███▀
▄██▀▄██
█████▀▀
███████
████████
▀██▄████
▄████▄▄
▄█████▀███
▄█████▀████
█████▀███████
▀██▀█████████
|..BTC......XMR...
..USDT.....LTC...
....Fees  0.8%.....
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!