| Summary: | quick start dialog does not offer xhtml 1.1 | ||
|---|---|---|---|
| Product: | [Unmaintained] quanta | Reporter: | plasmagunman <plasmagunman> |
| Component: | general | Assignee: | András Manţia <amantia> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
plasmagunman
2005-12-21 21:50:24 UTC
SVN commit 490806 by amantia:
Add XHTML 1.1 and XHTML 1.0 Basic to the quickstart dialog. AFAIK the strings are already present and they anyway should not be translated.
BUG: 118813
M +34 -12 htmlquickstart.kmdr
--- branches/KDE/3.5/kdewebdev/quanta/scripts/htmlquickstart.kmdr #490805:490806
@@ -9,7 +9,7 @@
<x>0</x>
<y>0</y>
<width>473</width>
- <height>550</height>
+ <height>577</height>
</rect>
</property>
<property name="sizePolicy">
@@ -237,7 +237,7 @@
<cstring>CBPHPFooter</cstring>
</property>
<property name="text">
- <string>PHP footer include:</string>
+ <string>&PHP footer include:</string>
</property>
<property name="associations" stdset="0">
<stringlist>
@@ -269,7 +269,7 @@
<cstring>CBDTD</cstring>
</property>
<property name="text">
- <string>Show DTD</string>
+ <string>Show &DTD</string>
</property>
<property name="checked">
<bool>true</bool>
@@ -314,6 +314,16 @@
<string>XHTML 1.0 Frameset</string>
</property>
</item>
+ <item>
+ <property name="text">
+ <string>XHTML 1.0 Basic</string>
+ </property>
+ </item>
+ <item>
+ <property name="text">
+ <string>XHTML 1.1</string>
+ </property>
+ </item>
<property name="name">
<cstring>DTEPselect</cstring>
</property>
@@ -340,6 +350,12 @@
xhtml1frameset='<?xml version="1.0" encoding="@ComboMetachar"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">'
+xhtml1basic='<?xml version="1.0" encoding="@ComboMetachar"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">'
+
+xhtml11='<?xml version="1.0" encoding="@ComboMetachar"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'
+
################################
# Set the DTD based on user selection
@@ -362,6 +378,12 @@
"XHTML 1.0 Frameset" )
DTD="$xhtml1frameset"
;;
+"XHTML 1.0 Basic" )
+ DTD="$xhtml1basic"
+;;
+"XHTML 1.1" )
+ DTD="$xhtml11"
+;;
* )
echo "No Match"
;;
@@ -375,7 +397,7 @@
<cstring>CBHead</cstring>
</property>
<property name="text">
- <string>Head area</string>
+ <string>Head &area</string>
</property>
<property name="checked">
<bool>true</bool>
@@ -403,7 +425,7 @@
<cstring>CBCVS</cstring>
</property>
<property name="text">
- <string>CVS tag in comment</string>
+ <string>CVS tag &in comment</string>
</property>
<property name="associations" stdset="0">
<stringlist>
@@ -443,7 +465,7 @@
<cstring>CBMetaAuthor</cstring>
</property>
<property name="text">
- <string>Meta author:</string>
+ <string>&Meta author:</string>
</property>
<property name="associations" stdset="0">
<stringlist>
@@ -473,7 +495,7 @@
<cstring>CBStyleArea</cstring>
</property>
<property name="text">
- <string>Style area</string>
+ <string>St&yle area</string>
</property>
<property name="associations" stdset="0">
<stringlist>
@@ -694,7 +716,7 @@
<cstring>CBBasedir</cstring>
</property>
<property name="text">
- <string>Base directory:</string>
+ <string>&Base directory:</string>
</property>
<property name="associations" stdset="0">
<stringlist>
@@ -709,7 +731,7 @@
<cstring>CBMetaQuanta</cstring>
</property>
<property name="text">
- <string>Meta Quanta</string>
+ <string>Meta &Quanta</string>
</property>
<property name="checked">
<bool>true</bool>
@@ -727,7 +749,7 @@
<cstring>CBMetaKeywords</cstring>
</property>
<property name="text">
- <string>Meta keywords:</string>
+ <string>Meta &keywords:</string>
</property>
<property name="associations" stdset="0">
<stringlist>
@@ -744,7 +766,7 @@
<cstring>CBStyle</cstring>
</property>
<property name="text">
- <string>Linked style sheet:</string>
+ <string>Li&nked style sheet:</string>
</property>
<property name="associations" stdset="0">
<stringlist>
@@ -793,7 +815,7 @@
<cstring>CBJavascript</cstring>
</property>
<property name="text">
- <string>JavaScript area</string>
+ <string>&JavaScript area</string>
</property>
<property name="associations" stdset="0">
<stringlist>
|