diff options
author | aztech <> | 2008-01-10 02:43:04 +0000 |
---|---|---|
committer | aztech <> | 2008-01-10 02:43:04 +0000 |
commit | 3819e887d9f485ac0917a9d415961e147581c280 (patch) | |
tree | 2875f258ce6aecdaa7b208372916ce8072969dd0 /demos/quickstart/protected/pages/pl/ViewSource.page | |
parent | 95dab62b36b6d30a07b8be76923c318dd675673c (diff) |
[PL] partial Active Record translation + some base QST page translations
Diffstat (limited to 'demos/quickstart/protected/pages/pl/ViewSource.page')
-rw-r--r-- | demos/quickstart/protected/pages/pl/ViewSource.page | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/pl/ViewSource.page b/demos/quickstart/protected/pages/pl/ViewSource.page new file mode 100644 index 00000000..8d5e0574 --- /dev/null +++ b/demos/quickstart/protected/pages/pl/ViewSource.page @@ -0,0 +1,31 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
+
+<com:THead Title="Podgląd źródeł w PRADO QuickStart">
+<meta http-equiv="content-language" content="en"/>
+</com:THead>
+
+<body>
+<com:TForm>
+<div id="sourceList">
+<table border="0">
+<com:TRepeater ID="SourceList">
+<prop:ItemTemplate>
+<tr>
+ <td align="right"><%# $this->DataItem['type']%>:</td>
+ <td><a href="<%# $this->DataItem['active']?'':$this->DataItem['url']%>"><%# $this->DataItem['name']%></a></td>
+</tr>
+</prop:ItemTemplate>
+</com:TRepeater>
+</table>
+<com:TCheckBox ID="showNumbers" Text="Pokaż numery linii" Checked="true" AutoPostBack="true" />
+</div>
+<div id="sourceView">
+<h3 style="text-align:center"><%= $this->FilePath %></h3>
+<com:TTextHighlighter ID="Highlighter" ShowLineNumbers=<%= $this->showNumbers->Checked %> CssClass="source">
+<com:TLiteral ID="SourceView" />
+</com:TTextHighlighter>
+</div>
+</com:TForm>
+</body>
+</html>
\ No newline at end of file |