mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* manage lists menu strings added into translation
This commit is contained in:
parent
0ea71f7950
commit
367512fc0b
3 changed files with 9 additions and 3 deletions
|
|
@ -192,9 +192,9 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} );
|
|||
</div>
|
||||
|
||||
<div id="mylistscontainer" class="mtt-btnmenu-container" style="display:none">
|
||||
<div class="li" onClick="addList()">New list</div>
|
||||
<div class="li" onClick="renameCurList()">Rename</div>
|
||||
<div class="li" onClick="deleteCurList()">Delete</div>
|
||||
<div class="li" onClick="addList()"><?php __('list_new');?></div>
|
||||
<div class="li" onClick="renameCurList()"><?php __('list_rename');?></div>
|
||||
<div class="li" onClick="deleteCurList()"><?php __('list_delete');?></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -68,6 +68,9 @@ class DefaultLang
|
|||
'notes' => "Notes:",
|
||||
'notes_show' => "Show",
|
||||
'notes_hide' => "Hide",
|
||||
'list_new' => "New list",
|
||||
'list_rename' => "Rename",
|
||||
'list_delete' => "Delete",
|
||||
);
|
||||
|
||||
var $js = array();
|
||||
|
|
|
|||
|
|
@ -63,6 +63,9 @@ class Lang extends DefaultLang
|
|||
'notes' => "Notes:",
|
||||
'notes_show' => "Show",
|
||||
'notes_hide' => "Hide",
|
||||
'list_new' => "New list",
|
||||
'list_rename' => "Rename",
|
||||
'list_delete' => "Delete",
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue