summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/pl
diff options
context:
space:
mode:
authoraztech <>2008-01-10 02:43:04 +0000
committeraztech <>2008-01-10 02:43:04 +0000
commit3819e887d9f485ac0917a9d415961e147581c280 (patch)
tree2875f258ce6aecdaa7b208372916ce8072969dd0 /demos/quickstart/protected/pages/pl
parent95dab62b36b6d30a07b8be76923c318dd675673c (diff)
[PL] partial Active Record translation + some base QST page translations
Diffstat (limited to 'demos/quickstart/protected/pages/pl')
-rw-r--r--demos/quickstart/protected/pages/pl/Construction.page5
-rw-r--r--demos/quickstart/protected/pages/pl/Search.page29
-rw-r--r--demos/quickstart/protected/pages/pl/ViewSource.page31
3 files changed, 65 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/pl/Construction.page b/demos/quickstart/protected/pages/pl/Construction.page
new file mode 100644
index 00000000..bf96f99c
--- /dev/null
+++ b/demos/quickstart/protected/pages/pl/Construction.page
@@ -0,0 +1,5 @@
+<com:TContent ID="body">
+
+Przepraszamy, ta strona jest w trakcie tworzenia. Proszę sprawdź później.
+
+<div class="last-modified">$Id: Construction.page 1650 2007-01-24 06:55:32Z wei $</div></com:TContent> \ No newline at end of file
diff --git a/demos/quickstart/protected/pages/pl/Search.page b/demos/quickstart/protected/pages/pl/Search.page
new file mode 100644
index 00000000..ab0515eb
--- /dev/null
+++ b/demos/quickstart/protected/pages/pl/Search.page
@@ -0,0 +1,29 @@
+<com:TContent ID="body">
+<div class="quicksearch">
+ <div class="search">
+ <com:SearchBox ID="search" />
+ </div>
+
+ <com:TRepeater id="quickstart_results">
+ <prop:HeaderTemplate>
+ <div class="searchHeader">
+ <%# $this->Parent->DataSource->Count %> znalezionych w Quickstart Tutorial.
+ </div>
+ </prop:HeaderTemplate>
+ <prop:ItemTemplate>
+ <div class="searchItem">
+ <div class="searchItemLink">
+ <%# $this->ItemIndex + 1 %>.
+ <a href="<%# $this->DataItem->link %>">
+ <%# $this->DataItem->title %>
+ </a>
+ </div>
+ <p class="searchItemBody"><%# $this->Page->HighlightSearch($this->DataItem->text) %></p>
+ </div>
+ </prop:ItemTemplate>
+ </com:TRepeater>
+ <com:TPanel id="emptyResult" CssClass="empty_search_result" Visible="false">
+ Nie znaleziono żadnych rezultatów dla frazy "<%= htmlentities($this->Page->search->Text) %>".
+ </com:TPanel>
+</div>
+<div class="last-modified">$Id: Search.page 1859 2007-04-10 21:27:01Z xue $</div></com:TContent> \ No newline at end of file
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