mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
Initial import of old legacy Zynapse Framework,
untouched since early 2008.
This commit is contained in:
18
config/strings/_global.php
Normal file
18
config/strings/_global.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/*
|
||||
|
||||
Global Strings
|
||||
- language independent strings accessible directly from the
|
||||
point that Znap::initialize() is called
|
||||
|
||||
*/
|
||||
|
||||
$strings = array(
|
||||
|
||||
|
||||
// 'my_string' => 'some awesome text',
|
||||
|
||||
|
||||
);
|
||||
|
||||
?>
|
||||
46
config/strings/english.php
Normal file
46
config/strings/english.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?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',
|
||||
|
||||
|
||||
|
||||
);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user