Advertisement
pusatdata

Wp-Trik: Mengganti Nama Bulan ke Bahasa Indonesia

Apr 8th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. cari file ini:
  2. .../wp-includes/class-wp-locale.php
  3.  
  4. Cari mulai baris 158:
  5.  
  6. $this->month['01'] = /* translators: month name */ __( 'Januari' );
  7. $this->month['02'] = /* translators: month name */ __( 'February' );
  8. $this->month['03'] = /* translators: month name */ __( 'March' );
  9. $this->month['04'] = /* translators: month name */ __( 'April' );
  10. $this->month['05'] = /* translators: month name */ __( 'May' );
  11. $this->month['06'] = /* translators: month name */ __( 'June' );
  12. $this->month['07'] = /* translators: month name */ __( 'July' );
  13. $this->month['08'] = /* translators: month name */ __( 'August' );
  14. $this->month['09'] = /* translators: month name */ __( 'September' );
  15. $this->month['10'] = /* translators: month name */ __( 'October' );
  16. $this->month['11'] = /* translators: month name */ __( 'November' );
  17. $this->month['12'] = /* translators: month name */ __( 'December' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement