mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
91 lines
No EOL
2.6 KiB
PHP
91 lines
No EOL
2.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
myTinyTodo language pack
|
|
Language: English
|
|
Author: Max Pozdeev
|
|
Url: http://www.mytinytodo.net
|
|
AppVersion: v1.3.1
|
|
Date: 2009-11-22
|
|
*/
|
|
|
|
class Lang extends DefaultLang
|
|
{
|
|
var $js = array
|
|
(
|
|
'actionNote' => "note",
|
|
'actionEdit' => "modify",
|
|
'actionDelete' => "delete",
|
|
'confirmDelete' => "Are you sure?",
|
|
'actionNoteSave' => "save",
|
|
'actionNoteCancel' => "cancel",
|
|
'error' => "Some error occurred (click for details)",
|
|
'denied' => "Access denied",
|
|
'invalidpass' => "Wrong password",
|
|
'readonly' => "read-only",
|
|
'tagfilter' => "Tag:",
|
|
'addList' => "Create new list",
|
|
'renameList' => "Rename list",
|
|
'deleteList' => "This will delete current list with all tasks in it.\\nAre you sure?",
|
|
'settingsSaved' => "Settings saved. Reloading...",
|
|
);
|
|
|
|
var $inc = array
|
|
(
|
|
'My Tiny Todolist' => "My Tiny Todolist",
|
|
'htab_newtask' => "New task",
|
|
'htab_search' => "Search",
|
|
'btn_add' => "Add",
|
|
'btn_search' => "Search",
|
|
'advanced_add' => "Advanced",
|
|
'searching' => "Searching for",
|
|
'tasks' => "Tasks",
|
|
'taskdate_inline' => "added at %s",
|
|
'edit_task' => "Edit Task",
|
|
'add_task' => "New Task",
|
|
'priority' => "Priority",
|
|
'task' => "Task",
|
|
'note' => "Note",
|
|
'save' => "Save",
|
|
'cancel' => "Cancel",
|
|
'password' => "Password",
|
|
'btn_login' => "Login",
|
|
'a_login' => "Login",
|
|
'a_logout' => "Logout",
|
|
'tags' => "Tags",
|
|
'tagfilter_cancel' => "cancel filter",
|
|
'sortByHand' => "Sort by hand",
|
|
'sortByPriority' => "Sort by priority",
|
|
'sortByDueDate' => "Sort by due date",
|
|
'due' => "Due",
|
|
'daysago' => "%d days ago",
|
|
'indays' => "in %d days",
|
|
'months_short' => array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"),
|
|
'months_long' => array("January","February","March","April","May","June","July","August","September","October","November","December"),
|
|
'days_min' => array("Su","Mo","Tu","We","Th","Fr","Sa"),
|
|
'days_long' => array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"),
|
|
'today' => "today",
|
|
'yesterday' => "yesterday",
|
|
'tomorrow' => "tomorrow",
|
|
'f_past' => "Overdue",
|
|
'f_today' => "Today and tomorrow",
|
|
'f_soon' => "Soon",
|
|
'tasks_and_compl' => "Tasks + completed",
|
|
'notes' => "Notes:",
|
|
'notes_show' => "Show",
|
|
'notes_hide' => "Hide",
|
|
'list_new' => "New list",
|
|
'list_rename' => "Rename",
|
|
'list_delete' => "Delete",
|
|
'list_publish' => "Publish list",
|
|
'alltags' => "All tags:",
|
|
'alltags_show' => "Show all",
|
|
'alltags_hide' => "Hide all",
|
|
'a_settings' => "Settings",
|
|
'rss_feed' => "RSS Feed",
|
|
'feed_title' => "%s",
|
|
'feed_description' => "New tasks in %s",
|
|
);
|
|
}
|
|
|
|
?>
|