Deze plugin is niet getest met de laatste drie grote versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Er kunnen ook compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Date Translate

Beschrijving

Allows the user to insert a hook to WordPress and replace english version of the dates and translate them to their own language.

It uses a modular function that takes as input 3 arguments:

  1. Days
  2. Months
  3. Months (shorthand)

It then searches for the English versions and replaces them.

Installatie

  1. Upload date_translate.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Array-ize the days <?php $days = (Sunday, Monday, ...) ?>
  4. Repeat procedure for months and shorthand (Jan, Feb, …)
  5. Finalize by hooking <?php qnt_date_translate($days,$months,$months_shorthand)?> – of course, replace array names with your own.

Examples at plugin GitHub page.

FAQ

Does the week begin with Sunday?

Yes. Please arrange the array so your week begins in Sunday and ends in Saturday.

No shorthand for days?

There is no need, date formats take full day name and use shorthand for months.

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“Date Translate” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Date Translate” naar jouw taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

1.0.1

  • Fixed issue with date-translate not intercepting get_date()

1.0

  • Allows translating by inserting the hook on functions.php