Guest User

Untitled

a guest
Jul 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. //_config.php
  3.  
  4. i18n::enable();
  5. i18n::set_default_lang('nl');
  6. i18n::set_locale('nl_NL');
  7. Translatable::set_default_locale('nl_NL');
  8. Translatable::set_allowed_locales(array(
  9. 'nl_NL',
  10. 'de_DE'
  11. )
  12. );
  13. Object::add_extension('SiteTree', 'Translatable');
  14.  
  15. // template Booking_page.ss
  16.  
  17. <% _t('Booking.BOOKINGPERIOD',"Verblijfsduur") %>
  18.  
  19. // de_DE.php
  20.  
  21. $lang['de_DE']['Booking']['BOOKINGPERIOD'] = 'Aufenthalt';
Add Comment
Please, Sign In to add comment