Title: Just Translate
Author: Akah Subarkah
Published: <strong>2025-07-12</strong>
Last modified: 2025-09-12

---

Szukaj wtyczek

![](https://ps.w.org/just-translate/assets/icon-256x256.png?rev=3326762)

# Just Translate

 Autor: [Akah Subarkah](https://profiles.wordpress.org/vaksin/)

[Pobierz](https://downloads.wordpress.org/plugin/just-translate.0.0.10.zip)

 * [Szczegóły](https://pl.wordpress.org/plugins/just-translate/#description)
 * [Recenzje](https://pl.wordpress.org/plugins/just-translate/#reviews)
 *  [Instalacja](https://pl.wordpress.org/plugins/just-translate/#installation)
 * [Rozwój](https://pl.wordpress.org/plugins/just-translate/#developers)

 [Wsparcie](https://wordpress.org/support/plugin/just-translate/)

## Opis

**Just Translate** is a lightweight plugin that enables you to manage translations
of your WordPress website easily from the admin panel. It automatically detects 
and stores any string that appears on your website and supports language prefixes
in URLs (like `/en/`, `/id/`, etc.).

**Features:**

 * Automatically capture and store untranslated strings
 * Define multiple supported languages
 * Friendly admin UI for translation management
 * Filter translated/untranslated strings
 * Bulk delete strings
 * Frontend-based translation (theme-agnostic)
 * SEO friendly

### Shortcode

    ```
    [wpjt_language_switcher]
    ```

**Parameters:**

 * `hide_flag` – Hide language flag icon (default: `false`)
 * `show_name` – Show language name (default: `false`)
 * `display_name` – Define the type of name to display when `show_name=true`
    Options:
    - `locale`: e.g., `id-ID`
    - `lang`: e.g., `id`
    - `name`: e.g., `Indonesian (Indonesia)`
    - `native_name`: e.g., `Indonesia (Indonesia)`
    - `english_name`: e.g., `Indonesian (Indonesia)`
    - `lang_name`: e.g., `Indonesian`
    - `lang_native_name`: e.g., `Indonesia`
    - `lang_english_name`: e.g., `Indonesian`

**Example usage:**

    ```
    [wpjt_language_switcher show_name=true display_name=lang_native_name]
    ```

### Hooks

**1. wpjt_locale_slug**
 Filter the URL slug for a given locale.

    ```
    add_filter('wpjt_locale_slug', function($slug, $locale) {
        $slugs = [
            'ja-JP' => 'japanese',
            'id-ID' => 'my-slug',
            'en-US' => 'en',
        ];
        return $slugs[$locale] ?? $slug;
    }, 10, 2);
    ```

**2. wpjt_setting_locales**
 Add or remove locale codes in the settings panel.

    ```
    add_filter('wpjt_setting_locales', function($locales) {
        $locales[] = 'jv-ID';
        $locales[] = 'su-ID';
        return $locales;
    });
    ```

**3. wpjt_should_skip_string**
 Skip specific strings from being translated.

    ```
    add_filter('wpjt_should_skip_string', function($skip, $string) {
        if (trim($string) === 'WordPress') {
            $skip = true;
        }
        return $skip;
    }, 10, 2);
    ```

## Instalacja

 1. Upload the plugin files to the `/wp-content/plugins/just-translate/` directory,
    or install the plugin through the WordPress plugins screen directly.
 2. Activate the plugin through the 'Plugins’ screen in WordPress.
 3. Go to **Translations > Settings** to configure your supported locales.
 4. Begin using the translation panel to manage detected strings.

## Najczęściej zadawane pytania

### How are strings detected?

Every text test that appears on your website will be captured and stored automatically
if it has not been translated.

### Does it support custom post types or themes?

Yes. The plugin is theme-agnostic and works with custom post types, themes, and 
almost all builders (please let me know if there are any builders that are incompatible).

### How do I switch languages?

Use the `[wpjt_language_switcher]` shortcode to display a language switcher.

## Recenzje

Wtyczka nie ma jeszcze żadnej recenzji.

## Kontrybutorzy i deweloperzy

„Just Translate” jest oprogramowaniem open source. Poniższe osoby miały wkład w 
rozwój wtyczki.

Zaangażowani

 *   [ Akah Subarkah ](https://profiles.wordpress.org/vaksin/)

[Przetłumacz wtyczkę “Just Translate” na swój język.](https://translate.wordpress.org/projects/wp-plugins/just-translate)

### Interesuje cię rozwój wtyczki?

[Przeglądaj kod](https://plugins.trac.wordpress.org/browser/just-translate/), sprawdź
[repozytorium SVN](https://plugins.svn.wordpress.org/just-translate/) lub czytaj
[dziennik rozwoju](https://plugins.trac.wordpress.org/log/just-translate/) przez
[RSS](https://plugins.trac.wordpress.org/log/just-translate/?limit=100&mode=stop_on_copy&format=rss).

## Rejestr zmian

#### 0.0.10

Fix WP_DEBUG_DISPLAY condition

#### 0.0.9

 * Fix cache by device
 * Add ability to translate link tag url

#### 0.0.8

 * Fix WP_Filesystem Initialization

#### 0.0.7

 * Change cache storage from database to files
 * Add ability to translate http header links

#### 0.0.6

 * Fix internal link recognition when no scheme or host is specified
 * Code refactoring

#### 0.0.5

 * improve perfomance (cache the translated html)
 * Code refactoring

#### 0.0.4

 * Fixed bugs in string cache keys
 * Changed the condition for skipping string registration from WP_DEBUG to WP_DEBUG_DISPLAY.
 * Code refactoring

#### 0.0.3

 * Add hreflang tags.
 * Add Content-Language header.

#### 0.0.2

 * refactor.

#### 0.0.1

 * Initial release.

## Meta

 *  Wersja **0.0.10**
 *  Ostatnia aktualizacja **9 miesięcy temu**
 *  Włączone instalacje **Mniej niż 10**
 *  Wersja WordPressa ** 6.5 lub nowszej **
 *  Testowano do **6.8.5**
 *  Wersja PHP ** 8.1 lub nowszej **
 *  Język
 * [English (US)](https://wordpress.org/plugins/just-translate/)
 * Tagi
 * [i18n](https://pl.wordpress.org/plugins/tags/i18n/)[language](https://pl.wordpress.org/plugins/tags/language/)
   [multilingual](https://pl.wordpress.org/plugins/tags/multilingual/)[string translation](https://pl.wordpress.org/plugins/tags/string-translation/)
   [translation](https://pl.wordpress.org/plugins/tags/translation/)
 *  [Widok zaawansowany](https://pl.wordpress.org/plugins/just-translate/advanced/)

## Oceny

Nie przesłano jeszcze żadnych recenzji.

[Your review](https://wordpress.org/support/plugin/just-translate/reviews/#new-post)

[Zobacz wszystkierecenzje.](https://wordpress.org/support/plugin/just-translate/reviews/)

## Zaangażowani

 *   [ Akah Subarkah ](https://profiles.wordpress.org/vaksin/)

## Wsparcie

Masz coś do dodania? Potrzebujesz pomocy?

 [Zobacz forum wsparcia](https://wordpress.org/support/plugin/just-translate/)

## Złóż datek

Czy chcesz wesprzeć rozwój wtyczki?

 [ Wspomóż wtyczkę ](https://paypal.me/akah)