From 22e06039a9a017d885d23f5efee870cf72ef0e7d Mon Sep 17 00:00:00 2001 From: Max Pozdeev Date: Sun, 20 Sep 2009 16:49:38 +0400 Subject: [PATCH] * added strings for notes toggle into translation --- src/index.php | 2 +- src/lang/class.default.php | 3 +++ src/lang/en.php | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/index.php b/src/index.php index 21ecbf5..c1c0f62 100644 --- a/src/index.php +++ b/src/index.php @@ -133,7 +133,7 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} ); (0)   -Notes: Show / Hide + /
diff --git a/src/lang/class.default.php b/src/lang/class.default.php index c308645..a7c22f8 100644 --- a/src/lang/class.default.php +++ b/src/lang/class.default.php @@ -64,6 +64,9 @@ class DefaultLang 'f_today' => "Today and tomorrow", 'f_soon' => "Soon", 'tasks_and_compl' => "Tasks + completed", + 'notes' => "Notes:", + 'notes_show' => "Show", + 'notes_hide' => "Hide", ); var $js = array(); diff --git a/src/lang/en.php b/src/lang/en.php index caf8535..d33054e 100644 --- a/src/lang/en.php +++ b/src/lang/en.php @@ -59,6 +59,9 @@ class Lang extends DefaultLang 'f_today' => "Today and tomorrow", 'f_soon' => "Soon", 'tasks_and_compl' => "Tasks + completed", + 'notes' => "Notes:", + 'notes_show' => "Show", + 'notes_hide' => "Hide", ); }