Bug 121713 - untranslated strings in startdialog of koffice applications
Summary: untranslated strings in startdialog of koffice applications
Status: RESOLVED FIXED
Alias: None
Product: koffice
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: KOffice Bug Wranglers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-02-10 16:23 UTC by Burkhard Lück
Modified: 2006-02-10 17:36 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Burkhard Lück 2006-02-10 16:24:27 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

In the start dialog of kword, kpresenter, krita, kspread, karbon, kchart and kplato
are two untranslatable strings: "Modified:" and "Accessed:"

I suppose missing i18n calls in this file:

Index: koffice/lib/kofficecore/koDetailsPane.cc
===================================================================
--- koffice/lib/kofficecore/koDetailsPane.cc    (revision 507890)
+++ koffice/lib/kofficecore/koDetailsPane.cc    (working copy)
@@ -383,9 +383,9 @@
     if(static_cast<KoFileListItem*>(item)->fileItem()) {
       KFileItem* fileItem = static_cast<KoFileListItem*>(item)->fileItem();
       QString details = "<center><table border=\"0\">";
-      details += "<tr><td><b>Modified:</b></td>";
+      details += i18n("<tr><td><b>Modified:</b></td>");
       details += "<td>" + fileItem->timeString(KIO::UDS_MODIFICATION_TIME) + "</td></tr>";
-      details += "<tr><td><b>Accessed:</b></td>";
+      details += i18n("<tr><td><b>Accessed:</b></td>");
       details += "<td>" + fileItem->timeString(KIO::UDS_ACCESS_TIME) + "</td></tr>";
       details += "</table></center>";
       m_detailsLabel->setText(details);
Comment 1 Peter Simonsson 2006-02-10 17:36:44 UTC
Thx for the report, I've applied a simliar patch to trunk.