1<?php
2/**
3 * english language file
4 */
5
6// settings must be present and set appropriately for the language
7$lang['encoding']   = 'utf-8';
8$lang['direction']  = 'ltr';
9
10// for admin plugins, the menu prompt to be displayed in the admin menu
11// if set here, the plugin doesn't need to override the getMenuText() method
12$lang['menu']           = 'darcs patch';
13$lang['instructions']   = 'Apply raw darcs-style patches by providing their URL. ((For instance, the "raw" patches found by browsing [[http://dev.splitbrain.org/darcsweb/darcsweb.cgi?r=dokuwiki;a=summary]]))';
14
15// custom language strings for the plugin
16$lang['head']           = 'Raw Patch URL';
17$lang['head_stored']    = 'Stored Patch URLs';
18$lang['setup']          = 'Stored patch URLs may be set in [[%1|Admin Configuration Settings]]';
19
20$lang['name']           = 'Name';
21$lang['date']           = 'Date';
22$lang['author']         = 'Author';
23$lang['description']    = 'Description';
24$lang['remove']         = 'remove';
25$lang['update']         = 'update';
26$lang['patches']        = 'Patches';
27$lang['plugins']        = 'Plugins';
28
29$lang['bt_apply']       = 'Apply';
30$lang['bt_back']        = 'Reset';
31$lang['bt_test']        = 'Test';
32$lang['bt_reverse']     = 'Reverse';
33
34$lang['msg_errurl']     = 'Incomplete patch URL';
35$lang['msg_errmatch']   = 'Line mismatch';
36$lang['msg_errline']    = 'Invalid line';
37$lang['msg_erropen']    = 'Could not open';
38$lang['msg_errwrite']   = 'File write error';
39$lang['msg_test']       = 'Test success';
40$lang['msg_success']    = 'File success';
41
42?>