1<?php
2/**
3 * english language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Myron Turner <turnermm02@shaw.ca>
7 */
8
9// settings must be present and set appropriately for the language
10$lang['encoding']   = 'utf-8';
11$lang['direction']  = 'ltr';
12
13// for admin plugins, the menu prompt to be displayed in the admin menu
14// if set here, the plugin doesn't need to override the getMenuText() method
15$lang['menu'] = 'Dokuwiki Commits';
16
17$lang['btn_init'] = 'Initialize';
18$lang['btn_update'] = 'Update';
19
20$lang['invalid'] = 'invalid input detected!';
21$lang['input_year'] = 'Year';
22$lang['month'] = 'Month';
23$lang['day'] = 'Day';
24
25$lang['header_init']= 'Initialize Sqlite Database';
26$lang['header_update'] = 'Update Database';
27$lang['explain_init'] = 'Year, month, and day from which to initialize. With each change of date, a new database is created.';
28$lang['explain_update'] = 'This function will add commits to the Sqlite database'.
29                          '  beginning at the Year, month, and day entered below. ' .
30                          ' It will not overwrite previously entered data.';
31//$lang['btn_dbinfo'] = 'DB Info';
32//$lang['header_dbinfo'] = 'All registered databases and associated info: ';
33$lang['maintenance'] = 'Maintenance';
34$lang['header_remote_url'] = 'Set URL of Remote Repository';
35$lang['explain_remote_url'] = 'You can either set it manually or let dwcommit set it for you. If already set, it will appear in the text-box.';
36$lang['btn_remote_url'] = 'Get Remote URL';
37$lang['btn_set_remote'] = "Set Remote URL";
38$lang['remote_url_text'] = "Remote URL";
39
40$lang['header_git'] = 'Update Git';
41$lang['explain_git'] = 'These functions can be used to bring your Git up-to-date';
42
43$lang['header_git_merge'] = 'Merge fetched commits';
44$lang['btn_merge'] = 'Merge';
45
46$lang['header_git_fetch'] = 'Fetch remote commits';
47$lang['btn_fetch'] = 'Fetch';
48
49$lang['header_git_commit'] = 'Commit local files';
50$lang['btn_commit'] = 'Commit';
51$lang['header_git_add'] = 'Add local files';
52$lang['btn_add'] = 'Add';
53
54
55$lang['header_additional'] = 'Advanced Git Options';
56$lang['sql_opts'] = 'Update/Create SQL Database';
57$lang['git_opts'] = 'Update Git';
58$lang['git_advanced_opts'] = $lang['header_additional'] ;
59$lang['git_repos'] = 'Repos/Branches';
60
61$lang['header_git_pull'] = 'Update git (pull)';
62$lang['btn_pull'] = 'Pull';
63
64$lang['header_git_status'] = 'Check current status of git';
65$lang['btn_status'] = 'Check';
66
67$lang['btn_branch'] =  'Change branch'; //'Branch';
68$lang['branch_names'] = 'Select and Change Branch';
69$lang['btn_repos'] =  'Change Repo'; //'Repo';
70$lang['repo_names'] = 'Select and Change Repo';
71
72$lang['repro_switched'] = 'Repo changed to';
73$lang['git_info'] = 'Help';
74$lang['header_git_query'] = 'Database Queries';
75$lang['git_query'] = 'Query';
76$lang['header_git_MsgArea'] = 'Message Area';
77$lang['btn_msg_small'] = 'Smaller';
78$lang['btn_msg_big'] = 'Bigger';
79$lang['btn_close_all'] = 'Close All';
80$lang['current_db'] = 'Current Database: ';
81
82$lang['q_srch_term'] = 'Search Term';
83$lang['q_srch_type'] = 'Search Type';
84$lang['q_author'] = 'Author';
85$lang['q_branch'] = 'Branch';
86$lang['q_start_date'] = 'Start Date';
87$lang['q_end_date'] = 'End Date';
88$lang['q_submit'] = 'Submit Query';
89$lang['q_date_fmt'] = 'Date Format';
90$lang['q_output'] = 'Output';
91$lang['q_table'] = 'Table';
92$lang['q_plain'] = 'Plain text';
93$lang['div_close'] = 'Close';
94
95$lang['prune'] = 'Prune Entries';
96$lang['prune_del'] = 'Delete Entries';
97$lang['prune_restore'] = 'Restore Backup';
98$lang['db_file'] = 'Database File:';
99$lang['git_local'] = "Local Git: ";
100$lang['git_missing'] = "Local Git Missing: ";
101$lang['remote_url'] = 'Remote URL: ';
102$lang['explain_maint'] ="Check for either pruning or deletion";
103