Modify

Opened 17 years ago

Closed 17 years ago

#677 closed defect (fixed)

german translation

Reported by: uboot Owned by: framm
Priority: minor Milestone:
Component: Plugin Version: latest
Keywords: lang-de Cc:

Description

In the german translation the deleting button in the relation-editor has a wrong text: "Project-Id-Version: deReport-Msgid-Bugs-T..."
With this Problem no other Buttons are available under 1024x768 pixel.

Attachments (1)

Bildschirmfoto.png (78.5 KB ) - added by uboot 17 years ago.
screenshoot

Download all attachments as: .zip

Change History (3)

by uboot, 17 years ago

Attachment: Bildschirmfoto.png added

screenshoot

comment:1 by matt_gnu, 17 years ago

This issue seems to result from an empty translation-string in the RelationListDialog. The following patch should fix it IMHO (I don't have an SVN account for josm, so I can't commit)

$ svn diff
Index: src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java
===================================================================
--- src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java	(Revision 592)
+++ src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java	(Arbeitskopie)
@@ -91,7 +91,7 @@
 			}
 		}), GBC.std());
 		
-		buttonPanel.add(createButton("", "delete", tr("Delete the selected relation"), -1, new ActionListener() {
+		buttonPanel.add(createButton(marktr("Delete"), "delete", tr("Delete the selected relation"), -1, new ActionListener() {
 			public void actionPerformed(ActionEvent e) {
 				Relation toDelete = (Relation) displaylist.getSelectedValue();
 				if (toDelete != null) {

comment:2 by framm, 17 years ago

Resolution: fixed
Status: newclosed

fixed in r601

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain framm.
as The resolution will be set.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.