Title: Simple Slug Translate
Author: Ko Takagi
Published: <strong>05. ožujka 2018.</strong>
Last modified: 24. veljače 2023.

---

Pretraga dodataka

![](https://ps.w.org/simple-slug-translate/assets/banner-772x250.png?rev=2817981)

Dodatak **nije testiran s zadnje 3 glavna izdanja WordPressa**. Možda ga se više
ne održava ili pruža podršku i možda ima probleme sa kompatibilnošću s novijim inačicama
WordPressa.

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

# Simple Slug Translate

 Od [Ko Takagi](https://profiles.wordpress.org/ko31/)

[Preuzmi](https://downloads.wordpress.org/plugin/simple-slug-translate.2.7.3.zip)

 * [Detalji](https://hr.wordpress.org/plugins/simple-slug-translate/#description)
 * [Recenzije](https://hr.wordpress.org/plugins/simple-slug-translate/#reviews)
 *  [Instalacija](https://hr.wordpress.org/plugins/simple-slug-translate/#installation)
 * [Razvoj](https://hr.wordpress.org/plugins/simple-slug-translate/#developers)

 [Podrška](https://wordpress.org/support/plugin/simple-slug-translate/)

## Opis

Simple Slug Translate can translate the post, page, category and taxonomy slugs 
to English automatically.

It can make the permalink looks more better, and also may be good for SEO.

The translation engine is powered by [Watson Language Translator](https://www.ibm.com/watson/services/language-translator/).
Thanks to that support the following languages:

 * Arabic
 * Bulgarian
 * Bengali
 * Czech
 * Danish
 * German
 * Greek
 * English
 * Spanish
 * Finnish
 * French
 * Gujarati
 * Hebrew
 * Hindi
 * Hungarian
 * Italian
 * Japanese
 * Korean
 * Latvian
 * Malayalam
 * Norwegian Bokmal
 * Nepali
 * Dutch
 * Polish
 * Portuguese
 * Romanian
 * Russian
 * Sinhala
 * Slovakian
 * Slovenian
 * Serbian
 * Swedish
 * Thai
 * Turkish
 * Ukrainian
 * Urdu
 * Vietnamese
 * Simplified Chinese
 * Traditional Chinese

In order to use the service, you can apply for an [IBM Cloud Lite](https://www.ibm.com/cloud/lite-account)
account and get your own API key of Watson Language Translator. For free plan, you
can translate up to 1,000,000 characters per month.

### Related Links

 * [Github](https://github.com/ko31/simple-slug-translate)
 * [Documentation(English)](https://github.com/ko31/simple-slug-translate/wiki/Documentation)
 * [Documentation(Japanese)](https://github.com/ko31/simple-slug-translate/wiki/%E3%83%89%E3%82%AD%E3%83%A5%E3%83%A1%E3%83%B3%E3%83%88)

## Snimke zaslona

 * [[
 * [[
 * [[

## Instalacija

 1. Upload the simple-slug-translate directory to the plugins directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. “Dashboard”->”Settings”->”Simple Slug Translate”
 4. “API Settings”: Input your own “API key”.
 5. “Translation Settings”: Choose your “Source language”.
 6. “Permission Settings”: Choose enable post types.
 7. When you will update the post, then the post slug will be automatically translated
    into English. The page, category and taxonomy as well.

Learn more:

 * [Documentation(English)](https://github.com/ko31/simple-slug-translate/wiki/Documentation)
 * [Documentation(Japanese)](https://github.com/ko31/simple-slug-translate/wiki/%E3%83%89%E3%82%AD%E3%83%A5%E3%83%A1%E3%83%B3%E3%83%88)

## ČPP

### What do I need to use this plugin?

You need to apply for an [IBM Cloud Lite](https://www.ibm.com/cloud/lite-account)
account and get your own API key of Watson Language Translator.

This plugin uses the API key to query the translation engine. The API key are not
used except for query!

### If the slug is already registered, will the translated slug be overwritten?

Whether the slug is overwritten can be switched with the following settings.

 * “Dashboard”->”Settings”->”Simple Slug Translate”->”Overwrite”

### Can I customize the translated slug?

You can customize the slug by hooking it to the `simple_slug_translate_results` 
filter.

 |   |  /** |  
 |   |   * Customize the translated slug. |  
 |   |   */ |  
 |   |  add_filter( 'simple_slug_translate_results', function( $results ) { |  
 |   |   // 200 – OK |  
 |   |   if ( 200 === $results['code'] ) { |  
 |   |   // Customize slug |  
 |   |   $results['text'] = sprintf( 'translated-%s', $results['text'] ); |  
 |   |   } |  
 |   |    |  
 |   |   return $results; |  
 |   |  } ); |

 [view raw](https://gist.github.com/ko31/1eb9f637b7ba25df5f82fa6bc44f3eb1/raw/6149a2927534eb7852bb9c6d0e83c5912e5d5b5c/functions.php)

[ functions.php  hosted with ❤ by [GitHub](https://github.com)

### Is it possible to translate only when the posting status is fixed?

You can customize the slug by hooking it to the `simple_slug_translate_post_status`
filter.

 |   |  /** |  
 |   |   * Customize translated post statuses. |  
 |   |   */ |  
 |   |  add_filter( 'simple_slug_translate_post_status', function( $statuses ) { |  
 |   |   // Specify post statuses |  
 |   |   $statuses = [ |  
 |   |   'draft', |  
 |   |   'publish', |  
 |   |   ]; |  
 |   |    |  
 |   |   return $statuses; |  
 |   |  } ); |

 [view raw](https://gist.github.com/ko31/7ceb837d63e0a41c50f0839145448cdf/raw/8d402979347b0d04f33f04bf2fc72481457ae184/functions.php)

[ functions.php  hosted with ❤ by [GitHub](https://github.com)

## Recenzije

![](https://secure.gravatar.com/avatar/8b4a5a671205fabe8ad9b44a34ac92abfe55a069b03c46957bfa3ac44e3401c5?
s=60&d=retro&r=g)

### 󠀁[本当に助かっています](https://wordpress.org/support/topic/%e6%9c%ac%e5%bd%93%e3%81%ab%e5%8a%a9%e3%81%8b%e3%81%a3%e3%81%a6%e3%81%84%e3%81%be%e3%81%99/)󠁿

 [babystarramen2](https://profiles.wordpress.org/babystarramen2/) 25. veljače 2023.

アプデありがとうございます！

![](https://secure.gravatar.com/avatar/2e987daaa4c3829d60d4501a699651b8c8168212f5ea83fc2fd51dc89d2a950b?
s=60&d=retro&r=g)

### 󠀁[it worked only when post published but not for post update later](https://wordpress.org/support/topic/it-worked-only-when-post-published-but-not-for-post-update-later/)󠁿

 [overseastudy](https://profiles.wordpress.org/overseastudy/) 28. rujna 2019. 2 
odgovora

it worked only when post published but not for post update later, when you publish
the post it worked, but later when you modified the same post and change the title
or make any change update of the title, it is not work at all needs to be improved

![](https://secure.gravatar.com/avatar/e10b6fbe3827c4eb203593ecdd3b8bcc32837cc45d9d85ba9af975b695adc7d9?
s=60&d=retro&r=g)

### 󠀁[Handy and easy-to-use plugin](https://wordpress.org/support/topic/handy-and-easy-to-use-plugin/)󠁿

 [owlwpplugins](https://profiles.wordpress.org/owlwpplugins/) 25. lipnja 2019.

It is a handy and easy-to-use plugin. Thank you for making such a useful plugin!

![](https://secure.gravatar.com/avatar/1c7a23f48407560a99653beb6601dc67194f19dc4b8e0f8d64c296e539f1ee69?
s=60&d=retro&r=g)

### 󠀁[Convenient!](https://wordpress.org/support/topic/convenient-17/)󠁿

 [ishitaka](https://profiles.wordpress.org/ishitaka/) 14. ožujka 2018. 1 odgovor

Simple and convenient plugin! The documentation is polite and easy to understand.
Ideally, I would like choose a translation API.

 [ Pročitajte sve 4 recenzije ](https://wordpress.org/support/plugin/simple-slug-translate/reviews/)

## Suradnici i Programeri

“Simple Slug Translate” je softver otvorenog koda. Sljedeće osobe su doprinijele
ovom dodatku.

Suradnici

 *   [ Ko Takagi ](https://profiles.wordpress.org/ko31/)

“Simple Slug Translate” je preveden na 3 jezika. Zahvala [prevoditeljima](https://translate.wordpress.org/projects/wp-plugins/simple-slug-translate/contributors)
za njihov doprinos.

[Prevedite “Simple Slug Translate” na svoj jezik.](https://translate.wordpress.org/projects/wp-plugins/simple-slug-translate)

### Zainteresirani ste za razvoj?

[Pregledajte kôd](https://plugins.trac.wordpress.org/browser/simple-slug-translate/),
pogledajte [SVN spremište](https://plugins.svn.wordpress.org/simple-slug-translate/)
ili se pretplatite na [dnevnik razvoja](https://plugins.trac.wordpress.org/log/simple-slug-translate/)
od [RSS](https://plugins.trac.wordpress.org/log/simple-slug-translate/?limit=100&mode=stop_on_copy&format=rss).

## Dnevnik promjena

#### 2.7.3

 * Fixed bug

#### 2.7.2

 * Add taxonomy settings

#### 2.7.1

 * Fixed bug

#### 2.7.0

 * Add supported languages
 * Add uninstalling process
 * Removed endpoint default value

#### 2.6.2

 * Fixed bug

#### 2.6.1

 * Fixed bug

#### 2.6.0

 * Fixed bug
 * Add overwrite settings

#### 2.5.0

 * Add supported languages

#### 2.4.0

 * Add supported languages

#### 2.3.1

 * Fixed bug

#### 2.3.0

 * Support service endpoints by location

#### 2.2.0

 * Add filter hook

#### 2.1.0

 * Support Gutenberg
 * Add post type settings
 * Fixed some bugs

#### 2.0.0

 * Migrate to Language Translator API v3

#### 1.2.2

 * Fixed bug

#### 1.2.1

 * Update text

#### 1.2.0

 * Fixed bugs
 * Add filter hook

#### 1.1.0

 * Add API settings check

#### 1.0.1

 * Add scheduled event

#### 1.0.0

 * Initial Release

## Meta

 *  Version **2.7.3**
 *  Zadnje ažuriranje **prije 3 godine**
 *  Aktivnih instalacija **1.000+**
 *  WordPress inačica ** 4.3 ili viša **
 *  Testirano do **6.1.10**
 *  Jezici
 * [Chinese (Taiwan)](https://tw.wordpress.org/plugins/simple-slug-translate/), 
   [English (US)](https://wordpress.org/plugins/simple-slug-translate/), [Japanese](https://ja.wordpress.org/plugins/simple-slug-translate/),
   i [Swedish](https://sv.wordpress.org/plugins/simple-slug-translate/).
 *  [Prevedite na vaš jezik](https://translate.wordpress.org/projects/wp-plugins/simple-slug-translate)
 * Oznake
 * [permalink](https://hr.wordpress.org/plugins/tags/permalink/)[slugs](https://hr.wordpress.org/plugins/tags/slugs/)
   [translate](https://hr.wordpress.org/plugins/tags/translate/)[translation](https://hr.wordpress.org/plugins/tags/translation/)
 *  [Napredni pogled](https://hr.wordpress.org/plugins/simple-slug-translate/advanced/)

## Ocjena

 4.5 out of 5 stars.

 *  [  3 5-star reviews     ](https://wordpress.org/support/plugin/simple-slug-translate/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/simple-slug-translate/reviews/?filter=4)
 *  [  1 3-star review     ](https://wordpress.org/support/plugin/simple-slug-translate/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/simple-slug-translate/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/simple-slug-translate/reviews/?filter=1)

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

[See all reviews](https://wordpress.org/support/plugin/simple-slug-translate/reviews/)

## Suradnici

 *   [ Ko Takagi ](https://profiles.wordpress.org/ko31/)

## Podrška

Želite nešto reći? Potrebna vam je pomoć?

 [Pregledaj forum za podršku](https://wordpress.org/support/plugin/simple-slug-translate/)

## Doniraj

Želite li podržati napredak ovog dodatka?

 [ Donirajte ovom dodatku ](https://ko-fi.com/kotakagi)