Skip to content

Instantly share code, notes, and snippets.

@bosskovic
Created July 30, 2013 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bosskovic/6113848 to your computer and use it in GitHub Desktop.
Save bosskovic/6113848 to your computer and use it in GitHub Desktop.
An example of PHP string array file used for internationalization
<?php
return array(
'monday' => 'Montag',
'tuesday' => 'Dienstag',
'wednesday' => 'Mittwoch',
'thursday' => 'Donnerstag',
'friday' => 'Frietag',
'saturday' => 'Samstag',
'sunday' => 'Sontag'
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment