1 | 1 | simandl | <?php |
2 | | | |
3 | | | // WebSVN - Subversion repository viewing via the web using PHP |
4 | | | // Copyright (C) 2004 Tim Armes |
5 | | | // |
6 | | | // This program is free software; you can redistribute it and/or modify |
7 | | | // it under the terms of the GNU General Public License as published by |
8 | | | // the Free Software Foundation; either version 2 of the License, or |
9 | | | // (at your option) any later version. |
10 | | | // |
11 | | | // This program is distributed in the hope that it will be useful, |
12 | | | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | | | // GNU General Public License for more details. |
15 | | | // |
16 | | | // You should have received a copy of the GNU General Public License |
17 | | | // along with this program; if not, write to the Free Software |
18 | | | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | | | // |
20 | | | // -- |
21 | | | // |
22 | | | // english.php |
23 | | | // |
24 | | | // English language strings |
25 | | | |
26 | | | // The language name is displayed in the drop down box. It MUST be encoded as Unicode (no HTML entities). |
27 | | | $lang["LANGUAGENAME"] = "English"; |
28 | | | // This is the RFC 2616 (§3.10) language tag that corresponds to this translation |
29 | | | // see also RFC 4646 |
30 | | | $lang['LANGUAGETAG'] = 'en'; |
31 | | | |
32 | | | $lang["LOG"] = "Log"; |
33 | | | $lang["DIFF"] = "Diff"; |
34 | | | |
35 | | | $lang["NOREP"] = "No repository given"; |
36 | | | $lang["NOPATH"] = "Path not found"; |
37 | | | $lang["NOACCESS"] = "You do not have the necessary permissions to read this content"; |
38 | | | $lang["RESTRICTED"] = "Restricted access"; |
39 | | | $lang["SUPPLYREP"] = "Please set up a repository path in include/config.php using \$config->parentPath or \$config->addRepository<p>See the installation guide for more details"; |
40 | | | |
41 | | | $lang["DIFFREVS"] = "Diff between revs"; |
42 | | | $lang["AND"] = "and"; |
43 | | | $lang["REV"] = "Rev"; |
44 | | | $lang["LINE"] = "Line"; |
45 | | | $lang["SHOWENTIREFILE"] = "Show entire file"; |
46 | | | $lang["SHOWCOMPACT"] = "Only display areas with differences"; |
47 | 3 | simandl | $lang["IGNOREWHITESPACE"] = "Ignore whitespace"; |
48 | | | $lang["REGARDWHITESPACE"] = "Regard whitespace"; |
49 | 1 | simandl | |
50 | | | $lang["LISTING"] = "Directory listing"; |
51 | | | $lang["FILEDETAIL"] = "Details"; |
52 | | | $lang["DIFFPREV"] = "Compare with Previous"; |
53 | | | $lang["BLAME"] = "Blame"; |
54 | | | |
55 | | | $lang["REVINFO"] = "Revision Information"; |
56 | | | $lang["GOYOUNGEST"] = "Go to most recent revision"; |
57 | | | $lang["LASTMOD"] = "Last modification"; |
58 | | | $lang["LOGMSG"] = "Log message"; |
59 | | | $lang["CHANGES"] = "Changes"; |
60 | | | $lang["SHOWCHANGED"] = "Show changed files"; |
61 | | | $lang["HIDECHANGED"] = "Hide changed files"; |
62 | | | $lang["NEWFILES"] = "New Files"; |
63 | | | $lang["CHANGEDFILES"] = "Modified files"; |
64 | | | $lang["DELETEDFILES"] = "Deleted files"; |
65 | 3 | simandl | $lang["VIEWLOG"] = "View Log"; |
66 | 1 | simandl | $lang["PATH"] = "Path"; |
67 | | | $lang["AUTHOR"] = "Author"; |
68 | | | $lang["AGE"] = "Age"; |
69 | | | $lang["LOG"] = "Log"; |
70 | | | $lang["CURDIR"] = "Current Directory"; |
71 | | | $lang["TARBALL"] = "Tarball"; |
72 | 3 | simandl | $lang["DOWNLOAD"] = "Download"; |
73 | 1 | simandl | |
74 | | | $lang["PREV"] = "Prev"; |
75 | | | $lang["NEXT"] = "Next"; |
76 | | | $lang["SHOWALL"] = "Show All"; |
77 | | | |
78 | | | $lang["BADCMD"] = "Error running this command"; |
79 | | | $lang["UNKNOWNREVISION"] = "Revision not found"; |
80 | | | |
81 | | | $lang["POWERED"] = "Powered by <a href=\"http://www.websvn.info/\">WebSVN</a>"; |
82 | 3 | simandl | $lang["PROJECTS"] = "Subversion Repositories"; |
83 | | | $lang["SERVER"] = "Subversion Server"; |
84 | 1 | simandl | |
85 | | | $lang["FILTER"] = "Filtering Options"; |
86 | | | $lang["STARTLOG"] = "From rev"; |
87 | | | $lang["ENDLOG"] = "To rev"; |
88 | | | $lang["MAXLOG"] = "Max revs"; |
89 | | | $lang["SEARCHLOG"] = "Search for"; |
90 | | | $lang["CLEARLOG"] = "Clear current filter"; |
91 | | | $lang["MORERESULTS"] = "Find more matches..."; |
92 | | | $lang["NORESULTS"] = "There are no logs matching your query"; |
93 | | | $lang["NOMORERESULTS"] = "There are no more logs matching your query"; |
94 | | | $lang['NOPREVREV'] = 'No previous revision'; |
95 | | | |
96 | | | $lang["RSSFEEDTITLE"] = "WebSVN RSS feed"; |
97 | | | $lang["FILESMODIFIED"] = "file(s) modified"; |
98 | | | $lang["RSSFEED"] = "RSS feed"; |
99 | | | |
100 | | | $lang["LINENO"] = "Line No."; |
101 | | | $lang["BLAMEFOR"] = "Blame information for rev"; |
102 | | | |
103 | | | $lang["DAYLETTER"] = "d"; |
104 | | | $lang["HOURLETTER"] = "h"; |
105 | | | $lang["MINUTELETTER"] = "m"; |
106 | | | $lang["SECONDLETTER"] = "s"; |
107 | | | |
108 | | | $lang["GO"] = "Go"; |
109 | | | |
110 | | | $lang["PATHCOMPARISON"] = "Path Comparison"; |
111 | | | $lang["COMPAREPATHS"] = "Compare Paths"; |
112 | | | $lang["COMPAREREVS"] = "Compare Revisions"; |
113 | | | $lang["PROPCHANGES"] = "Property changes :"; |
114 | | | $lang["CONVFROM"] = "This comparison shows the changes necessary to convert path "; |
115 | | | $lang["TO"] = "TO"; |
116 | | | $lang["REVCOMP"] = "Reverse comparison"; |
117 | | | $lang["COMPPATH"] = "Compare Path:"; |
118 | | | $lang["WITHPATH"] = "With Path:"; |
119 | | | $lang["FILEDELETED"] = "File deleted"; |
120 | | | $lang["FILEADDED"] = "New file"; |
121 | | | |
122 | | | // The following are defined by some languages to stop unwanted line splitting |
123 | | | // in the template files. |
124 | | | |
125 | | | $lang["NOBR"] = ""; |
126 | | | $lang["ENDNOBR"] = ""; |
127 | | | |
128 | | | // $lang["NOBR"] = "<nobr>"; |
129 | | | // $lang["ENDNOBR"] = "</nobr>"; |