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