Summary: | i18n Issues with city names | ||
---|---|---|---|
Product: | [Applications] kstars | Reporter: | Federico Zenith <zenith.federico> |
Component: | general | Assignee: | Akarsh Simha <akarsh.simha> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | akarsh.simha, mboquien |
Priority: | NOR | ||
Version: | 1.0 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Federico Zenith
2004-12-09 16:31:05 UTC
CVS commit by harris: Partial fix of bug #94741. The main part of the bug (regarding making it possible to translate "Paris, Illinois, USA" differently from "Paris, France") is still open; this just fixes the non-sorted listing of translated Cities. CCMAIL: 94741@bugs.kde.org M +3 -0 kswizard.cpp 1.7 M +3 -0 locationdialog.cpp 1.41 --- kdeedu/kstars/kstars/kswizard.cpp #1.6:1.7 @@ -126,4 +126,7 @@ void KSWizard::initGeoPage() { } + //Sort alphabetically + CityListBox->sort(); + //preset to current city CityListBox->setCurrentItem( index ); --- kdeedu/kstars/kstars/locationdialog.cpp #1.40:1.41 @@ -240,4 +240,7 @@ void LocationDialog::initCityList( void } + //Sort the list of Cities alphabetically + GeoBox->sort(); + CountLabel->setText( i18n("One city matches search criteria","%n cities match search criteria",GeoBox->count()) ); There is also Moscow in USA, Sebastopol in the Crimea and in USA, Odessa in Ukraine and in USA. After consulting kde-i18n-doc, I have decided to wait until after 3.4 to fix this issue (because it will result in many "fuzzy" strings in the translation database). Assigned no longer contributing to kstars. UNMAINTAINED? Why? Akarsh is the active maintainer. Well, it's been almost FIVE years since the last update! At any rate, will assign it to Akarsh and he can change the status. SVN commit 1016024 by asimha: Adding country and region as translation context to city names. This fixes (the age old) bug 94741 in trunk. I hope this is okay. CCMAIL: kstars-devel@kde.org, kde-i18n-doc@kde.org BUG: 94741 M +3 -2 Messages.sh WebSVN link: http://websvn.kde.org/?view=rev&revision=1016024 SVN commit 1016027 by asimha: Add country name as translation context for region. CCMAIL: kstars-devel@kde.org, kde-i18n-doc@kde.org CCBUG: 94741 M +2 -2 Messages.sh WebSVN link: http://websvn.kde.org/?view=rev&revision=1016027 |