aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-11-19 00:10:15 +0100
committerKevin Chabowski <kevin@kch42.de>2011-11-19 00:10:15 +0100
commit171989fef19e6991fc52b0b57357fdb7825d7d97 (patch)
tree5ffd60de959f58304f0417b4b33c780ccf7c6ad5
parentcc9d722cf738da41224c7c803a27c2532da73beb (diff)
downloadratatoeskr-cms-171989fef19e6991fc52b0b57357fdb7825d7d97.tar.gz
ratatoeskr-cms-171989fef19e6991fc52b0b57357fdb7825d7d97.tar.bz2
ratatoeskr-cms-171989fef19e6991fc52b0b57357fdb7825d7d97.zip
Fixed some bugs in systemtemplates.
* Fixed wrong translation keys. * Escaped raw comments.
-rw-r--r--ratatoeskr/templates/src/systemtemplates/articles.html4
-rw-r--r--ratatoeskr/templates/src/systemtemplates/image_list.html4
-rw-r--r--ratatoeskr/templates/src/systemtemplates/single_comment.html2
3 files changed, 5 insertions, 5 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/articles.html b/ratatoeskr/templates/src/systemtemplates/articles.html
index cb40fae..0742726 100644
--- a/ratatoeskr/templates/src/systemtemplates/articles.html
+++ b/ratatoeskr/templates/src/systemtemplates/articles.html
@@ -76,8 +76,8 @@
<div>
<input type="submit" name="delete" value="<ste:get_translation for='delete' />" />
<select name="really_delete">
- <option value="no" selected="selected"><ste:get_translation for="notext_default" /></option>
- <option value="yes"><ste:get_translation for="yestext_default" /></option>
+ <option value="no" selected="selected"><ste:get_translation for="no" /></option>
+ <option value="yes"><ste:get_translation for="yes" /></option>
</select>
</div>
</form>
diff --git a/ratatoeskr/templates/src/systemtemplates/image_list.html b/ratatoeskr/templates/src/systemtemplates/image_list.html
index 81cbc41..bd985f8 100644
--- a/ratatoeskr/templates/src/systemtemplates/image_list.html
+++ b/ratatoeskr/templates/src/systemtemplates/image_list.html
@@ -57,8 +57,8 @@
<div>
<input type="submit" name="delete" value="<ste:get_translation for='delete' />" />
<select name="really_delete">
- <option value="no" selected="selected"><ste:get_translation for="notext_default" /></option>
- <option value="yes"><ste:get_translation for="yestext_default" /></option>
+ <option value="no" selected="selected"><ste:get_translation for="no" /></option>
+ <option value="yes"><ste:get_translation for="yes" /></option>
</select>
</div>
</form>
diff --git a/ratatoeskr/templates/src/systemtemplates/single_comment.html b/ratatoeskr/templates/src/systemtemplates/single_comment.html
index 81b209a..1e8e775 100644
--- a/ratatoeskr/templates/src/systemtemplates/single_comment.html
+++ b/ratatoeskr/templates/src/systemtemplates/single_comment.html
@@ -55,7 +55,7 @@
$comment_text
<hr />
<h2><ste:get_translation for="comment_text_raw" /></h2>
- <code><pre>$comment_raw</pre></code>
+ <code><pre><ste:escape>$comment_raw</ste:escape></pre></code>
</div>
</div>
<div class="triplecolumns_stop"></div>