Author: dieppe
Date: 2008-04-24 04:47:27 +0000 (Thu, 24 Apr 2008)
New Revision: 19540

Modified:
   trunk/apps/thingamablog/l10n/thingamablog.l10n.en.properties
   trunk/apps/thingamablog/l10n/thingamablog.l10n.fr.properties
   
trunk/apps/thingamablog/src/net/sf/thingamablog/gui/properties/TBPublishTransportPanel.java
Log:
Fix potential "There is no @ in that URI!"
Add a value for a mnemonic key in L10n english and french files



Modified: trunk/apps/thingamablog/l10n/thingamablog.l10n.en.properties
===================================================================
--- trunk/apps/thingamablog/l10n/thingamablog.l10n.en.properties        
2008-04-23 23:18:53 UTC (rev 19539)
+++ trunk/apps/thingamablog/l10n/thingamablog.l10n.en.properties        
2008-04-24 04:47:27 UTC (rev 19540)
@@ -513,7 +513,7 @@
 configure_weblog_.mnemonic=C
 copy.mnemonic=C
 cut.mnemonic=t
-delete_selected_entries_.mnemonic=
+delete_selected_entries_.mnemonic=r
 edit.mnemonic=E
 edit_selected_entry_.mnemonic=t
 edit_template_.mnemonic=T

Modified: trunk/apps/thingamablog/l10n/thingamablog.l10n.fr.properties
===================================================================
--- trunk/apps/thingamablog/l10n/thingamablog.l10n.fr.properties        
2008-04-23 23:18:53 UTC (rev 19539)
+++ trunk/apps/thingamablog/l10n/thingamablog.l10n.fr.properties        
2008-04-24 04:47:27 UTC (rev 19540)
@@ -509,7 +509,7 @@
 configure_weblog_.mnemonic=C
 copy.mnemonic=C
 cut.mnemonic=p
-delete_selected_entries_.mnemonic=
+delete_selected_entries_.mnemonic=r
 edit.mnemonic=E
 edit_selected_entry_.mnemonic=t
 edit_template_.mnemonic=M

Modified: 
trunk/apps/thingamablog/src/net/sf/thingamablog/gui/properties/TBPublishTransportPanel.java
===================================================================
--- 
trunk/apps/thingamablog/src/net/sf/thingamablog/gui/properties/TBPublishTransportPanel.java
 2008-04-23 23:18:53 UTC (rev 19539)
+++ 
trunk/apps/thingamablog/src/net/sf/thingamablog/gui/properties/TBPublishTransportPanel.java
 2008-04-24 04:47:27 UTC (rev 19540)
@@ -121,7 +121,10 @@
                         types[0]="FCP";
                         types[1]="Local";   
                     }
-                    fcpPanel.setRequestUri(weblog.getBaseUrl());
+                    String requestURI = weblog.getBaseUrl();
+                    if(!requestURI.startsWith("USK@"))
+                        requestURI = "USK@" + requestURI;
+                    fcpPanel.setRequestUri(requestURI);
                  }
                 localPanel = new JPanel();



Reply via email to