diff options
author | Evan Winslow <evan.b.winslow@gmail.com> | 2010-10-17 11:17:09 +0000 |
---|---|---|
committer | Evan Winslow <evan.b.winslow@gmail.com> | 2010-10-17 11:17:09 +0000 |
commit | fea75c1f48b4ef798f1687698a22cba82a3713da (patch) | |
tree | 0cfeb11e73361289b6c52ed9e5dd0417bd97defe /languages | |
parent | 419c4e01ba3a8b8a038cee32c1fce7d1883532c1 (diff) | |
download | elgg-fea75c1f48b4ef798f1687698a22cba82a3713da.tar.gz elgg-fea75c1f48b4ef798f1687698a22cba82a3713da.tar.bz2 |
Added default placeholders for most inputs -- tried to make code more consistent. Still needs documentation
Diffstat (limited to 'languages')
-rw-r--r-- | languages/en.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/languages/en.php b/languages/en.php new file mode 100644 index 000000000..e810da873 --- /dev/null +++ b/languages/en.php @@ -0,0 +1,19 @@ +<?php +$english = array( + 'placeholder:date' => '', + 'placeholder:color' => '', + 'placeholder:datetime-local' => '', + 'placeholder:datetime' => '', + 'placeholder:email' => '', + 'placeholder:month' => '', + 'placeholder:number' => '', + 'placeholder:password' => '', + 'placeholder:search' => '', + 'placeholder:tags' => '', + 'placeholder:tel' => '', + 'placeholder:time' => '', + 'placeholder:url' => '', + 'placeholder:week' => '', +); + +add_translation('en', $english);
\ No newline at end of file |