| Summary: | add information about last update that kweather has done | ||
|---|---|---|---|
| Product: | [Unmaintained] kweather-kde3 | Reporter: | richlv |
| Component: | general | Assignee: | geiseri |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
richlv
2005-10-03 15:35:08 UTC
SVN commit 636851 by mkoller:
BUG: 113780
Don't display "Last updated on ..." but "Latest data from ..." to make it clear
that the weather data is from the given time, and not only fetched at
this time.
M +1 -1 reportview.cpp
--- branches/KDE/3.5/kdetoys/kweather/reportview.cpp #636850:636851
@@ -125,7 +125,7 @@
"</b></div>\n";
if ( ! date.isEmpty() )
- contents += "<div class=\"headerMsg\"><b>" + i18n( "Last updated on %1" ).arg(date) + "</b></div>\n";
+ contents += "<div class=\"headerMsg\"><b>" + i18n( "Latest data from %1" ).arg(date) + "</b></div>\n";
contents += QString(
"<table><tr><td width=\"60\" style=\"text-align: center; border: dotted %1 1px;\">"
|