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 |
$lang["LANG"] = "EN"; |
28 |
|
29 |
|
29 |
$lang["LOG"] = "Log"; |
30 |
$lang["LOG"] = "Log"; |
30 |
$lang["DIFF"] = "Diff"; |
31 |
$lang["DIFF"] = "Diff"; |
31 |
|
32 |
|
32 |
$lang["NOREP"] = "No repository given"; |
33 |
$lang["NOREP"] = "No repository given"; |
33 |
$lang["NOPATH"] = "Path not found"; |
34 |
$lang["NOPATH"] = "Path not found"; |
34 |
$lang["NOACCESS"] = "You do not have the necessary permissions to read this directory"; |
35 |
$lang["NOACCESS"] = "You do not have the necessary permissions to read this directory"; |
35 |
$lang["RESTRICTED"] = "Restricted access"; |
36 |
$lang["RESTRICTED"] = "Restricted access"; |
36 |
$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"; |
37 |
$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"; |
37 |
|
38 |
|
38 |
$lang["DIFFREVS"] = "Diff between revs"; |
39 |
$lang["DIFFREVS"] = "Diff between revs"; |
39 |
$lang["AND"] = "and"; |
40 |
$lang["AND"] = "and"; |
40 |
$lang["REV"] = "Rev"; |
41 |
$lang["REV"] = "Rev"; |
41 |
$lang["LINE"] = "Line"; |
42 |
$lang["LINE"] = "Line"; |
42 |
$lang["SHOWENTIREFILE"] = "Show entire file"; |
43 |
$lang["SHOWENTIREFILE"] = "Show entire file"; |
43 |
$lang["SHOWCOMPACT"] = "Only display areas with differences"; |
44 |
$lang["SHOWCOMPACT"] = "Only display areas with differences"; |
44 |
|
45 |
|
45 |
$lang["DIFFPREV"] = "Compare with Previous"; |
46 |
$lang["DIFFPREV"] = "Compare with Previous"; |
46 |
$lang["BLAME"] = "Blame"; |
47 |
$lang["BLAME"] = "Blame"; |
47 |
|
48 |
|
48 |
$lang["REVINFO"] = "Revision Information"; |
49 |
$lang["REVINFO"] = "Revision Information"; |
49 |
$lang["GOYOUNGEST"] = "Go to most recent revision"; |
50 |
$lang["GOYOUNGEST"] = "Go to most recent revision"; |
50 |
$lang["LASTMOD"] = "Last modification"; |
51 |
$lang["LASTMOD"] = "Last modification"; |
51 |
$lang["LOGMSG"] = "Log message"; |
52 |
$lang["LOGMSG"] = "Log message"; |
52 |
$lang["CHANGES"] = "Changes"; |
53 |
$lang["CHANGES"] = "Changes"; |
53 |
$lang["SHOWCHANGED"] = "Show changed files"; |
54 |
$lang["SHOWCHANGED"] = "Show changed files"; |
54 |
$lang["HIDECHANGED"] = "Hide changed files"; |
55 |
$lang["HIDECHANGED"] = "Hide changed files"; |
55 |
$lang["NEWFILES"] = "New Files"; |
56 |
$lang["NEWFILES"] = "New Files"; |
56 |
$lang["CHANGEDFILES"] = "Modified files"; |
57 |
$lang["CHANGEDFILES"] = "Modified files"; |
57 |
$lang["DELETEDFILES"] = "Deleted files"; |
58 |
$lang["DELETEDFILES"] = "Deleted files"; |
58 |
$lang["VIEWLOG"] = "View Log"; |
59 |
$lang["VIEWLOG"] = "View Log"; |
59 |
$lang["PATH"] = "Path"; |
60 |
$lang["PATH"] = "Path"; |
60 |
$lang["AUTHOR"] = "Author"; |
61 |
$lang["AUTHOR"] = "Author"; |
61 |
$lang["AGE"] = "Age"; |
62 |
$lang["AGE"] = "Age"; |
62 |
$lang["LOG"] = "Log"; |
63 |
$lang["LOG"] = "Log"; |
63 |
$lang["CURDIR"] = "Current Directory"; |
64 |
$lang["CURDIR"] = "Current Directory"; |
64 |
$lang["TARBALL"] = "Tarball"; |
65 |
$lang["TARBALL"] = "Tarball"; |
65 |
|
66 |
|
66 |
$lang["PREV"] = "Prev"; |
67 |
$lang["PREV"] = "Prev"; |
67 |
$lang["NEXT"] = "Next"; |
68 |
$lang["NEXT"] = "Next"; |
68 |
$lang["SHOWALL"] = "Show All"; |
69 |
$lang["SHOWALL"] = "Show All"; |
69 |
|
70 |
|
70 |
$lang["BADCMD"] = "Error running this command"; |
71 |
$lang["BADCMD"] = "Error running this command"; |
71 |
$lang["UNKNOWNREVISION"] = "Revision not found"; |
72 |
$lang["UNKNOWNREVISION"] = "Revision not found"; |
72 |
|
73 |
|
73 |
$lang["POWERED"] = "Powered by <a href=\"http://websvn.tigris.org/\">WebSVN</a>"; |
74 |
$lang["POWERED"] = "Powered by <a href=\"http://websvn.tigris.org/\">WebSVN</a>"; |
74 |
$lang["PROJECTS"] = "Subversion Repositories"; |
75 |
$lang["PROJECTS"] = "Subversion Repositories"; |
75 |
$lang["SERVER"] = "Subversion Server"; |
76 |
$lang["SERVER"] = "Subversion Server"; |
76 |
|
77 |
|
77 |
$lang["FILTER"] = "Filtering Options"; |
78 |
$lang["FILTER"] = "Filtering Options"; |
78 |
$lang["STARTLOG"] = "From rev"; |
79 |
$lang["STARTLOG"] = "From rev"; |
79 |
$lang["ENDLOG"] = "To rev"; |
80 |
$lang["ENDLOG"] = "To rev"; |
80 |
$lang["MAXLOG"] = "Max revs"; |
81 |
$lang["MAXLOG"] = "Max revs"; |
81 |
$lang["SEARCHLOG"] = "Search for"; |
82 |
$lang["SEARCHLOG"] = "Search for"; |
82 |
$lang["CLEARLOG"] = "Clear current filter"; |
83 |
$lang["CLEARLOG"] = "Clear current filter"; |
83 |
$lang["MORERESULTS"] = "Find more matches..."; |
84 |
$lang["MORERESULTS"] = "Find more matches..."; |
84 |
$lang["NORESULTS"] = "There are no logs matching your query"; |
85 |
$lang["NORESULTS"] = "There are no logs matching your query"; |
85 |
$lang["NOMORERESULTS"] = "There are no more logs matching your query"; |
86 |
$lang["NOMORERESULTS"] = "There are no more logs matching your query"; |
86 |
|
87 |
|
87 |
$lang["RSSFEEDTITLE"] = "WebSVN RSS feed"; |
88 |
$lang["RSSFEEDTITLE"] = "WebSVN RSS feed"; |
88 |
$lang["FILESMODIFIED"] = "file(s) modified"; |
89 |
$lang["FILESMODIFIED"] = "file(s) modified"; |
89 |
$lang["RSSFEED"] = "RSS feed"; |
90 |
$lang["RSSFEED"] = "RSS feed"; |
90 |
|
91 |
|
91 |
$lang["LINENO"] = "Line No."; |
92 |
$lang["LINENO"] = "Line No."; |
92 |
$lang["BLAMEFOR"] = "Blame information for rev"; |
93 |
$lang["BLAMEFOR"] = "Blame information for rev"; |
93 |
|
94 |
|
94 |
$lang["DAYLETTER"] = "d"; |
95 |
$lang["DAYLETTER"] = "d"; |
95 |
$lang["HOURLETTER"] = "h"; |
96 |
$lang["HOURLETTER"] = "h"; |
96 |
$lang["MINUTELETTER"] = "m"; |
97 |
$lang["MINUTELETTER"] = "m"; |
97 |
$lang["SECONDLETTER"] = "s"; |
98 |
$lang["SECONDLETTER"] = "s"; |
98 |
|
99 |
|
99 |
$lang["GO"] = "Go"; |
100 |
$lang["GO"] = "Go"; |
100 |
|
101 |
|
101 |
$lang["PATHCOMPARISON"] = "Path Comparison"; |
102 |
$lang["PATHCOMPARISON"] = "Path Comparison"; |
102 |
$lang["COMPAREPATHS"] = "Compare Paths"; |
103 |
$lang["COMPAREPATHS"] = "Compare Paths"; |
103 |
$lang["COMPAREREVS"] = "Compare Revisions"; |
104 |
$lang["COMPAREREVS"] = "Compare Revisions"; |
104 |
$lang["PROPCHANGES"] = "Property changes :"; |
105 |
$lang["PROPCHANGES"] = "Property changes :"; |
105 |
$lang["CONVFROM"] = "This comparison shows the changes necessary to convert path "; |
106 |
$lang["CONVFROM"] = "This comparison shows the changes necessary to convert path "; |
106 |
$lang["TO"] = "TO"; |
107 |
$lang["TO"] = "TO"; |
107 |
$lang["REVCOMP"] = "Reverse comparison"; |
108 |
$lang["REVCOMP"] = "Reverse comparison"; |
108 |
$lang["COMPPATH"] = "Compare Path:"; |
109 |
$lang["COMPPATH"] = "Compare Path:"; |
109 |
$lang["WITHPATH"] = "With Path:"; |
110 |
$lang["WITHPATH"] = "With Path:"; |
110 |
$lang["FILEDELETED"] = "File deleted"; |
111 |
$lang["FILEDELETED"] = "File deleted"; |
111 |
$lang["FILEADDED"] = "New file"; |
112 |
$lang["FILEADDED"] = "New file"; |
112 |
|
113 |
|
113 |
// The following are defined by some languages to stop unwanted line splitting |
114 |
// The following are defined by some languages to stop unwanted line splitting |
114 |
// in the template files. |
115 |
// in the template files. |
115 |
|
116 |
|
116 |
$lang["NOBR"] = ""; |
117 |
$lang["NOBR"] = ""; |
117 |
$lang["ENDNOBR"] = ""; |
118 |
$lang["ENDNOBR"] = ""; |
118 |
|
119 |
|
119 |
// $lang["NOBR"] = "<nobr>"; |
120 |
// $lang["NOBR"] = "<nobr>"; |
120 |
// $lang["ENDNOBR"] = "</nobr>"; |
121 |
// $lang["ENDNOBR"] = "</nobr>"; |