Bug 110982 - lack of i18n(): resizeoptionsdialog.cpp
Summary: lack of i18n(): resizeoptionsdialog.cpp
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Usability-i18n (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR wishlist
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-18 03:40 UTC by Chen Xujun
Modified: 2021-12-30 15:50 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 7.5.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chen Xujun 2005-08-18 03:40:05 UTC
Version:            (using KDE KDE 3.4.2)
Installed from:    Unspecified

kipi-plugins-0.1.0-beta2/kipi-plugins/batchprocessimages/resizeoptionsdialog.cpp 
// lack of i18n()
-----------------------------------------------------------------------------------------
line: 76        
       m_label_resizeFilter = new QLabel (i18n("Filter name:"), groupBox1);

       m_resizeFilter = new QComboBox( false, groupBox1 );
       m_resizeFilter->insertItem("Bessel");
       m_resizeFilter->insertItem("Blackman");
       m_resizeFilter->insertItem("Box");
       m_resizeFilter->insertItem("Catrom");
       m_resizeFilter->insertItem("Cubic");
       m_resizeFilter->insertItem("Gaussian");
       m_resizeFilter->insertItem("Hermite");
       m_resizeFilter->insertItem("Hanning");
       m_resizeFilter->insertItem("Hamming");
       m_resizeFilter->insertItem("Lanczos");
       m_resizeFilter->insertItem("Mitchell");
       m_resizeFilter->insertItem("Point");
       m_resizeFilter->insertItem("Quadratic");
       m_resizeFilter->insertItem("Sinc");
       m_resizeFilter->insertItem("Triangle");
------------------------------------------------------------------------------------------
Comment 1 Tom Albers 2005-08-18 09:24:48 UTC
What is there to translate then? They are filter terms, some of them called after a name of a person, like: http://en.wikipedia.org/wiki/Bessel
Comment 2 Lubos Lunak 2005-08-18 11:28:10 UTC
The things that are not a name of a person are there to translate. Or do you think "Quadratic" is a universal term? And even the filters with names may be translated differently.
They should be probably better translated as i18n("Resize filter","Quadratic") BTW.
Comment 3 Tom Albers 2005-08-21 22:23:45 UTC
SVN commit 451803 by toma:

Add missing i18n() for filter names, some of them are based on the names of persons, but now there is a possibility to translate them for those who want that.
BUG: 110982


 M  +60 -60    resizeoptionsdialog.cpp  
Comment 4 caulier.gilles 2021-12-30 15:50:22 UTC
Fixed with works from bug #438701 for next 7.5.0 release

Gilles Caulier