pusatdata

Wp-Trik: Mengganti Nama Hari ke Bahasa Indonesia

Apr 8th, 2017 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. cari file ini:
  2. .../wp-includes/class-wp-locale.php
  3.  
  4. Cari mulai baris 130:
  5.  
  6. $this->weekday[0] = /* translators: weekday */ __('Minggu');
  7. $this->weekday[1] = /* translators: weekday */ __('Senin');
  8. $this->weekday[2] = /* translators: weekday */ __('Selasa');
  9. $this->weekday[3] = /* translators: weekday */ __('Rabu');
  10. $this->weekday[4] = /* translators: weekday */ __('Kamis');
  11. $this->weekday[5] = /* translators: weekday */ __('Jumat');
  12. $this->weekday[6] = /* translators: weekday */ __('Sabtu');
  13.  
  14. baris 157 untuk bulan
  15. // The months.
  16. $this->month['01'] = /* translators: Month name. */ __( 'Januari' );
  17. $this->month['02'] = /* translators: Month name. */ __( 'Februari' );
  18. $this->month['03'] = /* translators: Month name. */ __( 'Maret' );
  19. $this->month['04'] = /* translators: Month name. */ __( 'April' );
  20. $this->month['05'] = /* translators: Month name. */ __( 'Mei' );
  21. $this->month['06'] = /* translators: Month name. */ __( 'Juni' );
  22. $this->month['07'] = /* translators: Month name. */ __( 'Juli' );
  23. $this->month['08'] = /* translators: Month name. */ __( 'Agustus' );
  24. $this->month['09'] = /* translators: Month name. */ __( 'September' );
  25. $this->month['10'] = /* translators: Month name. */ __( 'Oktober' );
  26. $this->month['11'] = /* translators: Month name. */ __( 'November' );
  27. $this->month['12'] = /* translators: Month name. */ __( 'Desember' );
  28.  
Add Comment
Please, Sign In to add comment