Update of /cvsroot/squirrel-sql/sql12/app/src/net/sourceforge/squirrel_sql/client/preferences
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31735/app/src/net/sourceforge/squirrel_sql/client/preferences
Modified Files:
UpdatePreferencesPanel.java I18NStrings.properties
Log Message:
Bugfix : 2944128 (Fixed missing translation string).
Index: UpdatePreferencesPanel.java
===================================================================
RCS file: /cvsroot/squirrel-sql/sql12/app/src/net/sourceforge/squirrel_sql/client/preferences/UpdatePreferencesPanel.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** UpdatePreferencesPanel.java 12 Dec 2008 02:52:00 -0000 1.9
--- UpdatePreferencesPanel.java 6 Feb 2010 21:54:20 -0000 1.10
***************
*** 90,93 ****
--- 90,96 ----
String LOCAL_PATH = s_stringMgr.getString("UpdatePreferencesPanel.localPathLabel");
+ // i18n[UpdatePreferencesPanel.localSiteButtonLabel=Local]
+ String LOCAL_SITE_BUTTON_LABEL = s_stringMgr.getString("UpdatePreferencesPanel.localSiteButtonLabel");
+
// i18n[UpdatePreferencesPanel.path=Path:]
String PATH = s_stringMgr.getString("UpdatePreferencesPanel.path");
***************
*** 105,108 ****
--- 108,114 ----
String WEEKLY_LABEL = s_stringMgr.getString("UpdatePreferencesPanel.weeklyLabel");
+ // i18n[UpdatePreferencesPanel.remoteSiteButtonLabel=Remote]
+ String REMOTE_SITE_BUTTON_LABEL = s_stringMgr.getString("UpdatePreferencesPanel.remoteSiteButtonLabel");
+
// i18n[UpdatePreferencesPanel.siteTypeLabel=Site Type:]
String SITE_TYPE_LABEL = s_stringMgr.getString("UpdatePreferencesPanel.siteTypeLabel");
***************
*** 152,158 ****
private JLabel siteTypeLabel = null;
! private JRadioButton _remoteTypeButton = new JRadioButton("Remote");
! private JRadioButton _localTypeButton = new JRadioButton("Local");
private ButtonGroup _updateSiteTypeGroup = new ButtonGroup();
--- 158,164 ----
private JLabel siteTypeLabel = null;
! private JRadioButton _remoteTypeButton = new JRadioButton(i18n.REMOTE_SITE_BUTTON_LABEL);
! private JRadioButton _localTypeButton = new JRadioButton(i18n.LOCAL_SITE_BUTTON_LABEL);
private ButtonGroup _updateSiteTypeGroup = new ButtonGroup();
Index: I18NStrings.properties
===================================================================
RCS file: /cvsroot/squirrel-sql/sql12/app/src/net/sourceforge/squirrel_sql/client/preferences/I18NStrings.properties,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** I18NStrings.properties 11 Jan 2009 02:01:54 -0000 1.26
--- I18NStrings.properties 6 Feb 2010 21:54:21 -0000 1.27
***************
*** 85,90 ****
--- 85,92 ----
UpdatePreferencesPanel.enableAutoUpdate=Enable Automatic Updates
UpdatePreferencesPanel.localPathLabel=Local Path:
+ UpdatePreferencesPanel.localSiteButtonLabel=Local
UpdatePreferencesPanel.path=Path:
UpdatePreferencesPanel.port=Port:
+ UpdatePreferencesPanel.remoteSiteButtonLabel=Remote
UpdatePreferencesPanel.server=Server:
UpdatePreferencesPanel.siteTypeLabel=Site Type:
|