jablonka.czprosek.czf

websvn

Subversion Repositories:
[/] [languages/] [english.php] - Blame information for rev 1

 

Line No. Rev Author Line
11simandl<?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 
48$lang["LISTING"] = "Directory listing";
49$lang["FILEDETAIL"] = "Details";
50$lang["DIFFPREV"] = "Compare with Previous";
51$lang["BLAME"] = "Blame";
52 
53$lang["REVINFO"] = "Revision Information";
54$lang["GOYOUNGEST"] = "Go to most recent revision";
55$lang["LASTMOD"] = "Last modification";
56$lang["LOGMSG"] = "Log message";
57$lang["CHANGES"] = "Changes";
58$lang["SHOWCHANGED"] = "Show changed files";
59$lang["HIDECHANGED"] = "Hide changed files";
60$lang["NEWFILES"] = "New Files";
61$lang["CHANGEDFILES"] = "Modified files";
62$lang["DELETEDFILES"] = "Deleted files";
63$lang["VIEWLOG"] = "View&nbsp;Log";
64$lang["PATH"] = "Path";
65$lang["AUTHOR"] = "Author";
66$lang["AGE"] = "Age";
67$lang["LOG"] = "Log";
68$lang["CURDIR"] = "Current Directory";
69$lang["TARBALL"] = "Tarball";
70 
71$lang["PREV"] = "Prev";
72$lang["NEXT"] = "Next";
73$lang["SHOWALL"] = "Show All";
74 
75$lang["BADCMD"] = "Error running this command";
76$lang["UNKNOWNREVISION"] = "Revision not found";
77 
78$lang["POWERED"] = "Powered by <a href=\"http://www.websvn.info/\">WebSVN</a>";
79$lang["PROJECTS"] = "Subversion&nbsp;Repositories";
80$lang["SERVER"] = "Subversion&nbsp;Server";
81 
82$lang["FILTER"] = "Filtering Options";
83$lang["STARTLOG"] = "From rev";
84$lang["ENDLOG"] = "To rev";
85$lang["MAXLOG"] = "Max revs";
86$lang["SEARCHLOG"] = "Search for";
87$lang["CLEARLOG"] = "Clear current filter";
88$lang["MORERESULTS"] = "Find more matches...";
89$lang["NORESULTS"] = "There are no logs matching your query";
90$lang["NOMORERESULTS"] = "There are no more logs matching your query";
91$lang['NOPREVREV'] = 'No previous revision';
92 
93$lang["RSSFEEDTITLE"] = "WebSVN RSS feed";
94$lang["FILESMODIFIED"] = "file(s) modified";
95$lang["RSSFEED"] = "RSS feed";
96 
97$lang["LINENO"] = "Line No.";
98$lang["BLAMEFOR"] = "Blame information for rev";
99 
100$lang["DAYLETTER"] = "d";
101$lang["HOURLETTER"] = "h";
102$lang["MINUTELETTER"] = "m";
103$lang["SECONDLETTER"] = "s";
104 
105$lang["GO"] = "Go";
106 
107$lang["PATHCOMPARISON"] = "Path Comparison";
108$lang["COMPAREPATHS"] = "Compare Paths";
109$lang["COMPAREREVS"] = "Compare Revisions";
110$lang["PROPCHANGES"] = "Property changes :";
111$lang["CONVFROM"] = "This comparison shows the changes necessary to convert path ";
112$lang["TO"] = "TO";
113$lang["REVCOMP"] = "Reverse comparison";
114$lang["COMPPATH"] = "Compare Path:";
115$lang["WITHPATH"] = "With Path:";
116$lang["FILEDELETED"] = "File deleted";
117$lang["FILEADDED"] = "New file";
118 
119// The following are defined by some languages to stop unwanted line splitting
120// in the template files.
121 
122$lang["NOBR"] = "";
123$lang["ENDNOBR"] = "";
124 
125// $lang["NOBR"] = "<nobr>";
126// $lang["ENDNOBR"] = "</nobr>";

Powered by WebSVN 2.2.1