mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* dates of creation and completion were finally fixed
This commit is contained in:
parent
6967812626
commit
affc45e591
5 changed files with 15 additions and 9 deletions
|
|
@ -7,7 +7,7 @@
|
|||
Author: Max Pozdeev
|
||||
Author Url: http://www.mytinytodo.net
|
||||
AppVersion: v1.3.2
|
||||
Date: 2009-12-15
|
||||
Date: 2009-12-19
|
||||
*/
|
||||
|
||||
class Lang extends DefaultLang
|
||||
|
|
@ -41,6 +41,8 @@ class Lang extends DefaultLang
|
|||
'searching' => "Поиск",
|
||||
'tasks' => "Задачи",
|
||||
'taskdate_inline' => "добавленa %s",
|
||||
'taskdate_created' => "Дата создания",
|
||||
'taskdate_completed' => "Дата завершения",
|
||||
'edit_task' => "Редактирование задачи",
|
||||
'add_task' => "Новая задача",
|
||||
'priority' => "Приоритет",
|
||||
|
|
|
|||
|
|
@ -141,12 +141,12 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} );
|
|||
<div id="page_taskedit" style="display:none">
|
||||
|
||||
<h3 class="mtt-inadd"><?php _e('add_task');?></h3>
|
||||
|
||||
<div id="taskedit-date" class="mtt-inedit">
|
||||
<div class="date-created">Created: <span></span></div>
|
||||
<div class="date-completed">Completed: <span></span></div>
|
||||
</div>
|
||||
<h3 class="mtt-inedit"><?php _e('edit_task');?></h3>
|
||||
<h3 class="mtt-inedit"><?php _e('edit_task');?>
|
||||
<div id="taskedit-date" class="mtt-inedit">
|
||||
<span class="date-created" title="<?php _e('taskdate_created');?>"><span></span></span>
|
||||
<span class="date-completed" title="<?php _e('taskdate_completed');?>"> / <span></span></span>
|
||||
</div>
|
||||
</h3>
|
||||
|
||||
<form onSubmit="return saveTask(this)" name="edittask">
|
||||
<input type="hidden" name="isadd" value="0">
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@ class DefaultLang
|
|||
'searching' => "Searching for",
|
||||
'tasks' => "Tasks",
|
||||
'taskdate_inline' => "added at %s",
|
||||
'taskdate_created' => "Date of creation",
|
||||
'taskdate_completed' => "Date of completion",
|
||||
'edit_task' => "Edit Task",
|
||||
'add_task' => "New Task",
|
||||
'priority' => "Priority",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
Author: Max Pozdeev
|
||||
Author Url: http://www.mytinytodo.net
|
||||
AppVersion: v1.3.2
|
||||
Date: 2009-12-15
|
||||
Date: 2009-12-19
|
||||
*/
|
||||
|
||||
class Lang extends DefaultLang
|
||||
|
|
@ -41,6 +41,8 @@ class Lang extends DefaultLang
|
|||
'searching' => "Searching for",
|
||||
'tasks' => "Tasks",
|
||||
'taskdate_inline' => "added at %s",
|
||||
'taskdate_created' => "Date of creation",
|
||||
'taskdate_completed' => "Date of completion",
|
||||
'edit_task' => "Edit Task",
|
||||
'add_task' => "New Task",
|
||||
'priority' => "Priority",
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ div.task-note-area textarea { color:#999999; width:100%; display:block; height:6
|
|||
#alltags .tag:hover { background-color:#999988; color:white; }
|
||||
#page_taskedit.mtt-inadd .mtt-inedit { display:none; }
|
||||
#page_taskedit.mtt-inedit .mtt-inadd { display:none; }
|
||||
#taskedit-date { font-size:8pt; font-weight:normal; text-align:right; float:right; color:#777; }
|
||||
#taskedit-date { font-size:10pt; font-weight:normal; text-align:right; float:right; color:#777; }
|
||||
|
||||
/* autocomplete */
|
||||
.ac_results { padding: 0px; border: 1px solid #cccccc; background-color: #f0f0f0; overflow: hidden; z-index: 99999; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue