mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
46 lines
499 B
PHP
46 lines
499 B
PHP
<?php
|
|
/*
|
|
|
|
English Strings
|
|
- default language strings
|
|
|
|
*/
|
|
|
|
$strings = array(
|
|
|
|
|
|
/*
|
|
|
|
Required Strings
|
|
|
|
*/
|
|
|
|
# local name ("Svenska" for Swedish for example)
|
|
'_ZNAP_LANGUAGE' => 'English',
|
|
|
|
# short language name
|
|
'_ZNAP_LANG' => 'en',
|
|
|
|
# language locale values
|
|
'_ZNAP_LOCALE' => array('eng', 'en_US'),
|
|
|
|
# character encoding
|
|
'_ZNAP_ENCODING' => 'utf-8',
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Custom Strings
|
|
- add your custom strings here
|
|
|
|
*/
|
|
|
|
// 'my_string' => 'some awesome text',
|
|
|
|
|
|
|
|
);
|
|
|
|
?>
|